Login | Register For Free | Help
Search for: (Advanced)

Mailing List Archive: Zope: Dev

i18nmessageid has a broken link

 

 

Zope dev RSS feed   Index | Next | Previous | View Threaded


sw at gocept

May 9, 2008, 12:37 AM

Post #1 of 7 (509 views)
Permalink
i18nmessageid has a broken link

Hi,

the zope.i18nmessageid package has a broken link on
http://download.zope.org/zope3.4/zope.i18nmessageid/ . The
'zope.i18nmessageid-3.4.3-py2.4-linux-i686.egg' does not exist any more
on pypi.

Could someone please fix it?

Thanks,
--
Sebastian Wehrmann

gocept gmbh & co. kg · forsterstrasse 29 · 06112 halle/saale · germany
www.gocept.com · work. +49 345 122988912 · fax. +49 345 12298891
Attachments: signature.asc (0.25 KB)


tim.terlegard at valentinewebsystems

May 9, 2008, 12:49 AM

Post #2 of 7 (493 views)
Permalink
Re: i18nmessageid has a broken link [In reply to]

On May 9, 2008, at 9:37 AM, Sebastian Wehrmann wrote:

> the zope.i18nmessageid package has a broken link on http://download.zope.org/zope3.4/zope.i18nmessageid/
> . The 'zope.i18nmessageid-3.4.3-py2.4-linux-i686.egg' does not
> exist any more on pypi.
>
> Could someone please fix it?

This egg was deliberately removed. I don't know the whole story
about pypi and zope so I wouldn't dare to remove the egg myself,
but it was removed.

If I easy_install zope.i18nmessageid on my Mac I will get that linux
specific egg. That egg won't work on my computer. So I asked those
who know more about this and they say that only windows eggs are
allowed to be binary, the rest should be source eggs. That makes
sense to me.

It looks like you work for gocept? Christian Theune was also saying
that this egg shouldn't be on pypi, so you could talk to your
colleague :)

Why do you need this linux specific egg anyway?

