prefer binary eggs which satisfy dependencies over source eggs which are even newer #1233

Closed
opened 2010-10-28 05:40:17 +00:00 by zooko · 28 comments

Currently if the zetuptoolz-based build system finds both a binary egg (for the current platform that it is building on) and a source egg, and both of them satisfy the dependency requirement, it will choose the one with the highest version number.

This is a serious problem in practice because, for example, if we have built and hosted dozens of binary eggs of zfec for many different combinations of platform and Python version, and then a newer source-code distribution of zfec is uploaded to PyPI, then the build system will no longer try to use any of those binary eggs and instead use the newer source distribution exclusively, which will fail on platforms that don't have a C compiler and Python header files present.

To fix this, change the logic in zetuptoolz to prefer a binary egg, provided that it is for your platform and Python version and satisfies the dependency requirement, over a source distribution.

Currently if the zetuptoolz-based build system finds both a binary egg (for the current platform that it is building on) and a source egg, and both of them satisfy the dependency requirement, it will choose the one with the highest version number. This is a serious problem in practice because, for example, if we have built and hosted dozens of binary eggs of zfec for many different combinations of platform and Python version, and then a newer source-code distribution of zfec is uploaded to PyPI, then the build system will no longer try to use any of those binary eggs and instead use the newer source distribution exclusively, which will fail on platforms that don't have a C compiler and Python header files present. To fix this, change the logic in zetuptoolz to prefer a binary egg, provided that it is for your platform and Python version and satisfies the dependency requirement, over a source distribution.
zooko added the
c/packaging
p/major
t/defect
v/1.8.0
labels 2010-10-28 05:40:17 +00:00
zooko added this to the 1.8.1 milestone 2010-10-28 05:40:17 +00:00
Author

comment on a different ticket about one of the (very numerous) times that this has caused trouble for a user:

