rewrite our Makefile in Python instead of GNUmake #179
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#179
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?
I just committed changeset:bf3f629a683fd4cb (and the preceding related patches) which moves one kludgey little system-compatibility function from Makefile to misc/find_trial.py. This reminds me once again that we seem to make our build system more maintainable by rewriting parts of it from GNUmake into Python, and perhaps we ought to go all the way, eliminate Makefile entirely, remove the manual dependency on the GNU make tool, and write each of our build features into a logically separate setuptools plugin.
By the way, setuptools plugins like that can be in separate files and could even be separately packaged if we want, such as the setuptools_darcs_plugin that I recently wrote.
I think the Next Step for this one is to pick the next build feature which would look better in Python as a setuptools plugin than it currently looks as a GNUmake target, and replace that one.
FYI, it looks like the 'Python Buildutils' project has similar goals:
http://buildutils.lesscode.org/
However I don't see any actual overlap between the commands they offer and
the tasks we perform in our makefile.
I found some other setuptools plugins that might be useful. I wish I'd known about bbfreeze a month ago, before we put so much effort into persuading py2exe. (Of course, bbfreeze might not have been less effort, but it sounds like it might have made some of our issues easier.)
http://mail.python.org/pipermail/distutils-sig/2008-January/008724.html
My long-term goal is to make the source:Makefile entirely redundant so that it consists of only a list of targets like this:
etc.
Currently our install.html instructs the user to invoke
make check-deps
,make
, and thenmake test
.Soon we'll be able to change this doc by removing
make check-deps
entirely, and by instructing users to runpython ./setup.py build
andpython ./setup.py test
. At that point we can removeGNU make
from the list of manual dependencies.Brian likes to use a makefile as a way to find out which commands the maintainer of the build system chose to offer. (I guess by something like
grep ^.*: Makefile
.) You can run./setup.py --help-commands
to get a list of commands that./setup.py
knows how to run, but this is answering a different question -- it isn't telling what commands the maintainer of the build system chose to add, because one of the points of the setuptools plugin approach is that the maintainer of the build system for package X doesn't have to do anything to add commands, nor does he even know what commands are available. For example, if someone created a setuptools plugin that runs trial on your packages, and you've installed that plugin on your system, thenpackage_X/setup.py --help-commands
will list that command as one of the ones that it can do, even though the maintainer of package X has never heard of it.Even if I ever get around to implementing this ticket, there may still be a place for a makefile that lists likely targets, per the example above, or else maybe a text README document, or maybe a special
./setup.py --help-tahoe-commands
...I've just pushed a number of patches that move a lot of functionality from the Makefile into our setup.py, via a number of helper subcommands. This has removed all of the platform-dependent code and pretty much all of the gnarly shell-quoting goop from the Makefile.
Here is a related discussion on tahoe-dev: http://allmydata.org/pipermail/tahoe-dev/2008-September/000799.html
The fact that http://allmydata.org/source/tahoe/trunk/docs/install.html process now works without requiring GNU make and that this is tested by buildbot (#434 (automate testing of installation)) means that I'm satisfied with the status of this ticket.
There is still functionality in Makefile, including
make quicktest
, the Windows and Mac package building, and more, but let's close this ticket and hopefully in the future people will gradually write more and more insetuptools
and less and less in ```GNU make}}].