[Pkg-bazaar-commits] ./bzr-gtk/unstable r73: Release 0.9, list myself as maintainer.

Jelmer Vernooij jelmer at samba.org
Fri Apr 10 07:49:16 UTC 2009


------------------------------------------------------------
revno: 73
committer: Jelmer Vernooij <jelmer at samba.org>
branch nick: bzr-gtk
timestamp: Wed 2006-08-16 02:22:24 +0200
message:
  Release 0.9, list myself as maintainer.
modified:
  README
  __init__.py
  setup.py
-------------- next part --------------
=== modified file 'README'
--- a/README	2006-05-19 18:41:26 +0000
+++ b/README	2006-08-16 00:22:24 +0000
@@ -14,7 +14,7 @@
 need the following runtime dependencies:
 
   * Python 2.4
-  * bzr 0.8 or later
+  * bzr 0.9 or later
   * PyGTK 2.8 or later
 
 In order to see graphs in the visualisation tool, you will also need:

=== modified file '__init__.py'
--- a/__init__.py	2006-06-19 16:25:43 +0000
+++ b/__init__.py	2006-08-16 00:22:24 +0000
@@ -15,6 +15,7 @@
 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
 """GTK+ frontends to Bazaar commands """
+
 from bzrlib.commands import Command, register_command, display_command
 from bzrlib.errors import NotVersionedError, BzrCommandError, NoSuchFile
 from bzrlib.commands import Command, register_command
@@ -23,6 +24,8 @@
 from bzrlib.workingtree import WorkingTree
 from bzrlib.bzrdir import BzrDir
 
+__version__ = '0.9.0'
+
 class cmd_gbranch(Command):
     """GTK+ branching.
     

=== modified file 'setup.py'
--- a/setup.py	2006-06-07 09:08:46 +0000
+++ b/setup.py	2006-08-16 00:22:24 +0000
@@ -5,9 +5,19 @@
 
 setup(
     name = "gtk",
-    version = "0.8.2",
+    version = "0.9.0",
+    maintainer = "Jelmer Vernooij",
+    maintainer_email = "jelmer at samba.org",
     description = "GTK+ Frontends for various Bazaar commands",
     license = "GNU GPL v2",
-    package_dir = {"bzrlib.plugins.gtk": ".","bzrlib.plugins.gtk.viz": "viz", "bzrlib.plugins.gtk.annotate": "annotate"},
-    packages = ["bzrlib.plugins.gtk","bzrlib.plugins.gtk.viz","bzrlib.plugins.gtk.annotate"],
+    package_dir = {
+        "bzrlib.plugins.gtk": ".",
+        "bzrlib.plugins.gtk.viz": "viz", 
+        "bzrlib.plugins.gtk.annotate": "annotate"
+        },
+    packages = [
+        "bzrlib.plugins.gtk",
+        "bzrlib.plugins.gtk.viz",
+        "bzrlib.plugins.gtk.annotate"
+        ],
 )



More information about the Pkg-bazaar-commits mailing list