automatic freshening of version number #260

Closed
opened 2008-01-05 20:58:22 +00:00 by zooko · 1 comment

(split off from #257)

We could add the following to setup.py:

if 'darcsver' in not sys.argv: # to avoid recursion in case of weird sys.argv
    for arg in sys.argv:
        for start in ['bdist', 'build', 'sdist', 'install', 'develop']:
            if cmdname.startswith(start):
                (cin, cout, cerr,)= os.popen3("setup.py darcsver")
                print cout.read()

This would be similar to what we already did in setup.py back when "darcsver" was a separate script instead of a setuptools plugin, but it would be better, in that it would execute "darcsver" only in the case that the setup.py command being executed is one of those which wants a fresh version number. One problem with this is that "./setup.py darcsver" seems to take a long time -- 6 seconds for Brian. I don't know how much of that is darcs, how much is darcsver, and how much is setuptools plugin management. I'll investigate later.

(split off from #257) We could add the following to setup.py: ``` if 'darcsver' in not sys.argv: # to avoid recursion in case of weird sys.argv for arg in sys.argv: for start in ['bdist', 'build', 'sdist', 'install', 'develop']: if cmdname.startswith(start): (cin, cout, cerr,)= os.popen3("setup.py darcsver") print cout.read() ``` This would be similar to what we already did in setup.py back when "darcsver" was a separate script instead of a setuptools plugin, but it would be better, in that it would execute "darcsver" only in the case that the setup.py command being executed is one of those which wants a fresh version number. One problem with this is that "./setup.py darcsver" seems to take a long time -- 6 seconds for Brian. I don't know how much of that is darcs, how much is darcsver, and how much is setuptools plugin management. I'll investigate later.
zooko added the
packaging
major
enhancement
0.7.0
labels 2008-01-05 20:58:22 +00:00
zooko self-assigned this 2008-01-05 20:58:22 +00:00
zooko added this to the undecided milestone 2008-01-23 02:45:44 +00:00
Author

I did some quick profiling and this takes a couple of seconds on my machines, all of which is spent by darcs examining its files and printing out a complete list of changes (so that darcsver can count them.

For now I'm closing this as wontfix -- you'll have to explicitly invoke ./setup.py darcsver --count-all-patches or equivalently make version whenever you want to freshen the version number. In future modifications of darcsver I intend to make it faster and then I'll revisit this issue in my mind.

I did some quick profiling and this takes a couple of seconds on my machines, all of which is spent by `darcs` examining its files and printing out a complete list of changes (so that `darcsver` can count them. For now I'm closing this as wontfix -- you'll have to explicitly invoke `./setup.py darcsver --count-all-patches` or equivalently `make version` whenever you want to freshen the version number. In future modifications of `darcsver` I intend to make it faster and then I'll revisit this issue in my mind.
zooko added the
wontfix
label 2008-05-30 03:12:28 +00:00
zooko closed this issue 2008-05-30 03:12:28 +00:00
Sign in to join this conversation.
No Milestone
No Assignees
1 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Reference: tahoe-lafs/trac-2024-07-25#260
No description provided.