Rev 39: Update copyright and version information. in http://bazaar.launchpad.net/%7Ebzr/bzr-pqm/devel

John Arbash Meinel john at arbash-meinel.com
Tue Nov 6 02:49:15 GMT 2007


At http://bazaar.launchpad.net/%7Ebzr/bzr-pqm/devel

------------------------------------------------------------
revno: 39
revision-id:john at arbash-meinel.com-20071106024835-vdzn55wsylj6wdnh
parent: john at arbash-meinel.com-20071106024333-wbjbqrtdgcvtu4bg
committer: John Arbash Meinel <john at arbash-meinel.com>
branch nick: pqm
timestamp: Mon 2007-11-05 20:48:35 -0600
message:
  Update copyright and version information.
modified:
  __init__.py                    __init__.py-20060221052551-30932fa7d369a24b
  pqm_submit.py                  pqm_submit.py-20060221060137-b3a3cdde9f50efab
  setup.py                       setup.py-20061019094355-2nfvc31a4p6gp9o7-1
-------------- next part --------------
=== modified file '__init__.py'
--- a/__init__.py	2007-10-25 09:19:23 +0000
+++ b/__init__.py	2007-11-06 02:48:35 +0000
@@ -1,4 +1,4 @@
-# Copyright (C) 2005, 2006 by Canonical Ltd
+# Copyright (C) 2005, 2006, 2007 by Canonical Ltd
 #
 # This program is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
@@ -22,6 +22,10 @@
 from bzrlib.bzrdir import BzrDir
 
 
+version_info = (0, 92, 0, 'dev', 0)
+__version__ = '.'.join(str(v) for v in version_info)
+
+
 class cmd_pqm_submit(Command):
     """Submit the parent tree to the pqm.
 

=== modified file 'pqm_submit.py'
--- a/pqm_submit.py	2007-10-25 09:17:56 +0000
+++ b/pqm_submit.py	2007-11-06 02:48:35 +0000
@@ -1,4 +1,4 @@
-# Copyright (C) 2005, 2006 by Canonical Ltd
+# Copyright (C) 2005, 2006, 2007 by Canonical Ltd
 #
 # This program is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
@@ -29,7 +29,7 @@
 
 
 class BadCommitMessage(errors.BzrError):
-    
+
     _fmt = "The commit message %(msg)r cannot be used by pqm."
 
     def __init__(self, message):

=== modified file 'setup.py'
--- a/setup.py	2006-10-19 10:00:01 +0000
+++ b/setup.py	2007-11-06 02:48:35 +0000
@@ -1,5 +1,5 @@
 #!/usr/bin/env python2.4
-# Copyright (C) 2005, 2006 by Canonical Ltd
+# Copyright (C) 2005, 2006, 2007 Canonical Ltd
 #
 # This program is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
@@ -14,13 +14,15 @@
 # You should have received a copy of the GNU General Public License
 # along with this program; if not, write to the Free Software
 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
-"""A plugin for Bazaar-NG for submitting commands to a PQM service."""
+"""A plugin for Bazaar for submitting commands to a PQM service."""
 
 from distutils.core import setup
 
+from bzrlib.plugins import pqm
+
 setup(
     name='bzr-pqm',
-    version='0.11',
+    version=pqm.__version__,
     maintainer='John Arbash Meinel',
     maintainer_email='john at arbash-meinel.com',
     description='bzr plugin to submit an email to a Patch Queue Manager',



More information about the bazaar-commits mailing list