[Pkg-bazaar-commits] r63 ./bzr/unstable: Apply patch to fix wrong version numbers in bzr and bzrlib.

Adeodato Simó dato at net.com.org.es
Sun Dec 9 22:39:05 UTC 2007


------------------------------------------------------------
revno: 63
committer: Adeodato Simó <dato at net.com.org.es>
branch nick: unstable
timestamp: Sun 2007-12-09 23:39:05 +0100
message:
  Apply patch to fix wrong version numbers in bzr and bzrlib.
added:
  patches/fix_version_strings.diff
modified:
  changelog
  patches/series
-------------- next part --------------
=== added file 'patches/fix_version_strings.diff'
--- a/patches/fix_version_strings.diff	1970-01-01 00:00:00 +0000
+++ b/patches/fix_version_strings.diff	2007-12-09 22:39:05 +0000
@@ -0,0 +1,22 @@
+--- a/bzr
++++ b/bzr
+@@ -67,7 +67,7 @@
+                      "\n")
+     raise
+ 
+-if bzrlib.version_info[:3] != (0, 93, 0):
++if bzrlib.version_info[:3] != (1, 0, 0):
+     sys.stderr.write("bzr: WARNING: bzrlib version doesn't match the bzr program.\n"
+             "This may indicate an installation problem.\n"
+             "bzrlib from %s is version %r\n"
+--- a/bzrlib/__init__.py
++++ b/bzrlib/__init__.py
+@@ -35,7 +35,7 @@
+ # Python version 2.0 is (2, 0, 0, 'final', 0)."  Additionally we use a
+ # releaselevel of 'dev' for unreleased under-development code.
+ 
+-version_info = (0, 1, 0, 'candidate', 2)
++version_info = (1, 0, 0, 'candidate', 2)
+ 
+ # API compatibility version: bzrlib is currently API compatible with 0.18.
+ api_minimum_version = (0, 18, 0)

=== modified file 'changelog'
--- a/changelog	2007-12-09 20:31:59 +0000
+++ b/changelog	2007-12-09 22:39:05 +0000
@@ -1,3 +1,10 @@
+bzr (1.0~rc2-2) unstable; urgency=low
+
+  * Apply patch to fix wrong version numbers in bzr and bzrlib.
+    (See https://bugs.launchpad.net/bzr/+bug/175171.)
+
+ -- Adeodato Simó <dato at net.com.org.es>  Sun, 09 Dec 2007 23:20:52 +0100
+
 bzr (1.0~rc2-1) unstable; urgency=low
 
   [ Adeodato Simó ]

=== modified file 'patches/series'
--- a/patches/series	2007-08-29 11:18:53 +0000
+++ b/patches/series	2007-12-09 22:39:05 +0000
@@ -0,0 +1,1 @@
+fix_version_strings.diff



More information about the Pkg-bazaar-commits mailing list