unnecessary rebuild of dependencies when tahoe-deps/ is present #717
Labels
No Label
0.2.0
0.3.0
0.4.0
0.5.0
0.5.1
0.6.0
0.6.1
0.7.0
0.8.0
0.9.0
1.0.0
1.1.0
1.10.0
1.10.1
1.10.2
1.10a2
1.11.0
1.12.0
1.12.1
1.13.0
1.14.0
1.15.0
1.15.1
1.2.0
1.3.0
1.4.1
1.5.0
1.6.0
1.6.1
1.7.0
1.7.1
1.7β
1.8.0
1.8.1
1.8.2
1.8.3
1.8β
1.9.0
1.9.0-s3branch
1.9.0a1
1.9.0a2
1.9.0b1
1.9.1
1.9.2
1.9.2a1
LeastAuthority.com automation
blocker
cannot reproduce
cloud-branch
code
code-dirnodes
code-encoding
code-frontend
code-frontend-cli
code-frontend-ftp-sftp
code-frontend-magic-folder
code-frontend-web
code-mutable
code-network
code-nodeadmin
code-peerselection
code-storage
contrib
critical
defect
dev-infrastructure
documentation
duplicate
enhancement
fixed
invalid
major
minor
n/a
normal
operational
packaging
somebody else's problem
supercritical
task
trivial
unknown
was already fixed
website
wontfix
worksforme
No Milestone
No Assignees
3 Participants
Notifications
Due Date
No due date set.
Reference: tahoe-lafs/trac-2024-07-25#717
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Using a trunk changeset:9a02f4a1043d6288 tree, on my debian/sid box, performing "python setup.py build" with the tahoe-deps tarball unpacked in the parent directory causes several dependency libraries to be built and installed in support/lib/python2.5/site-packages even though those libraries are already present, usable, and visible to
pkg_resources.requires
in the standard PYTHONPATH /usr/lib/python2.5/site-packages directory.The libraries that are unnecessarily rebuilt are:
Removing ../tahoe-deps, erasing support/lib, and re-running "python setup.py build" correctly skips the build of these libraries, resulting in a support/lib that only contains setuptools-0.6c12dev and the allmydata-tahoe.egg-link file (well, and the usual setuptools noise: setup.py, setuptools.pth, and easy-install.pth).
Something in setuptools is buggy: having ../tahoe-deps available should not influence the decision to install a library or not.
This needs to be added to the setuptools bugtracker at http://bugs.python.org/setuptools/ .
Thank you for the bug report. As I'm sure you know, a good way to report this bug to setuptools devs would be to create a minimal test case. Here's a crack at one:
Make a
setup.py
file in a new empty directory with the following contents:Then run
python ./setup.py build
, with and without asimplejson-2.0.9.tar.gz
located in../tahoe-deps
.This may be related to http://bugs.python.org/setuptools/issue17 (easy_install will install a package that is already there). There is a work-around documented in that ticket.
I'm not sure it is related.. as I understand it, setuptools-17 is about setuptools building packages that are present in an unusual directory that the platform has added to sys.path (like the /var/lib/python-support/python2.5 on debian), probably because it isn't honoring the platform's changes to sys.path when it scans for those packages.
In contrast, what I observed was that all of the unecessarily-rebuilt libraries were present in /usr/lib/python2.5/site-packages . None were in /var/lib/python-support/python2.5 .
This may be related to #657 ("python ./setup.py test" rebuilds packages).
Note that once #668 is resolved, switching to Distribute, this issue may or may not be resolved as a result.
It looks like this may be related to http://bugs.python.org/setuptools/issue65 (setuptools bug,inconsistent replacement of eggs when installing from file:// urls.) which is fixed in setuptools-0.6c10 prerelease. setuptools 65 is related to http://bugs.python.org/setuptools/issue17 (easy_install will install a package that is already there) and http://bugs.python.org/setuptools/issue20 (package required at build time seems to be not fully present at install time?).
Maybe someone (cgalvan?) could test this issue with the setuptools v0.6c10.
There was a different bug which caused a similar behavior in #229.
In comment:7:ticket:1168 and comment:10:ticket:1168 we commented on this issue. David-Sarah wrote:
I can reproduce this by downloading the 1.8.0c2 tarball, building it, and then running python setup.py trial. foolscap 0.5.1 is downloaded again on every run of trial, even though python setup.py build copied it into support/site-packages and the build completed successfully.
and I wrote:
Looks like it might be #717. Isn't the buildbot already testing this by running the "Desert Island build"? e.g: http://tahoe-lafs.org/buildbot/builders/clean/builds/2522
In that test, the test code installed the deps tarball and then ran build, and made sure that the code under test (which is our build system) did not try to download any package. The code under test passed and the test is green! So why did it do the right thing and pass that test even if it reproducible does the wrong thing in David-Sarah's scenario (comment:-1)?
[Makefile]source:trunk/Makefile@4650#L266
Replying to zooko:
In my scenario, I download a non-SUMO tarball, run
python setup.py trial
python setup.py build
followed bypython setup.py trial
(expecting the dependencies to be downloaded and built before the test), and then runpython setup.py trial
again (expecting the previously downloaded dependencies to be used and not rebuilt). Are these expectations correct?In any case, this is not the same thing as downloading
tahoe-deps.tar.gz
, untarring it in the distribution directory and then runningpython setup.py build
, which is what test-desert-island does.We no longer provide or support the
tahoe-deps
tarball/directory, and the pip http+wheel cache works correctly to avoid rebuilds. Closing this out.