automatically generate binary .egg's of pycryptopp for all of our Supported Platforms #1094
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
2 Participants
Notifications
Due Date
No due date set.
Reference: tahoe-lafs/trac-2024-07-25#1094
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?
zeromus's #1093 (win32 build hell) was at least partly if not mostly caused by the following problem:
find_links
it could see that the following directory was a valid place to get dependencies: http://tahoe-lafs.org/source/tahoe-lafs/deps/tahoe-dep-eggs/ . At the time, that directory contained the following packages of pycryptopp:Now it can't use any binary eggs that aren't for win32 or that aren't for Python 2.5, so that leaves:
But, it will prefer to use a newer release from source tarball over using an older release from a binary egg! Since that py2.5-win32.egg there is pycryptopp v0.5.17, and since it can get pycryptopp v0.5.19 in source tarball form, it will go for the latter.
Therefore, it went ahead and used the pycryptopp v0.5.19 source tarball from the SUMO tarball and tried to compile it.
It then failed to compile it with this error:
I believe that failure is due to http://tahoe-lafs.org/trac/pycryptopp/ticket/37.
However, that failure to build is not the subject of this ticket. The subject of this ticket is: why didn't the build system find a binary egg of pycryptopp for the current platform and use that?
Ok, why does http://tahoe-lafs.org/source/tahoe-lafs/deps/tahoe-dep-eggs have new binary eggs of pycryptopp v0.5.19 for py2.6-win32 and for py2.6-win-amd64.egg but not for py2.5-win32? The answer is easy to see by looking at the pycryptopp buildbot page. There is a buildslave for py2.6-win32 (operated by FreeStorm) and a buildslave for py2.6-win-amd64 (operated by Dcoder/sneves). There is no buildslave for py2.5-win32. That means that py2.5-win32 is not a Supported Platform!
So to close this ticket, either change the docs to specify that you should use Python 2.6 and if you use any other version of Python then you are on your own, or else get someone to volunteer a py2.5-win32 buildslave to generate pycryptopp binary eggs.
Replying to zooko:
If I understand correctly, the original reason for recommending Python 2.5 on Windows, was that mingw cannot compile extension modules for Python 2.6 on Windows; that requires a Microsoft compiler. Since we have py2.6-win32 and py2.6-win32-amd64 buildslaves with Microsoft compilers, this is presumably less of an issue now (at least for users who do not want to compile everything from scratch, but those are not the audience quickstart.html is targeted at).
changeset:5ade4f82e0ee38cf updated quickstart.html to recommend use of Python 2.6 on Windows. Should we consider this fixed?
Okay we have automatic generation of pycryptopp bdist_eggs on our buildbot. You can see its logs here:
http://tahoe-lafs.org/buildbot-pycryptopp/waterfall
and the resulting .egg's are hosted here: http://tahoe-lafs.org/source/tahoe-lafs/deps/tahoe-dep-eggs/
We can close this ticket, about automating this process, but we're going to open a new ticket about visualizing which platforms and python versions have which versions of which dependencies available (i.e. by writing a script that generates a .rst table)...
That visualization would then inform us about which versions of Python we can recommend on which platforms...