make setup.py more easily patchable by OS packagers #1168
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#1168
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?
Packaging Tahoe-LAFS for OS distributions (e.g. Debian or Ubuntu) currently requires that source:setup.py be patched, so that setuptools doesn't try to satisfy Tahoe's dependencies by downloading eggs or by deciding to use a different version of the dependency than would be provided by an OS package.
The attached diff adds an
external_dependency_management
switch tosetup.py
to cause this change in behaviour. It doesn't remove the need for a patch, but makes such patches much more likely to apply cleanly.Attachment setup.py.diff (8581 bytes) added
add 'external_dependency_management' flag to setup.py (context diff)
For install requirements you can turn off dependency management by passing
--single-version-externally-managed
or--root=targetdir
options topython setup.py install
. For build-time dependencies, they are bundled with the Tahoe-LAFS source tree so you probably don't need to disable the dependency on them.Replying to davidsarah:
Are we sure that this is a problem? It won't try to download eggs if the dependencies required are already present.
Does this mean the packager wants to supply a version of a dependent library older than the minimum version that we specify in source:_auto_deps.py? If so, I would like to know about this!
I chatted with rockstar on IRC about his packaging of Tahoe-LAFS for Ubuntu. He said that
python setup.py test
failed due to it trying to execute darcsver and darcsver not being found, which he solved by removing thealiases
section of source:setup.cfg which makes the darcsver command be invoked when running the test command.I don't understand how darcsver could not been found and caused the test to fail, but perhaps I don't understand something about the build environment (which is managed by
debhelper
). Here is an example ofpython setup.py test
working on an Ubuntu buildslave: http://tahoe-lafs.org/buildbot/builders/Shawn%20jaunty%20amd64/builds/532/steps/test/logs/stdio .I think the next step is to set up automated execution of a build as managed by
debhelper
on a buildslave.Also I would very much appreciate it if someone who knows how to use
debhelper
would give me a paste of what the error message is when runningpython setup.py test
.(http://tahoe-lafs.org/pipermail/tahoe-dev/2010-August/004964.html)
Replying to [zooko]comment:3:
I've seen it attempt to do so (for foolscap-0.5.1, for example). It's possible that the dependencies were not present in a way recognized by setuptools, but that seems to be a situation that is very easy to end up in. Also see #717 (which is about rebuilding rather than downloading, but that's still a problem).
setuptools might want to download, build, or install a version that is newer than the one supplied by the OS package manager, even though the latter satisfies our declared requirement. (I'm skeptical that http://bugs.python.org/setuptools/issue17 and http://bugs.python.org/setuptools/issue20 have actually been fixed, or if they have, then there must be other bugs causing this problem, because I've definitely seen it happen.)
Replying to [davidsarah]comment:6:
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 thoughpython setup.py build
copied it intosupport/site-packages
and the build completed successfully.Replying to [davidsarah]comment:7:
This may be the same problem as #657 (modulo
trial
vstest
, buttrial
should not be doing any more thantest
, I think).Replying to [davidsarah]comment:7:
Okay let's open a ticket and write a deterministic unit test which shows this misbehavior.
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:8)?
[Makefile]source:trunk/Makefile@4650#L266
Moving the discussion about re-downloading foolscap to #717.
I think this is a duplicate of #1220 (build/install should be able to refrain from getting dependencies). Please re-open this ticket if I'm missing something.
Replying to zooko:
This ticket has a patch specifically to reduce the need for patching
setup.py
, and that patch got forgotten when it was closed. My interpretation of #1220 is that it's about longer-term fixes.I think our new setup.py now meets this requirement. At least, it behaves like all other setup.pys out there. The lack of
setup_requires=
is a big one, and usingtox
for tests means we no longer have customsetup.py test
steps (with dependencies).Closing this one out, but feel free to re-open if I've misinterpreted it.