]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/commitdiff
grand unified version numbers
authorZooko O'Whielacronx <zooko@zooko.com>
Tue, 1 May 2007 20:23:15 +0000 (13:23 -0700)
committerZooko O'Whielacronx <zooko@zooko.com>
Tue, 1 May 2007 20:23:15 +0000 (13:23 -0700)
Now the allmydata python package, the setup.py script, and the debian packages all get their tahoe version number from the same place.

GNUmakefile
setup.py
src/allmydata/__init__.py

index 1ee9cd791726e1b260d0c248107056f0cb38d92a..ba01374eb7d54ca3d24477b09aa4ccac84ac9465 100644 (file)
@@ -175,13 +175,13 @@ create_dirs:
        mkdir -p client-basedir/storage
        mkdir -p client-basedir2/storage
 
-DEBVER=`head -1 debian/changelog | sed -e 's/^[^(]*(\([^)]*\)).*$$/\1/' | sed -e 's/^\([0-9]\+\.[0-9]\+\.[0-9]\+\).*$$/\1/'`
-DEBSTRING=$(DEBVER)-T`date +%s`
+VER=$(shell python -c "import os,re;print re.search(\"verstr=['\\\"](.*?)['\\\"]\", open(os.path.join('src', 'allmydata', '__init__.py')).readline()).group(1)")
+DEBSTRING=$(VER)-T`date +%s`
 DEBCOMMENTS="'make deb' build"
 
 show:
-       echo $(DEBVER)
-       echo $(DEBSTRING)
+       @echo $(VER)
+       @echo $(DEBSTRING)
 
 .PHONY: setup-dapper setup-sid setup-edgy setup-feisty
 .PHONY: deb-dapper deb-sid deb-edgy deb-feisty
index 2effe79954fcf441b87b673f75cadf466a26296d..c932a3df28b9d8aab5c64aa7d85e3714b308cb26 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -55,8 +55,14 @@ trove_classifiers=[
     "Topic :: System :: Archiving", 
     ]
 
+import re
+VSRE=re.compile("verstr=['\"]([^'\"]*)['\"]")
+verstrline=open("src/allmydata/__init__.py").readline()
+mo = VSRE.search(verstrline)
+verstr = mo.group(1)
+
 setup(name='allmydata-tahoe',
-      version='0.2.0b1',
+      version=verstr,
       description='secure, distributed storage grid',
       long_description="""Welcome to the AllMyData "tahoe" project. This project implements a
 secure, distributed, fault-tolerant storage grid.
index 2baf0b530ec9d874d46ea3020b9fb6c450ec0a9d..25df41fe8a58e2efe737ed551baee5a6b98e8b71 100644 (file)
@@ -1,3 +1,6 @@
+verstr="0.2.0b1-0-UNSTABLE"
+# The line is placed above so that it can be easily read by build scripts.
+
 """
 Decentralized storage grid.
 
@@ -10,7 +13,7 @@ from util.version import Version
 
 # For an explanation of what the parts of the version string mean,
 # please see pyutil.version.
-__version__ = Version("0.2.0b1-0-UNSTABLE")
+__version__ = Version(verstr)
 
 # Please put a URL or other note here which shows where to get the branch of
 # development from which this version grew.