consistent naming in ZEO releases
Ok, whoever is in charge of zope.com releases of things like DCOracle2, Zope and ZEO need to decide if the release file names are going to end in .tar.gz or .tgz. The inconsistency between releases is quite annoying. I know that I've been hit by it both from DCOracle2 and ZEO. The actual Zope releases have at least been consistent. Sorry for the rant. --andy.
Andrew Sydelko wrote:
Ok, whoever is in charge of zope.com releases of things like DCOracle2, Zope and ZEO need to decide if the release file names are going to end in .tar.gz or .tgz.
Why does it matter? Chris
On Mon, 25 Nov 2002 13:56:34 +0000 Chris Withers <chrisw@nipltd.com> wrote:
Andrew Sydelko wrote:
Ok, whoever is in charge of zope.com releases of things like DCOracle2, Zope and ZEO need to decide if the release file names are going to end in .tar.gz or .tgz.
Why does it matter?
I have a script that builds zope. And part of that script is going to get the tarballs. When they change the name I have to go and change the URL (normally I just set the version number). Here's an example: version['ZEO']='1.0' [snipped lots of other installs] package = 'ZEO' if version.has_key(package): ver = version[package] install(package=package, dir='src', url='http://www.zope.org/Products/ZEO/ZEO-%s.tgz' % (ver), checkfile='src/ZEO-%s' % (ver)) install is a function that uses the parameters in it to decide what to do. You'll see that when I switched to ZEO 2.0 I had to change the URL. And I shouldn't have to go look up the URL every time to make sure it's the same... That's the whole point of my script. --andy.
how about you change your code so it attempts to download both .tgz and .tar.gz? jens On Monday, Nov 25, 2002, at 09:03 US/Eastern, Andrew Sydelko wrote:
On Mon, 25 Nov 2002 13:56:34 +0000 Chris Withers <chrisw@nipltd.com> wrote:
Andrew Sydelko wrote:
Ok, whoever is in charge of zope.com releases of things like DCOracle2, Zope and ZEO need to decide if the release file names are going to end in .tar.gz or .tgz.
Why does it matter?
I have a script that builds zope. And part of that script is going to get the tarballs. When they change the name I have to go and change the URL (normally I just set the version number).
Here's an example:
version['ZEO']='1.0'
[snipped lots of other installs]
package = 'ZEO' if version.has_key(package): ver = version[package]
install(package=package, dir='src', url='http://www.zope.org/Products/ZEO/ZEO-%s.tgz' % (ver), checkfile='src/ZEO-%s' % (ver))
install is a function that uses the parameters in it to decide what to do.
You'll see that when I switched to ZEO 2.0 I had to change the URL.
And I shouldn't have to go look up the URL every time to make sure it's the same... That's the whole point of my script.
--andy.
_______________________________________________ Zope-Dev maillist - Zope-Dev@zope.org http://lists.zope.org/mailman/listinfo/zope-dev ** No cross posts or HTML encoding! ** (Related lists - http://lists.zope.org/mailman/listinfo/zope-announce http://lists.zope.org/mailman/listinfo/zope )
Hi Andrew, --On Montag, 25. November 2002 09:03 -0500 Andrew Sydelko <andrew@sydelko.org> wrote:
On Mon, 25 Nov 2002 13:56:34 +0000 Chris Withers <chrisw@nipltd.com> wrote:
Andrew Sydelko wrote:
Ok, whoever is in charge of zope.com releases of things like DCOracle2, Zope and ZEO need to decide if the release file names are going to end in .tar.gz or .tgz.
Why does it matter?
I have a script that builds zope. And part of that script is going to get the tarballs. When they change the name I have to go and change the URL (normally I just set the version number).
I'd use CVS instead. Regards Tino
Here's an example:
version['ZEO']='1.0'
[snipped lots of other installs]
package = 'ZEO' if version.has_key(package): ver = version[package]
install(package=package, dir='src', url='http://www.zope.org/Products/ZEO/ZEO-%s.tgz' % (ver), checkfile='src/ZEO-%s' % (ver))
install is a function that uses the parameters in it to decide what to do.
You'll see that when I switched to ZEO 2.0 I had to change the URL.
And I shouldn't have to go look up the URL every time to make sure it's the same... That's the whole point of my script.
--andy.
_______________________________________________ Zope-Dev maillist - Zope-Dev@zope.org http://lists.zope.org/mailman/listinfo/zope-dev ** No cross posts or HTML encoding! ** (Related lists - http://lists.zope.org/mailman/listinfo/zope-announce http://lists.zope.org/mailman/listinfo/zope )
On Monday 25 November 2002 2:03 pm, Andrew Sydelko wrote:
You'll see that when I switched to ZEO 2.0 I had to change the URL.
No doubt you had to change alot more too. This was a major release. Lots of things changed between ZEO 1 and ZEO 2. I think you picked a bad example; I agree it should be consistent between minor releases of the same product.
On Mon, 25 Nov 2002 16:29:45 +0000 Toby Dickenson <tdickenson@geminidataloggers.com> wrote:
On Monday 25 November 2002 2:03 pm, Andrew Sydelko wrote:
You'll see that when I switched to ZEO 2.0 I had to change the URL.
No doubt you had to change alot more too. This was a major release. Lots of things changed between ZEO 1 and ZEO 2.
I think you picked a bad example; I agree it should be consistent between minor releases of the same product.
I suppose. But why the change at all? --andy.
I used distutils sdist to build the releases for ZEO and ZODB. I let distutils pick the file extension. Jeremy
participants (6)
-
Andrew Sydelko -
Chris Withers -
Jens Vagelpohl -
jeremy@zope.com -
Tino Wildenhain -
Toby Dickenson