hard to run against alternate dependencies, e.g. trunk version of Foolscap #709
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#709
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?
For the #653 work I'm doing now (which requires a change to foolscap:
foolscap#105), I need to run a
Tahoe trunk tree against a Foolscap trunk tree (to test changes I'm
considering putting into the upcoming foolscap release). The normal way to do
this (which used to work before we switched to setuptools) was:
I tried to do this yesterday, and here are the problems I ran into:
PYTHONPATH, so I must delete the .egg first
problem), so I must delete that one too
running any tests, so I use "make quicktest" instead
~/foolscap/trunk
directory) does notappear to qualify as fulfilling the setuptools dependency for
foolscapsecure_connections>=0.3.1
.src/allmydata/scripts/runner.py
has a line which doespkg_resources.require('allmydata-tahoe')
, and that throws aDistributionNotFound exception. I commented that line out.
pkg_resources.load_entry_point
-based support/bin/tahoe scriptdoes an implicit
pkg_resources.require
, also failing because itthinks it doesn't have Foolscap available.
I think the only way I can work around this is to use "setup.py develop
TARGETDIR" on my Foolscap tree, and then set PYTHONPATH to point at TARGETDIR
instead of
~/foolscap/trunk
.This is annoying. I really wish that PYTHONPATH could be used as it was
originally intended, and that these eggs weren't getting in the way.
fix formatting of Foolscap ticket link
The first two problems in your list of five problems are http://bugs.python.org/setuptools/issue53 (respect the PYTHONPATH). There have been two different patches posted to that ticket (the first was by me), and I don't currently understand the objection of the setuptools maintainer (PJE) to the most recent patch. Perhaps you could help by reading that ticket and figuring out what needs to change to get PJE to accept Mark Sienkiwicz's patch.
Alternately, we could continue our toothpick of setuptools (which I call
zetuptoolz
) by applying my patch or Mark Sienkiwicz's patch tozetuptoolz
.For what it is worth, this is going to be fixed one way or another in the long run, as either distutils core or various setuptools competitors move ahead and we will be able to switch to that in order to gain "respect the PYTHONPATH" without losing other functionality that we currently use.
Now, as for workarounds, if you build a
.egg-info
file, I think it would eliminate the last 3 of your 5 complaints. I'm not sure if that will do it..egg-info
files are created by default by modern Python distutils when building.Yup, by doing
python setup.py build
in the Foolscap tree, it created afoolscap.egg-info
directory there, after whichPYTHONPATH=~/foolscap/trunk make quicktest
started working again (without commenting out thepkg_resources.require
calls).Also,
PYTHONPATH=~/tahoe/trunk/support/lib/python2.5/site-packages python setup.py develop --prefix ~/tahoe/trunk/support
put afoolscap.egg-link
file in the tahoe lib directory, from which tahoe was able to find the foolscap code.(I'm not used to doing
python setup.py build
with foolscap, because Foolscap doesn't need it for anything).This works well enough for now. I look forward to seeing the "respect PYTHONPATH for .eggs" fix get into whatever packaging system we use. I guess I'll leave this ticket open until that happens. Thanks!
I was mistaken.
python setup.py build
does not create afoolscap.egg-info
directory. You must do asetup.py egg_info
to get it to create the .egg-info . Thesetup.py develop
merely creates it as a side-effect.Note that once #668 is resolved, switching to Distribute, this issue may or may not be resolved as a result.
hard to run against alternate dependencies, i.e. trunk version of Foolscapto hard to run against alternate dependencies, e.g. trunk version of FoolscapI opened a ticket with the Python Distribute project: http://bitbucket.org/tarek/distribute/issue/136/respect-the-pythonpath
zetuptoolz has a patch which is intended to fix this: http://tahoe-lafs.org/trac/zetuptoolz/changeset/20081115185932-92b7f-d451b10759897b0fa5d038f2c42cdcd3901289a8/trunk
If you wanted to try it out by installing zetuptoolz instead of your normal setuptools-or-distribute and try
PYTHONPATH=~/foolscap/trunk make test
, I would appreciate it.Oh, it isn't just installing zetuptoolz -- this code gets written into your easy-install.pth. So to test this, read the patch and make the appropriate adjustment to the code in your easy-install.pth, and then see if
PYTHONPATH=~/foolscap/trunk make test
works. If so, then maybe we can extend zetuptoolz so that it hunts down all easy-install.pth's that it has write access to and fixes them. ;-)Here is the code in question: zetuptoolz's easy_install.py
warner: are you willing to try this?
I've opened Launchpad bug #821000 to track the way this affects setuptools, distribute, Ubuntu, and Tahoe-LAFS (via our local fork of setuptools named "zetuptoolz").
This is now resolved: by using a virtualenv, I can
pip install --editable ~/my/foolscap
to use a locally-modified Foolscap along with my locally-modified Tahoe. It's not $PYTHONPATH manipulation, but it works just as well.