(@@http://tahoe-lafs.org/trac/tahoe-lafs/ticket/773#comment:-1@@)

bug report against setuptools:

http://bugs.python.org/setuptools/issue83

comment on a different ticket about one of the (very numerous) times that this has caused trouble for a user: (@@http://tahoe-lafs.org/trac/tahoe-lafs/ticket/773#[comment:-1](/tahoe-lafs/trac/issues/1233#issuecomment--1)@@) bug report against setuptools: <http://bugs.python.org/setuptools/issue83>
Author

David-Sarah says we shouldn't try changing setuptools/zetuptoolz at the last minute, so instead of doing this ticket for v1.8.1, we're just going to do the time-consuming but predictable work of building and hosting binary eggs for all platforms that we want to support.

David-Sarah says we shouldn't try changing setuptools/zetuptoolz at the last minute, so instead of doing this ticket for v1.8.1, we're just going to do the time-consuming but predictable work of building and hosting binary eggs for all platforms that we want to support.
zooko modified the milestone from 1.8.1 to undecided 2010-10-31 05:55:29 +00:00

Replying to zooko:

David-Sarah says we shouldn't try changing setuptools/zetuptoolz at the last minute, so instead of doing this ticket for v1.8.1, we're just going to do the time-consuming but predictable work of building and hosting binary eggs for all platforms that we want to support.

Having seen the scale of the problem in generating all those binary eggs, zooko and I have had second thoughts about that. I have a patch to zetuptoolz, and zooko has a possible test.

Replying to [zooko](/tahoe-lafs/trac/issues/1233#issuecomment-381706): > David-Sarah says we shouldn't try changing setuptools/zetuptoolz at the last minute, so instead of doing this ticket for v1.8.1, we're just going to do the time-consuming but predictable work of building and hosting binary eggs for all platforms that we want to support. Having seen [the scale of the problem](http://tahoe-lafs.org/source/tahoe-lafs/deps/tahoe-lafs-dep-eggs/README.html) in generating all those binary eggs, zooko and I have had second thoughts about that. I have a patch to zetuptoolz, and zooko has a possible test.

Attachment zetuptoolz-prefer-platform-specific-dists.darcs.patch (15949 bytes) added

bundled zetuptools: prefer platform-specific dists to platform-independent ones. refs #1233

**Attachment** zetuptoolz-prefer-platform-specific-dists.darcs.patch (15949 bytes) added bundled zetuptools: prefer platform-specific dists to platform-independent ones. refs #1233
Author

Attachment test-prefer-bdists.darcs.patch (17233 bytes) added

**Attachment** test-prefer-bdists.darcs.patch (17233 bytes) added
Author

Attachment zetuptoolz-debugprints.diff.patch (4733 bytes) added

**Attachment** zetuptoolz-debugprints.diff.patch (4733 bytes) added
zooko modified the milestone from undecided to 1.8.1 2010-11-04 07:32:54 +00:00

In changeset:306ec02c1d2946b2:

setup.py: fix a bug in the check for whether we are running 'trial' or 'test', that affected zooko's test for #1233. refs #1233
In changeset:306ec02c1d2946b2: ``` setup.py: fix a bug in the check for whether we are running 'trial' or 'test', that affected zooko's test for #1233. refs #1233 ```
Author

There is now a deterministic test of this behavior, added in changeset:59dcd5014dcb440a. You can run it locally with python misc/build_helpers/test-with-fake-dists.py. Unfortunately it just skips the test if a satisfying version of pycryptopp is already installed. I couldn't figure out how to test it in that case.

If a satisfying version of pycryptopp is not already installed, then it will test this behavior and either raise an exception saying that the build system attempted to build a fake "pycryptopp v9.9.99" from source package (so it failed the test) or it will pass saying that it used a fake "pycryptopp 0.5.24" from binary package.

Looking at our buildslaves, all of ones working well enough to run the test already have pycryptopp installed:

I just manually removed pycryptopp from zomp and rebuilt build #213 to yield build #214:

Hey! Same behavior. Oh, silly me! pycryptopp is being built and stored in ./support by the build step if it isn't already present, so when the later test-with-fake-dists step happens it is always there! I will change the buildmaster config to do with-with-fake-dists first and see if that shows us something useful.

There is now a deterministic test of this behavior, added in changeset:59dcd5014dcb440a. You can run it locally with `python misc/build_helpers/test-with-fake-dists.py`. Unfortunately it just skips the test if a satisfying version of `pycryptopp` is already installed. I couldn't figure out how to test it in that case. If a satisfying version of `pycryptopp` is not already installed, then it will test this behavior and either raise an exception saying that the build system attempted to build a fake "pycryptopp v9.9.99" from source package (so it failed the test) or it will pass saying that it used a fake "pycryptopp 0.5.24" from binary package. Looking at our buildslaves, all of ones working well enough to run the test already have pycryptopp installed: * <http://tahoe-lafs.org/buildbot/builders/David%20A.%20OpenSolaris%20i386/builds/464/steps/test-with-fake-dists/logs/stdio> * <http://tahoe-lafs.org/buildbot/builders/MM%20netbsd5%20i386%20warp/builds/159/steps/test-with-fake-dists/logs/stdio> * <http://tahoe-lafs.org/buildbot/builders/lucid-amd64/builds/72/steps/test-with-fake-dists/logs/stdio> * <http://tahoe-lafs.org/buildbot/builders/Brian%20ubuntu-i386%20linode/builds/63/steps/test-with-fake-dists/logs/stdio> * <http://tahoe-lafs.org/buildbot/builders/Ruben%20Fedora/builds/691/steps/test-with-fake-dists/logs/stdio> * <http://tahoe-lafs.org/buildbot/builders/FreeStorm%20WinXP-x86%20py2.6/builds/356/steps/test-with-fake-dists/logs/stdio> * <http://tahoe-lafs.org/buildbot/builders/Zooko%20zomp%20Mac-amd64%2010.6%20py2.6/builds/213/steps/test-with-fake-dists/logs/stdio> * <http://tahoe-lafs.org/buildbot/builders/FreeStorm%20WinXP-x86%20py2.6/builds/356/steps/test-with-fake-dists/logs/stdio> * <http://tahoe-lafs.org/buildbot/builders/FreeStorm%20Win7-amd64-mingw%20py2.6/builds/168/steps/test-with-fake-dists/logs/stdio> * <http://tahoe-lafs.org/buildbot/builders/Eugen%20lenny-amd64/builds/671/steps/test-with-fake-dists/logs/stdio> * <http://tahoe-lafs.org/buildbot/builders/Randy%20FreeBSD-amd64/builds/195/steps/test-with-fake-dists/logs/stdio> * <http://tahoe-lafs.org/buildbot/builders/Arthur%20lenny%20c7%2032bit/builds/553/steps/test-with-fake-dists/logs/stdio> I just manually removed pycryptopp from zomp and rebuilt build #213 to yield build #214: * <http://tahoe-lafs.org/buildbot/builders/Zooko%20zomp%20Mac-amd64%2010.6%20py2.6/builds/214/steps/test-with-fake-dists/logs/stdio> Hey! Same behavior. Oh, silly me! pycryptopp is being built and stored in `./support` by the `build` step if it isn't already present, so when the later `test-with-fake-dists` step happens it is always there! I will change the buildmaster config to do `with-with-fake-dists` first and see if that shows us something useful.
Author

Great! Some of the buildslaves don't have pycryptopp installed and so we get a demonstration of issue #1233 on them. If we commit a patch that fixes #1233 then all of these should go from red to green:

These ones have a sufficient version of pycryptopp and so are not really testing #1233:

These ones I went to bed before they finished so at the time of this writing I don't knowL

Great! Some of the buildslaves don't have pycryptopp installed and so we get a demonstration of issue #1233 on them. If we commit a patch that fixes #1233 then all of these should go from red to green: * <http://tahoe-lafs.org/buildbot/builders/lucid-amd64/builds/74/steps/test-with-fake-dists/logs/stdio> * <http://tahoe-lafs.org/buildbot/builders/Brian%20ubuntu-i386%20linode/builds/65/steps/test-with-fake-dists/logs/stdio> * <http://tahoe-lafs.org/buildbot/builders/Randy%20FreeBSD-amd64/builds/197/steps/test-with-fake-dists/logs/stdio> * <http://tahoe-lafs.org/buildbot/builders/FreeStorm%20CentOS5-i386/builds/232/steps/test-with-fake-dists/logs/stdio> * <http://tahoe-lafs.org/buildbot/builders/FreeStorm%20WinXP-x86%20py2.6/builds/358/steps/test-with-fake-dists/logs/stdio> * <http://tahoe-lafs.org/buildbot/builders/Zooko%20zomp%20Mac-amd64%2010.6%20py2.6/builds/216/steps/test-with-fake-dists/logs/stdio> These ones have a sufficient version of pycryptopp and so are not really testing #1233: * <http://tahoe-lafs.org/buildbot/builders/Ruben%20Fedora/builds/693/steps/test-with-fake-dists/logs/stdio> * <http://tahoe-lafs.org/buildbot/builders/MM%20netbsd5%20i386%20warp/builds/161/steps/test-with-fake-dists/logs/stdio> These ones I went to bed before they finished so at the time of this writing I don't knowL * <http://tahoe-lafs.org/buildbot/builders/David%20A.%20OpenSolaris%20i386/builds/467> * <http://tahoe-lafs.org/buildbot/builders/Eugen%20lenny-amd64/builds/673> * <http://tahoe-lafs.org/buildbot/builders/Arthur%20lenny%20c7%2032bit/builds/555>
Author

All of the red steps test-with-fake-dists on our Supported Builders or all builders should go green when we fix this.

All of the red steps `test-with-fake-dists` on our [Supported Builders](http://tahoe-lafs.org/buildbot/waterfall?show_events=false&builder=Kyle+OpenBSD+amd64&builder=MM+netbsd5+i386+warp&builder=lucid-amd64&builder=Eugen+lenny-amd64&builder=Arthur+lenny+c7+32bit&builder=FreeStorm+CentOS5-i386&builder=Ruben+Fedora&builder=David+A.+OpenSolaris+i386&builder=Zooko+zomp+Mac-amd64+10.6+py2.6&builder=FreeStorm+WinXP-x86+py2.6&builder=Dcoder+Win7-64+py2.6&builder=tarballs) or [all builders](http://tahoe-lafs.org/buildbot/waterfall?show_events=false) should go green when we fix this.
Author

It would be great if someone else would try to hack zetuptoolz to fix this. If they don't, I will try.

It would be great if someone else would try to hack zetuptoolz to fix this. If they don't, I will try.
Author

In [4832/ticket1233]:

bundled zetuptoolz: prefer locally-available distributions over remotely-downloaded distributions above all
This fixes #1233. Actually the previous patches—[changeset:a1cef915fd689308] and [changeset:a44330dfeef23757]—fixed it, but with them zetuptoolz would download a higher-numbered distribution from the net instead of using the locally-available (fake) pycryptopp-0.5.24, thus preventing the tests from passing. This patch changes that behavior (which is an improvement in its own right) and also fixes a bug in the tests.
In [4832/ticket1233]: ``` bundled zetuptoolz: prefer locally-available distributions over remotely-downloaded distributions above all This fixes #1233. Actually the previous patches—[changeset:a1cef915fd689308] and [changeset:a44330dfeef23757]—fixed it, but with them zetuptoolz would download a higher-numbered distribution from the net instead of using the locally-available (fake) pycryptopp-0.5.24, thus preventing the tests from passing. This patch changes that behavior (which is an improvement in its own right) and also fixes a bug in the tests. ```
zooko added the
r/fixed
label 2010-11-17 09:06:16 +00:00
zooko closed this issue 2010-11-17 09:06:16 +00:00
Author

This is fixed by changeset:a1cef915fd689308, changeset:a44330dfeef23757, changeset:b4c14421f7c2f25a, changeset:8fef75851181ce79 on the source:ticket1233 branch! Compare before and after those four patches.

These patches also make a related improvement to behavior: do not download a distribution from a remote server if a distribution already present locally would suffice.

Please review! :-)

This is fixed by changeset:a1cef915fd689308, changeset:a44330dfeef23757, changeset:b4c14421f7c2f25a, changeset:8fef75851181ce79 on the source:ticket1233 branch! Compare [before](http://tahoe-lafs.org/buildbot/builders/FreeStorm%20CentOS5-i386/builds/244/steps/test-with-fake-dists/logs/stdio) and [after](http://tahoe-lafs.org/buildbot/builders/FreeStorm%20CentOS5-i386/builds/251/steps/test-with-fake-dists/logs/stdio) those four patches. These patches also make a related improvement to behavior: do not download a distribution from a remote server if a distribution already present locally would suffice. Please review! :-)
Author

By the way, here is the issue ticket in the Distribute project:

http://bitbucket.org/tarek/distribute/issue/127/prefer-v141-in-binary-egg-format-over-v145

By the way, here is the issue ticket in the Distribute project: <http://bitbucket.org/tarek/distribute/issue/127/prefer-v141-in-binary-egg-format-over-v145>
zooko removed the
r/fixed
label 2010-11-17 10:02:55 +00:00
zooko reopened this issue 2010-11-17 10:02:55 +00:00

Looks like there are still some unexplained buildslave failures on this step, so not ready for review yet.

Looks like there are still some unexplained buildslave failures on this step, so not ready for review yet.

Replying to zooko:

These patches also make a related improvement to behavior: do not download a distribution from a remote server if a distribution already present locally would suffice.

However, they always look on remote servers to see what distributions are available, before choosing the local one. It shouldn't be necessary even to look remotely in that case. But fixing that would be part of #1220 (or the longer-term project of replacing our use of setuptools).

Replying to [zooko](/tahoe-lafs/trac/issues/1233#issuecomment-381718): > These patches also make a related improvement to behavior: do not download a distribution from a remote server if a distribution already present locally would suffice. However, they always look on remote servers to see what distributions are available, before choosing the local one. It shouldn't be necessary even to look remotely in that case. But fixing that would be part of #1220 (or the longer-term project of replacing our use of setuptools).
Author

Replying to davidsarah:

Looks like there are still some unexplained buildslave failures on this step, so not ready for review yet.

Let's see...

Both of them exhibit the same error message:

pkg_resources.VersionConflict: (foolscap 0.4.2 (/usr/lib/pymodules/python2.6), Requirement.parse('foolscap[secure_connections]>=0.5.1'))

and

pkg_resources.VersionConflict: (foolscap 0.4.2 (/usr/local/lib/python2.6/dist-packages/foolscap-0.4.2-py2.6.egg), Requirement.parse('foolscap[secure_connections]>=0.5.1'))

Now what do these two have in common that the rest of the buildslaves, including their brother lucid-amd64 don't?

The answer seems to be that they have foolscap-0.4.2 installed, as shown by flappclient --version in their show-tool-versions steps. The other buildslaves, which don't hit this error, either have no foolscap installed at all or have a foolscap installed which is >= 0.5.1.

Still investigating...

Replying to [davidsarah](/tahoe-lafs/trac/issues/1233#issuecomment-381722): > Looks like there are still some unexplained buildslave failures on this step, so not ready for review yet. Let's see... * <http://tahoe-lafs.org/buildbot/builders/Brian%20ubuntu-i386%20linode/builds/78> * <http://tahoe-lafs.org/buildbot/builders/Shawn%20ubuntu-amd64/builds/592/steps/test-with-fake-dists/logs/stdio> Both of them exhibit the same error message: ``` pkg_resources.VersionConflict: (foolscap 0.4.2 (/usr/lib/pymodules/python2.6), Requirement.parse('foolscap[secure_connections]>=0.5.1')) ``` and ``` pkg_resources.VersionConflict: (foolscap 0.4.2 (/usr/local/lib/python2.6/dist-packages/foolscap-0.4.2-py2.6.egg), Requirement.parse('foolscap[secure_connections]>=0.5.1')) ``` Now what do these two have in common that the rest of the buildslaves, including their brother [lucid-amd64](http://tahoe-lafs.org/buildbot/builders/lucid-amd64/builds/84) don't? The answer seems to be that they have foolscap-0.4.2 installed, as shown by `flappclient --version` in their show-tool-versions steps. The other buildslaves, which don't hit this error, either have no foolscap installed at all or have a foolscap installed which is >= 0.5.1. Still investigating...
Author

Hm, that VersionConflict looks kind of like the problem in #1190. Could that have regressed somehow but only with regard to foolscap? Could it have something to do with the "extra requirement" secure_connections that aren't used in our other dependencies? That fix was suppoesd to be verfied by these tests: changeset:390c40cd8ce1e579, [0101030034303-93fa1-0267f4ed3c9014099eb2c9b4d8e43724d7ff85e1], changeset:c3b1bca95450ae40.

Huh-oh, if I change the test suite that source:trunk/misc/build_helpers/test-with-fake-pkg.py@4801 uses to test from allmydata.test.test_base62 (chosen because it does little) to allmydata.test.test_backupdb (which imports pycryptopp) then test-with-fake-pkg.py fails! On my Mac OS 10.6. This is a regression, because it worked back when we committed it to trunk!

I'll attach a darcs patch which changes test-with-fake-pkg to use test_backupdb...

Hm, that `VersionConflict` looks kind of like the problem in #1190. Could that have regressed somehow but only with regard to foolscap? Could it have something to do with the "extra requirement" `secure_connections` that aren't used in our other dependencies? That fix was suppoesd to be verfied by these tests: changeset:390c40cd8ce1e579, [0101030034303-93fa1-0267f4ed3c9014099eb2c9b4d8e43724d7ff85e1], changeset:c3b1bca95450ae40. Huh-oh, if I change the test suite that source:trunk/misc/build_helpers/test-with-fake-pkg.py@4801 uses to test from `allmydata.test.test_base62` (chosen because it does little) to `allmydata.test.test_backupdb` (which imports pycryptopp) then test-with-fake-pkg.py fails! On my Mac OS 10.6. This is a regression, because it worked back when we committed it to trunk! I'll attach a darcs patch which changes `test-with-fake-pkg` to use `test_backupdb`...
Author

Attachment test-with-fake-pkg-improvement.darcs.patch (20976 bytes) added

**Attachment** test-with-fake-pkg-improvement.darcs.patch (20976 bytes) added
Author

Okay let's move further discussion of this VersionConflict over to http://tahoe-lafs.org/trac/tahoe-lafs/ticket/1190#comment:38 .

Okay let's move further discussion of this `VersionConflict` over to <http://tahoe-lafs.org/trac/tahoe-lafs/ticket/1190#comment:38> .
Author

I kind of suspect that the problems with the VersionConflict aren't actually caused by the patches in this ticket, but are somehow being triggered by the test-with-fake-dists step. Perhaps we don't see this VersionConflict on buildbot of current trunk merely because the test-with-fake-dists step ends early on trunk when it gets an exception from trying to build the fake pycryptopp-9.9.99. If we, for example, hacked the fake pycryptopp-9.9.99 so that it stopped raising an exception, thus allowing test-with-fake-dists to run to the end on trunk, would we get the same VersionConflict on "Brian ubuntu-i386 linode" and "Shawn ubuntu-amd64"?

I kind of suspect that the problems with the `VersionConflict` aren't actually caused by the patches in this ticket, but are somehow being triggered by the `test-with-fake-dists` step. Perhaps we don't see this `VersionConflict` on buildbot of current trunk merely because the `test-with-fake-dists` step ends early on trunk when it gets an exception from trying to build the fake `pycryptopp-9.9.99`. If we, for example, hacked the fake `pycryptopp-9.9.99` so that it stopped raising an exception, thus allowing `test-with-fake-dists` to run to the end on trunk, would we get the same `VersionConflict` on "Brian ubuntu-i386 linode" and "Shawn ubuntu-amd64"?
Author

The issue with the VersionConflict with foolscap is fixed by changeset:50f8c37a2b0049a5 (on source:ticket1233).

The buildbot is nicely green now with &branch=ticket1233:

http://tahoe-lafs.org/buildbot/waterfall?branch=ticket1233

The issue with the `VersionConflict` with foolscap is fixed by changeset:50f8c37a2b0049a5 (on source:ticket1233). The buildbot is nicely green now with `&branch=ticket1233`: <http://tahoe-lafs.org/buildbot/waterfall?branch=ticket1233>
Author

Please review!

Please review!
zooko removed their assignment 2010-11-19 14:29:18 +00:00
daira was assigned by zooko 2010-11-19 14:29:18 +00:00
Author

On IRC, David-Sarah said: "I think ticket1233 can be committed to trunk"

On IRC, David-Sarah said: "I think ticket1233 can be committed to trunk"
daira was unassigned by zooko 2010-11-19 22:46:51 +00:00
zooko self-assigned this 2010-11-19 22:46:51 +00:00

In changeset:a1cef915fd689308:

bundled zetuptools: prefer platform-specific dists to platform-independent ones. refs #1233
In changeset:a1cef915fd689308: ``` bundled zetuptools: prefer platform-specific dists to platform-independent ones. refs #1233 ```
Author

In changeset:b4c14421f7c2f25a:

bundled zetuptoolz: prefer locally-available distributions over remotely-downloaded distributions above all
This fixes #1233. Actually the previous patches—[changeset:a1cef915fd689308] and [changeset:a44330dfeef23757]—fixed it, but with them zetuptoolz would download a higher-numbered distribution from the net instead of using the locally-available (fake) pycryptopp-0.5.24, thus preventing the tests from passing. This patch changes that behavior (which is an improvement in its own right) and also fixes a bug in the tests.
In changeset:b4c14421f7c2f25a: ``` bundled zetuptoolz: prefer locally-available distributions over remotely-downloaded distributions above all This fixes #1233. Actually the previous patches—[changeset:a1cef915fd689308] and [changeset:a44330dfeef23757]—fixed it, but with them zetuptoolz would download a higher-numbered distribution from the net instead of using the locally-available (fake) pycryptopp-0.5.24, thus preventing the tests from passing. This patch changes that behavior (which is an improvement in its own right) and also fixes a bug in the tests. ```
zooko added the
r/fixed
label 2010-11-20 06:05:53 +00:00
zooko closed this issue 2010-11-20 06:05:53 +00:00
Author

This appears to have failed for David-Sarah just now. They reported:

$ python setup.py build
running darcsver
setup.py darcsver: wrote '1.8.1-r4867' into src/allmydata/_version.py
running develop
Not found: ../tahoe-deps
running egg_info
writing requirements to src\allmydata_tahoe.egg-info\requires.txt
writing src\allmydata_tahoe.egg-info\PKG-INFO
writing top-level names to src\allmydata_tahoe.egg-info\top_level.txt
writing dependency_links to src\allmydata_tahoe.egg-info\dependency_links.txt
writing entry points to src\allmydata_tahoe.egg-info\entry_points.txt
writing manifest file 'src\allmydata_tahoe.egg-info\SOURCES.txt'
running build_ext
Processing darcsver-1.7.1.egg
removing 'd:\tahoe\tahoe-clean\support\lib\site-packages\darcsver-1.7.1.egg' (and everything under it)
Copying darcsver-1.7.1.egg to d:\tahoe\tahoe-clean\support\lib\site-packages
darcsver 1.7.1 is already the active version in easy-install.pth
Deleting support/Scripts\darcsver
Deleting support/Scripts\darcsver.pyscript
Installing darcsver.pyscript script to support/Scripts
Installing darcsver script to support/Scripts

Installed d:\tahoe\tahoe-clean\support\lib\site-packages\darcsver-1.7.1.egg
Creating d:\tahoe\tahoe-clean\support\lib\site-packages\allmydata-tahoe.egg-link (link to src)
allmydata-tahoe 1.8.1-r4867 is already the active version in easy-install.pth
Deleting support/Scripts\tahoe
Deleting support/Scripts\tahoe.pyscript
Installing tahoe.pyscript script to support/Scripts
Installing tahoe script to support/Scripts

Installed d:\tahoe\tahoe-clean\src
Processing dependencies for allmydata-tahoe==1.8.1-r4867
Searching for pycryptopp>=0.5.20
Reading http://tahoe-lafs.org/source/tahoe-lafs/deps/tahoe-dep-sdists/
Reading http://tahoe-lafs.org/source/tahoe-lafs/deps/tahoe-lafs-dep-eggs/
Best match: pycryptopp 0.5.25
Processing pycryptopp-0.5.25.tar.gz
Running pycryptopp-0.5.25\setup.py -q bdist_egg --dist-dir c:\users\david\appdata\local\temp\easy_install-ytavvv\pycrypt
opp-0.5.25\egg-dist-tmp-_ox2l8

Setting up environment to run scripts for the current user...
Already done: associate the filetype .pyscript with Python.File for the current user.
Already done: add .pyscript to the user environment variable PATHEXT.
Already done: add .pyw to the user environment variable PATHEXT.
/usr/lib/gcc/i686-pc-mingw32/3.4.4/../../../../i686-pc-mingw32/bin/ld: cannot find -lmsvcr90
collect2: ld returned 1 exit status
error: Setup script exited with error: command 'g++' failed with exit status 1

I don't understand why it didn't choose http://tahoe-lafs.org/source/tahoe-lafs/deps/tahoe-lafs-dep-eggs/pycryptopp-0.5.25-py2.6-win32.egg over pycryptopp-0.5.25.tar.gz . Hm, and from where did it get that pycryptopp-0.5.25.tar.gz , anyway? It doesn't say that it downloaded it. Oh, maybe the logic to "prefer locally available over remote as the highest priority" chose pycryptopp-0.5.25.tar.gz because it was present on the local filesystem.

In that case, perhaps this is the expected behavior and we can reclose this ticket? :-/

Maybe we should patch zetuptoolz to verbosely explain why it chose what it did and where it acquired it?

This appears to have failed for David-Sarah just now. They reported: ``` $ python setup.py build running darcsver setup.py darcsver: wrote '1.8.1-r4867' into src/allmydata/_version.py running develop Not found: ../tahoe-deps running egg_info writing requirements to src\allmydata_tahoe.egg-info\requires.txt writing src\allmydata_tahoe.egg-info\PKG-INFO writing top-level names to src\allmydata_tahoe.egg-info\top_level.txt writing dependency_links to src\allmydata_tahoe.egg-info\dependency_links.txt writing entry points to src\allmydata_tahoe.egg-info\entry_points.txt writing manifest file 'src\allmydata_tahoe.egg-info\SOURCES.txt' running build_ext Processing darcsver-1.7.1.egg removing 'd:\tahoe\tahoe-clean\support\lib\site-packages\darcsver-1.7.1.egg' (and everything under it) Copying darcsver-1.7.1.egg to d:\tahoe\tahoe-clean\support\lib\site-packages darcsver 1.7.1 is already the active version in easy-install.pth Deleting support/Scripts\darcsver Deleting support/Scripts\darcsver.pyscript Installing darcsver.pyscript script to support/Scripts Installing darcsver script to support/Scripts Installed d:\tahoe\tahoe-clean\support\lib\site-packages\darcsver-1.7.1.egg Creating d:\tahoe\tahoe-clean\support\lib\site-packages\allmydata-tahoe.egg-link (link to src) allmydata-tahoe 1.8.1-r4867 is already the active version in easy-install.pth Deleting support/Scripts\tahoe Deleting support/Scripts\tahoe.pyscript Installing tahoe.pyscript script to support/Scripts Installing tahoe script to support/Scripts Installed d:\tahoe\tahoe-clean\src Processing dependencies for allmydata-tahoe==1.8.1-r4867 Searching for pycryptopp>=0.5.20 Reading http://tahoe-lafs.org/source/tahoe-lafs/deps/tahoe-dep-sdists/ Reading http://tahoe-lafs.org/source/tahoe-lafs/deps/tahoe-lafs-dep-eggs/ Best match: pycryptopp 0.5.25 Processing pycryptopp-0.5.25.tar.gz Running pycryptopp-0.5.25\setup.py -q bdist_egg --dist-dir c:\users\david\appdata\local\temp\easy_install-ytavvv\pycrypt opp-0.5.25\egg-dist-tmp-_ox2l8 Setting up environment to run scripts for the current user... Already done: associate the filetype .pyscript with Python.File for the current user. Already done: add .pyscript to the user environment variable PATHEXT. Already done: add .pyw to the user environment variable PATHEXT. /usr/lib/gcc/i686-pc-mingw32/3.4.4/../../../../i686-pc-mingw32/bin/ld: cannot find -lmsvcr90 collect2: ld returned 1 exit status error: Setup script exited with error: command 'g++' failed with exit status 1 ``` I don't understand why it didn't choose <http://tahoe-lafs.org/source/tahoe-lafs/deps/tahoe-lafs-dep-eggs/pycryptopp-0.5.25-py2.6-win32.egg> over pycryptopp-0.5.25.tar.gz . Hm, and from where did it get that pycryptopp-0.5.25.tar.gz , anyway? It doesn't say that it downloaded it. Oh, maybe the logic to "prefer locally available over remote as the highest priority" chose pycryptopp-0.5.25.tar.gz because it was present on the local filesystem. In that case, perhaps this is the expected behavior and we can reclose this ticket? :-/ Maybe we should patch zetuptoolz to verbosely explain why it chose what it did and where it acquired it?

Replying to zooko:
[...]

I don't understand why it didn't choose http://tahoe-lafs.org/source/tahoe-lafs/deps/tahoe-lafs-dep-eggs/pycryptopp-0.5.25-py2.6-win32.egg over pycryptopp-0.5.25.tar.gz . Hm, and from where did it get that pycryptopp-0.5.25.tar.gz , anyway? It doesn't say that it downloaded it.

Oh, Problem Between Keyboard and Chair. I had that in my tahoe-deps directory.

Oh, maybe the logic to "prefer locally available over remote as the highest priority" chose pycryptopp-0.5.25.tar.gz because it was present on the local filesystem.

In that case, perhaps this is the expected behavior and we can reclose this ticket? :-/

Yes. (It wasn't reopened.)

Maybe we should patch zetuptoolz to verbosely explain why it chose what it did and where it acquired it?

That would be useful, as a new ticket.

Replying to [zooko](/tahoe-lafs/trac/issues/1233#issuecomment-381739): [...] > I don't understand why it didn't choose <http://tahoe-lafs.org/source/tahoe-lafs/deps/tahoe-lafs-dep-eggs/pycryptopp-0.5.25-py2.6-win32.egg> over pycryptopp-0.5.25.tar.gz . Hm, and from where did it get that pycryptopp-0.5.25.tar.gz , anyway? It doesn't say that it downloaded it. Oh, Problem Between Keyboard and Chair. I had that in my tahoe-deps directory. > Oh, maybe the logic to "prefer locally available over remote as the highest priority" chose pycryptopp-0.5.25.tar.gz because it was present on the local filesystem. > > In that case, perhaps this is the expected behavior and we can reclose this ticket? :-/ Yes. (It wasn't reopened.) > Maybe we should patch zetuptoolz to verbosely explain why it chose what it did and where it acquired it? That would be useful, as a new ticket.
Sign in to join this conversation.
No labels
c/code
c/code-dirnodes
c/code-encoding
c/code-frontend
c/code-frontend-cli
c/code-frontend-ftp-sftp
c/code-frontend-magic-folder
c/code-frontend-web
c/code-mutable
c/code-network
c/code-nodeadmin
c/code-peerselection
c/code-storage
c/contrib
c/dev-infrastructure
c/docs
c/operational
c/packaging
c/unknown
c/website
kw:2pc
kw:410
kw:9p
kw:ActivePerl
kw:AttributeError
kw:DataUnavailable
kw:DeadReferenceError
kw:DoS
kw:FileZilla
kw:GetLastError
kw:IFinishableConsumer
kw:K
kw:LeastAuthority
kw:Makefile
kw:RIStorageServer
kw:StringIO
kw:UncoordinatedWriteError
kw:about
kw:access
kw:access-control
kw:accessibility
kw:accounting
kw:accounting-crawler
kw:add-only
kw:aes
kw:aesthetics
kw:alias
kw:aliases
kw:aliens
kw:allmydata
kw:amazon
kw:ambient
kw:annotations
kw:anonymity
kw:anonymous
kw:anti-censorship
kw:api_auth_token
kw:appearance
kw:appname
kw:apport
kw:archive
kw:archlinux
kw:argparse
kw:arm
kw:assertion
kw:attachment
kw:auth
kw:authentication
kw:automation
kw:avahi
kw:availability
kw:aws
kw:azure
kw:backend
kw:backoff
kw:backup
kw:backupdb
kw:backward-compatibility
kw:bandwidth
kw:basedir
kw:bayes
kw:bbfreeze
kw:beta
kw:binaries
kw:binutils
kw:bitcoin
kw:bitrot
kw:blacklist
kw:blocker
kw:blocks-cloud-deployment
kw:blocks-cloud-merge
kw:blocks-magic-folder-merge
kw:blocks-merge
kw:blocks-raic
kw:blocks-release
kw:blog
kw:bom
kw:bonjour
kw:branch
kw:branding
kw:breadcrumbs
kw:brians-opinion-needed
kw:browser
kw:bsd
kw:build
kw:build-helpers
kw:buildbot
kw:builders
kw:buildslave
kw:buildslaves
kw:cache
kw:cap
kw:capleak
kw:captcha
kw:cast
kw:centos
kw:cffi
kw:chacha
kw:charset
kw:check
kw:checker
kw:chroot
kw:ci
kw:clean
kw:cleanup
kw:cli
kw:cloud
kw:cloud-backend
kw:cmdline
kw:code
kw:code-checks
kw:coding-standards
kw:coding-tools
kw:coding_tools
kw:collection
kw:compatibility
kw:completion
kw:compression
kw:confidentiality
kw:config
kw:configuration
kw:configuration.txt
kw:conflict
kw:connection
kw:connectivity
kw:consistency
kw:content
kw:control
kw:control.furl
kw:convergence
kw:coordination
kw:copyright
kw:corruption
kw:cors
kw:cost
kw:coverage
kw:coveralls
kw:coveralls.io
kw:cpu-watcher
kw:cpyext
kw:crash
kw:crawler
kw:crawlers
kw:create-container
kw:cruft
kw:crypto
kw:cryptography
kw:cryptography-lib
kw:cryptopp
kw:csp
kw:curl
kw:cutoff-date
kw:cycle
kw:cygwin
kw:d3
kw:daemon
kw:darcs
kw:darcsver
kw:database
kw:dataloss
kw:db
kw:dead-code
kw:deb
kw:debian
kw:debug
kw:deep-check
kw:defaults
kw:deferred
kw:delete
kw:deletion
kw:denial-of-service
kw:dependency
kw:deployment
kw:deprecation
kw:desert-island
kw:desert-island-build
kw:design
kw:design-review-needed
kw:detection
kw:dev-infrastructure
kw:devpay
kw:directory
kw:directory-page
kw:dirnode
kw:dirnodes
kw:disconnect
kw:discovery
kw:disk
kw:disk-backend
kw:distribute
kw:distutils
kw:dns
kw:do_http
kw:doc-needed
kw:docker
kw:docs
kw:docs-needed
kw:dokan
kw:dos
kw:download
kw:downloader
kw:dragonfly
kw:drop-upload
kw:duplicity
kw:dusty
kw:earth-dragon
kw:easy
kw:ec2
kw:ecdsa
kw:ed25519
kw:egg-needed
kw:eggs
kw:eliot
kw:email
kw:empty
kw:encoding
kw:endpoint
kw:enterprise
kw:enum34
kw:environment
kw:erasure
kw:erasure-coding
kw:error
kw:escaping
kw:etag
kw:etch
kw:evangelism
kw:eventual
kw:example
kw:excess-authority
kw:exec
kw:exocet
kw:expiration
kw:extensibility
kw:extension
kw:failure
kw:fedora
kw:ffp
kw:fhs
kw:figleaf
kw:file
kw:file-descriptor
kw:filename
kw:filesystem
kw:fileutil
kw:fips
kw:firewall
kw:first
kw:floatingpoint
kw:flog
kw:foolscap
kw:forward-compatibility
kw:forward-secrecy
kw:forwarding
kw:free
kw:freebsd
kw:frontend
kw:fsevents
kw:ftp
kw:ftpd
kw:full
kw:furl
kw:fuse
kw:garbage
kw:garbage-collection
kw:gateway
kw:gatherer
kw:gc
kw:gcc
kw:gentoo
kw:get
kw:git
kw:git-annex
kw:github
kw:glacier
kw:globalcaps
kw:glossary
kw:google-cloud-storage
kw:google-drive-backend
kw:gossip
kw:governance
kw:grid
kw:grid-manager
kw:gridid
kw:gridsync
kw:grsec
kw:gsoc
kw:gvfs
kw:hackfest
kw:hacktahoe
kw:hang
kw:hardlink
kw:heartbleed
kw:heisenbug
kw:help
kw:helper
kw:hint
kw:hooks
kw:how
kw:how-to
kw:howto
kw:hp
kw:hp-cloud
kw:html
kw:http
kw:https
kw:i18n
kw:i2p
kw:i2p-collab
kw:illustration
kw:image
kw:immutable
kw:impressions
kw:incentives
kw:incident
kw:init
kw:inlineCallbacks
kw:inotify
kw:install
kw:installer
kw:integration
kw:integration-test
kw:integrity
kw:interactive
kw:interface
kw:interfaces
kw:interoperability
kw:interstellar-exploration
kw:introducer
kw:introduction
kw:iphone
kw:ipkg
kw:iputil
kw:ipv6
kw:irc
kw:jail
kw:javascript
kw:joke
kw:jquery
kw:json
kw:jsui
kw:junk
kw:key-value-store
kw:kfreebsd
kw:known-issue
kw:konqueror
kw:kpreid
kw:kvm
kw:l10n
kw:lae
kw:large
kw:latency
kw:leak
kw:leasedb
kw:leases
kw:libgmp
kw:license
kw:licenss
kw:linecount
kw:link
kw:linux
kw:lit
kw:localhost
kw:location
kw:locking
kw:logging
kw:logo
kw:loopback
kw:lucid
kw:mac
kw:macintosh
kw:magic-folder
kw:manhole
kw:manifest
kw:manual-test-needed
kw:map
kw:mapupdate
kw:max_space
kw:mdmf
kw:memcheck
kw:memory
kw:memory-leak
kw:mesh
kw:metadata
kw:meter
kw:migration
kw:mime
kw:mingw
kw:minimal
kw:misc
kw:miscapture
kw:mlp
kw:mock
kw:more-info-needed
kw:mountain-lion
kw:move
kw:multi-users
kw:multiple
kw:multiuser-gateway
kw:munin
kw:music
kw:mutability
kw:mutable
kw:mystery
kw:names
kw:naming
kw:nas
kw:navigation
kw:needs-review
kw:needs-spawn
kw:netbsd
kw:network
kw:nevow
kw:new-user
kw:newcaps
kw:news
kw:news-done
kw:news-needed
kw:newsletter
kw:newurls
kw:nfc
kw:nginx
kw:nixos
kw:no-clobber
kw:node
kw:node-url
kw:notification
kw:notifyOnDisconnect
kw:nsa310
kw:nsa320
kw:nsa325
kw:numpy
kw:objects
kw:old
kw:openbsd
kw:openitp-packaging
kw:openssl
kw:openstack
kw:opensuse
kw:operation-helpers
kw:operational
kw:operations
kw:ophandle
kw:ophandles
kw:ops
kw:optimization
kw:optional
kw:options
kw:organization
kw:os
kw:os.abort
kw:ostrom
kw:osx
kw:osxfuse
kw:otf-magic-folder-objective1
kw:otf-magic-folder-objective2
kw:otf-magic-folder-objective3
kw:otf-magic-folder-objective4
kw:otf-magic-folder-objective5
kw:otf-magic-folder-objective6
kw:p2p
kw:packaging
kw:partial
kw:password
kw:path
kw:paths
kw:pause
kw:peer-selection
kw:performance
kw:permalink
kw:permissions
kw:persistence
kw:phone
kw:pickle
kw:pip
kw:pipermail
kw:pkg_resources
kw:placement
kw:planning
kw:policy
kw:port
kw:portability
kw:portal
kw:posthook
kw:pratchett
kw:preformance
kw:preservation
kw:privacy
kw:process
kw:profile
kw:profiling
kw:progress
kw:proxy
kw:publish
kw:pyOpenSSL
kw:pyasn1
kw:pycparser
kw:pycrypto
kw:pycrypto-lib
kw:pycryptopp
kw:pyfilesystem
kw:pyflakes
kw:pylint
kw:pypi
kw:pypy
kw:pysqlite
kw:python
kw:python3
kw:pythonpath
kw:pyutil
kw:pywin32
kw:quickstart
kw:quiet
kw:quotas
kw:quoting
kw:raic
kw:rainhill
kw:random
kw:random-access
kw:range
kw:raspberry-pi
kw:reactor
kw:readonly
kw:rebalancing
kw:recovery
kw:recursive
kw:redhat
kw:redirect
kw:redressing
kw:refactor
kw:referer
kw:referrer
kw:regression
kw:rekey
kw:relay
kw:release
kw:release-blocker
kw:reliability
kw:relnotes
kw:remote
kw:removable
kw:removable-disk
kw:rename
kw:renew
kw:repair
kw:replace
kw:report
kw:repository
kw:research
kw:reserved_space
kw:response-needed
kw:response-time
kw:restore
kw:retrieve
kw:retry
kw:review
kw:review-needed
kw:reviewed
kw:revocation
kw:roadmap
kw:rollback
kw:rpm
kw:rsa
kw:rss
kw:rst
kw:rsync
kw:rusty
kw:s3
kw:s3-backend
kw:s3-frontend
kw:s4
kw:same-origin
kw:sandbox
kw:scalability
kw:scaling
kw:scheduling
kw:schema
kw:scheme
kw:scp
kw:scripts
kw:sdist
kw:sdmf
kw:security
kw:self-contained
kw:server
kw:servermap
kw:servers-of-happiness
kw:service
kw:setup
kw:setup.py
kw:setup_requires
kw:setuptools
kw:setuptools_darcs
kw:sftp
kw:shared
kw:shareset
kw:shell
kw:signals
kw:simultaneous
kw:six
kw:size
kw:slackware
kw:slashes
kw:smb
kw:sneakernet
kw:snowleopard
kw:socket
kw:solaris
kw:space
kw:space-efficiency
kw:spam
kw:spec
kw:speed
kw:sqlite
kw:ssh
kw:ssh-keygen
kw:sshfs
kw:ssl
kw:stability
kw:standards
kw:start
kw:startup
kw:static
kw:static-analysis
kw:statistics
kw:stats
kw:stats_gatherer
kw:status
kw:stdeb
kw:storage
kw:streaming
kw:strports
kw:style
kw:stylesheet
kw:subprocess
kw:sumo
kw:survey
kw:svg
kw:symlink
kw:synchronous
kw:tac
kw:tahoe-*
kw:tahoe-add-alias
kw:tahoe-admin
kw:tahoe-archive
kw:tahoe-backup
kw:tahoe-check
kw:tahoe-cp
kw:tahoe-create-alias
kw:tahoe-create-introducer
kw:tahoe-debug
kw:tahoe-deep-check
kw:tahoe-deepcheck
kw:tahoe-lafs-trac-stream
kw:tahoe-list-aliases
kw:tahoe-ls
kw:tahoe-magic-folder
kw:tahoe-manifest
kw:tahoe-mkdir
kw:tahoe-mount
kw:tahoe-mv
kw:tahoe-put
kw:tahoe-restart
kw:tahoe-rm
kw:tahoe-run
kw:tahoe-start
kw:tahoe-stats
kw:tahoe-unlink
kw:tahoe-webopen
kw:tahoe.css
kw:tahoe_files
kw:tahoewapi
kw:tarball
kw:tarballs
kw:tempfile
kw:templates
kw:terminology
kw:test
kw:test-and-set
kw:test-from-egg
kw:test-needed
kw:testgrid
kw:testing
kw:tests
kw:throttling
kw:ticket999-s3-backend
kw:tiddly
kw:time
kw:timeout
kw:timing
kw:to
kw:to-be-closed-on-2011-08-01
kw:tor
kw:tor-protocol
kw:torsocks
kw:tox
kw:trac
kw:transparency
kw:travis
kw:travis-ci
kw:trial
kw:trickle
kw:trivial
kw:truckee
kw:tub
kw:tub.location
kw:twine
kw:twistd
kw:twistd.log
kw:twisted
kw:twisted-14
kw:twisted-trial
kw:twitter
kw:twn
kw:txaws
kw:type
kw:typeerror
kw:ubuntu
kw:ucwe
kw:ueb
kw:ui
kw:unclean
kw:uncoordinated-writes
kw:undeletable
kw:unfinished-business
kw:unhandled-error
kw:unhappy
kw:unicode
kw:unit
kw:unix
kw:unlink
kw:update
kw:upgrade
kw:upload
kw:upload-helper
kw:uri
kw:url
kw:usability
kw:use-case
kw:utf-8
kw:util
kw:uwsgi
kw:ux
kw:validation
kw:variables
kw:vdrive
kw:verify
kw:verlib
kw:version
kw:versioning
kw:versions
kw:video
kw:virtualbox
kw:virtualenv
kw:vista
kw:visualization
kw:visualizer
kw:vm
kw:volunteergrid2
kw:volunteers
kw:vpn
kw:wapi
kw:warners-opinion-needed
kw:warning
kw:weapi
kw:web
kw:web.port
kw:webapi
kw:webdav
kw:webdrive
kw:webport
kw:websec
kw:website
kw:websocket
kw:welcome
kw:welcome-page
kw:welcomepage
kw:wiki
kw:win32
kw:win64
kw:windows
kw:windows-related
kw:winscp
kw:workaround
kw:world-domination
kw:wrapper
kw:write-enabler
kw:wui
kw:x86
kw:x86-64
kw:xhtml
kw:xml
kw:xss
kw:zbase32
kw:zetuptoolz
kw:zfec
kw:zookos-opinion-needed
kw:zope
kw:zope.interface
p/blocker
p/critical
p/major
p/minor
p/normal
p/supercritical
p/trivial
r/cannot reproduce
r/duplicate
r/fixed
r/invalid
r/somebody else's problem
r/was already fixed
r/wontfix
r/worksforme
t/defect
t/enhancement
t/task
v/0.2.0
v/0.3.0
v/0.4.0
v/0.5.0
v/0.5.1
v/0.6.0
v/0.6.1
v/0.7.0
v/0.8.0
v/0.9.0
v/1.0.0
v/1.1.0
v/1.10.0
v/1.10.1
v/1.10.2
v/1.10a2
v/1.11.0
v/1.12.0
v/1.12.1
v/1.13.0
v/1.14.0
v/1.15.0
v/1.15.1
v/1.2.0
v/1.3.0
v/1.4.1
v/1.5.0
v/1.6.0
v/1.6.1
v/1.7.0
v/1.7.1
v/1.7β
v/1.8.0
v/1.8.1
v/1.8.2
v/1.8.3
v/1.8β
v/1.9.0
v/1.9.0-s3branch
v/1.9.0a1
v/1.9.0a2
v/1.9.0b1
v/1.9.1
v/1.9.2
v/1.9.2a1
v/cloud-branch
v/unknown
No milestone
No project
No assignees
2 participants
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference: tahoe-lafs/trac#1233
No description provided.