/Tim
_______________________________________________
Zope-Dev maillist - Zope-Dev[at]zope.org
http://mail.zope.org/mailman/listinfo/zope-dev
** No cross posts or HTML encoding! **
(Related lists -
http://mail.zope.org/mailman/listinfo/zope-announce
http://mail.zope.org/mailman/listinfo/zope )


sw at gocept

May 9, 2008, 1:29 AM

Post #3 of 7 (489 views)
Permalink
Re: i18nmessageid has a broken link [In reply to]

hey Tim,

Tim Terlegård schrieb:
> On May 9, 2008, at 9:37 AM, Sebastian Wehrmann wrote:

> Why do you need this linux specific egg anyway?

I don't need this egg, my buildout is always requesting it instead of
the source package.

I only wanted to ask if someone could please remove the broken link from
the download.zope page so that everyone (including me) who indexed his
buildout.cfg with the zope3.4 index will get the source package of
zope.i18nmessageid instead of the egg (which does not exist anymore).

Thanks,
--
Sebastian Wehrmann

gocept gmbh & co. kg · forsterstrasse 29 · 06112 halle/saale · germany
www.gocept.com · work. +49 345 122988912 · fax. +49 345 12298891
Attachments: signature.asc (0.25 KB)


m.van.rees at zestsoftware

May 9, 2008, 2:14 AM

Post #4 of 7 (491 views)
Permalink
Re: i18nmessageid has a broken link [In reply to]

Sebastian Wehrmann, on 2008-05-09:
> Tim Terlegard schrieb:
>> On May 9, 2008, at 9:37 AM, Sebastian Wehrmann wrote:
>
>> Why do you need this linux specific egg anyway?
>
> I don't need this egg, my buildout is always requesting it instead of
> the source package.

For the record, my understanding is that this would never have worked
on Mac, only on Linux. Not sure about Windows.

> I only wanted to ask if someone could please remove the broken link from
> the download.zope page so that everyone (including me) who indexed his
> buildout.cfg with the zope3.4 index will get the source package of
> zope.i18nmessageid instead of the egg (which does not exist anymore).

So this page needs to be changed so it only points to the tarball:

http://download.zope.org/zope3.4/zope.i18nmessageid/

Is someone able to do that?


Without having tried pure Zope 3, only Grok --- I have been working on
grokproject during the Grokkerdam sprint --- the following in
buildout.cfg should work just as well:

find-links = http://download.zope.org/distribution/
extends = http://download.zope.org/zope3.4/versions.cfg
versions = versions

The find-links is needed because it has some package versions that
were never released on the cheese shop. The versions.cfg defines
which versions are actually used.

--
Maurits van Rees | http://maurits.vanrees.org/
Work | http://zestsoftware.nl/
"This is your day, don't let them take it away." [Barlow Girl]

_______________________________________________
Zope-Dev maillist - Zope-Dev[at]zope.org
http://mail.zope.org/mailman/listinfo/zope-dev
** No cross posts or HTML encoding! **
(Related lists -
http://mail.zope.org/mailman/listinfo/zope-announce
http://mail.zope.org/mailman/listinfo/zope )


philipp at weitershausen

May 13, 2008, 1:52 PM

Post #5 of 7 (445 views)
Permalink
Re: i18nmessageid has a broken link [In reply to]

Sebastian Wehrmann wrote:
> the zope.i18nmessageid package has a broken link on
> http://download.zope.org/zope3.4/zope.i18nmessageid/ . The
> 'zope.i18nmessageid-3.4.3-py2.4-linux-i686.egg' does not exist any more
> on pypi.

Right. It was deliberately removed because binary eggs should never ever
be uploaded (unless they're for Windows).

> Could someone please fix it?

I'm cc'ing Stephan Richter who maintains the KGS. I think this is a
matter of re-generating the KGS index that sits at
http://download.zope.org/zope3.4.
_______________________________________________
Zope-Dev maillist - Zope-Dev[at]zope.org
http://mail.zope.org/mailman/listinfo/zope-dev
** No cross posts or HTML encoding! **
(Related lists -
http://mail.zope.org/mailman/listinfo/zope-announce
http://mail.zope.org/mailman/listinfo/zope )


philipp at weitershausen

May 13, 2008, 1:55 PM

Post #6 of 7 (444 views)
Permalink
Re: i18nmessageid has a broken link [In reply to]

Maurits van Rees wrote:
> Without having tried pure Zope 3, only Grok --- I have been working on
> grokproject during the Grokkerdam sprint --- the following in
> buildout.cfg should work just as well:
>
> find-links = http://download.zope.org/distribution/
> extends = http://download.zope.org/zope3.4/versions.cfg
> versions = versions
>
> The find-links is needed because it has some package versions that
> were never released on the cheese shop. The versions.cfg defines
> which versions are actually used.

What packages are not released on PyPI yet? I was under the impression
that find-links is no longer needed.

_______________________________________________
Zope-Dev maillist - Zope-Dev[at]zope.org
http://mail.zope.org/mailman/listinfo/zope-dev
** No cross posts or HTML encoding! **
(Related lists -
http://mail.zope.org/mailman/listinfo/zope-announce
http://mail.zope.org/mailman/listinfo/zope )


m.van.rees at zestsoftware

May 13, 2008, 2:53 PM

Post #7 of 7 (440 views)
Permalink
Re: i18nmessageid has a broken link [In reply to]

Philipp von Weitershausen, on 2008-05-13:
> Maurits van Rees wrote:
>> Without having tried pure Zope 3, only Grok --- I have been working on
>> grokproject during the Grokkerdam sprint --- the following in
>> buildout.cfg should work just as well:
>>
>> find-links = http://download.zope.org/distribution/
>> extends = http://download.zope.org/zope3.4/versions.cfg
>> versions = versions
>>
>> The find-links is needed because it has some package versions that
>> were never released on the cheese shop. The versions.cfg defines
>> which versions are actually used.
>
> What packages are not released on PyPI yet? I was under the impression
> that find-links is no longer needed.

Ah, for the 3.4 kgs which is discussed here that is probably true, so
it should indeed work without the find-links. But for example the
Grok 0.12 versions file needs a few package versions that never made
it to the cheese shop so in that case find-links is still needed. It
should not be necessary in the future.

--
Maurits van Rees | http://maurits.vanrees.org/
Work | http://zestsoftware.nl/
"This is your day, don't let them take it away." [Barlow Girl]

_______________________________________________
Zope-Dev maillist - Zope-Dev[at]zope.org
http://mail.zope.org/mailman/listinfo/zope-dev
** No cross posts or HTML encoding! **
(Related lists -
http://mail.zope.org/mailman/listinfo/zope-announce
http://mail.zope.org/mailman/listinfo/zope )

Zope dev RSS feed   Index | Next | Previous | View Threaded
 
 


Interested in having your list archived? Contact lists@gossamer-threads.com
 
  Web Applications & Managed Hosting Powered by Gossamer Threads Inc.