]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/commitdiff
fix version class to preferred format and correct parsing
authorZooko O'Whielacronx <zooko@zooko.com>
Thu, 16 Aug 2007 22:38:01 +0000 (15:38 -0700)
committerZooko O'Whielacronx <zooko@zooko.com>
Thu, 16 Aug 2007 22:38:01 +0000 (15:38 -0700)
misc/make-version.py
src/allmydata/util/version_class.py

index 5dc0af014cae4a9fe7cdd4137c64aaebe46674b5..5679ce3e25bd82c9e48888f69fa1932c52912063 100644 (file)
@@ -107,7 +107,7 @@ def update(pkgname, verfilename):
 
     if count:
         # this is an interim version
-        verstr = "%s-dev-r%d" % (last_tag, count)
+        verstr = "%s-%d" % (last_tag, count)
     else:
         # this is a release
         verstr = last_tag
index da6fe4887923387145fd077b7567bb56832e4ee4..8654e1f847652a67f63ed69cb94583d7bf026eef 100644 (file)
@@ -63,28 +63,28 @@ import re
 
 # Developers see "full version strings", like this:
 
-# "1.0.0a1-dev-r55"
-#  ^ ^ ^^^  ^    ^
-#  | | |||  |    |
-#  | | |||  |    '- nano version number
-#  | | |||  '- "dev" if this is a development version (not a release version)
+# "1.0.0a1-55"
+#  ^ ^ ^^^  ^
+#  | | |||  |
+#  | | |||  '- nano version number
 #  | | ||'- release number
 #  | | |'- a=alpha, b=beta, c=release candidate or none
 #  | | '- micro version number
 #  | '- minor version number
 #  '- major version number
 
-# The presence of "-dev" means that this is a development version.  There are
-# no guarantees about compatibility, etc.  This version is considered to be
-# more recent than the version without this field (e.g. "1.0.0a1").
+# The presence of the nano version number means that this is a development
+# version.  There are no guarantees about compatibility, etc.  This version is
+# considered to be more recent than the version without this field
+# (e.g. "1.0.0a1").
 
-# The next number is the "nano version number".  It is meaningful only to
-# developers.  It gets generated automatically from darcs revision control
-# history by "make-version-from-darcs-history.py".  It is the count of patches
-# that have been applied since the last version number tag was applied.
+# The nano version number is meaningful only to developers.  It gets generated
+# automatically from darcs revision control history by "make-version.py".  It
+# is the count of patches that have been applied since the last version number
+# tag was applied.
 
 VERSION_BASE_RE_STR="(\d+)\.(\d+)(\.(\d+))?((a|b|c)(\d+))?"
-VERSION_RE_STR=VERSION_BASE_RE_STR + "(-dev-r(\d+))?"
+VERSION_RE_STR=VERSION_BASE_RE_STR + "(-(\d+))?"
 VERSION_RE=re.compile("^" + VERSION_RE_STR + "$")
 
 class Version(object):
@@ -117,10 +117,10 @@ class Version(object):
             self.prereleasetag = reltag
             self.prerelease = reltagnum
 
-        if mo.group(7):
-            self.nano = int(mo.group(8))
+        if mo.group(8):
+            self.nano = int(mo.group(9))
 
-        self.fullstr = "%d.%d.%d%s%s" % (self.major, self.minor, self.micro, self.prereleasetag and "%s%d" % (self.prereleasetag, self.prerelease,) or "", self.nano and "-dev-r%d" % (self.nano,) or "",)
+        self.fullstr = "%d.%d.%d%s%s" % (self.major, self.minor, self.micro, self.prereleasetag and "%s%d" % (self.prereleasetag, self.prerelease,) or "", self.nano and "-%d" % (self.nano,) or "",)
 
     def user_str(self):
         return self.strictversion.__str__()