[Python-modules-commits] r15613 - in packages/migrate/trunk/debian (5 files)

jandd at users.alioth.debian.org jandd at users.alioth.debian.org
Fri Feb 11 21:26:59 UTC 2011


    Date: Friday, February 11, 2011 @ 21:26:50
  Author: jandd
Revision: 15613

* New upstream release.
* debian/control:
  - remove dependency on python-support
  - bump python dependency version to 2.6.5~
  - set XS-Python-Version to all
  - add XB-Python-Version: ${python:Versions}
* debian/rules:
  - add --with python2 to dh call
* remove debian/patches/use-absolute-imports-of-exception-
  classes.patch that has been applied upstream

Modified:
  packages/migrate/trunk/debian/changelog
  packages/migrate/trunk/debian/control
  packages/migrate/trunk/debian/patches/series
  packages/migrate/trunk/debian/rules
Deleted:
  packages/migrate/trunk/debian/patches/use-absolute-imports-of-exception-classes.patch

Modified: packages/migrate/trunk/debian/changelog
===================================================================
--- packages/migrate/trunk/debian/changelog	2011-02-11 19:44:09 UTC (rev 15612)
+++ packages/migrate/trunk/debian/changelog	2011-02-11 21:26:50 UTC (rev 15613)
@@ -1,3 +1,18 @@
+migrate (0.6.1-1) UNRELEASED; urgency=low
+
+  * New upstream release.
+  * debian/control:
+    - remove dependency on python-support
+    - bump python dependency version to 2.6.5~
+    - set XS-Python-Version to all
+    - add XB-Python-Version: ${python:Versions}
+  * debian/rules:
+    - add --with python2 to dh call
+  * remove debian/patches/use-absolute-imports-of-exception-
+    classes.patch that has been applied upstream
+
+ -- Jan Dittberner <jandd at debian.org>  Fri, 11 Feb 2011 22:07:04 +0100
+
 migrate (0.6-5) unstable; urgency=low
 
   * upload to unstable

Modified: packages/migrate/trunk/debian/control
===================================================================
--- packages/migrate/trunk/debian/control	2011-02-11 19:44:09 UTC (rev 15612)
+++ packages/migrate/trunk/debian/control	2011-02-11 21:26:50 UTC (rev 15613)
@@ -4,12 +4,11 @@
 Maintainer: Jan Dittberner <jandd at debian.org>
 Uploaders: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
 Build-Depends: debhelper (>= 7.0.50~)
-Build-Depends-Indep: python (>= 2.5.4-1~), python-support (>= 0.6.4),
- python-setuptools (>= 0.6b3), python-sphinx (>= 0.6.1),
- python-sqlalchemy (>= 0.5.1), python-decorator, python-tempita (>=
- 0.4)
+Build-Depends-Indep: python (>= 2.6.5~), python-setuptools (>= 0.6b3),
+ python-sphinx (>= 0.6.1), python-sqlalchemy (>= 0.5.1), python-decorator,
+ python-tempita (>= 0.4)
 Standards-Version: 3.9.1
-XS-Python-Version: >= 2.4
+XS-Python-Version: all
 Homepage: http://code.google.com/p/sqlalchemy-migrate/
 Vcs-Svn: svn://svn.debian.org/python-modules/packages/migrate/trunk
 Vcs-Browser: http://svn.debian.org/viewsvn/python-modules/packages/migrate/trunk/
@@ -19,6 +18,7 @@
 Depends: ${python:Depends}, ${misc:Depends}, python-sqlalchemy (>=
  0.5.1), python-pkg-resources, libjs-jquery, python-decorator,
  python-tempita (>= 0.4)
+XB-Python-Version: ${python:Versions}
 Description: Database schema migration for SQLAlchemy
  Inspired by Ruby on Rails' migrations, migrate provides a way to deal
  with database schema changes in SQLAlchemy projects.

Modified: packages/migrate/trunk/debian/patches/series
===================================================================
--- packages/migrate/trunk/debian/patches/series	2011-02-11 19:44:09 UTC (rev 15612)
+++ packages/migrate/trunk/debian/patches/series	2011-02-11 21:26:50 UTC (rev 15613)
@@ -1,2 +1 @@
 keep_empty_modules.patch
-use-absolute-imports-of-exception-classes.patch

Deleted: packages/migrate/trunk/debian/patches/use-absolute-imports-of-exception-classes.patch
===================================================================
--- packages/migrate/trunk/debian/patches/use-absolute-imports-of-exception-classes.patch	2011-02-11 19:44:09 UTC (rev 15612)
+++ packages/migrate/trunk/debian/patches/use-absolute-imports-of-exception-classes.patch	2011-02-11 21:26:50 UTC (rev 15613)
@@ -1,32 +0,0 @@
-From: Etienne Millon <etienne.millon at gmail.com>
-Date: Fri, 7 Jan 2011 21:19:02 +0100
-Subject: [PATCH] use absolute imports of exception classes
-
-This has been inspired by upstream change :
-https://code.google.com/p/sqlalchemy-migrate/source/detail?r=3ba66abc4d194deaffdb0a0ea846cdd3419eb024
----
- migrate/versioning/script/py.py |    3 ++-
- 1 files changed, 2 insertions(+), 1 deletions(-)
-
-diff --git a/migrate/versioning/script/py.py b/migrate/versioning/script/py.py
-index 93ad776..f2d79b1 100644
---- a/migrate/versioning/script/py.py
-+++ b/migrate/versioning/script/py.py
-@@ -12,6 +12,7 @@
- from migrate.versioning.template import Template
- from migrate.versioning.script import base
- from migrate.versioning.util import import_path, load_model, with_engine
-+from migrate.changeset.exceptions import MigrateDeprecationWarning
- 
- 
- log = logging.getLogger(__name__)
-@@ -140,7 +141,7 @@
-             script_func(engine)
-         except TypeError:
-             warnings.warn("upgrade/downgrade functions must accept engine"
--                " parameter (since version > 0.5.4)", exceptions.MigrateDeprecationWarning)
-+                " parameter (since version > 0.5.4)", MigrateDeprecationWarning)
-             raise
- 
-     @property
--- 

Modified: packages/migrate/trunk/debian/rules
===================================================================
--- packages/migrate/trunk/debian/rules	2011-02-11 19:44:09 UTC (rev 15612)
+++ packages/migrate/trunk/debian/rules	2011-02-11 21:26:50 UTC (rev 15613)
@@ -9,7 +9,7 @@
 PYLIBDIR=$(call py_libdir,$(shell pyversions -d))
 
 %:
-	dh $@
+	dh --with python2 $@
 
 override_dh_auto_clean:
 	rm -rf dist build




More information about the Python-modules-commits mailing list