[Python-modules-commits] r29534 - in packages/sqlalchemy/trunk/debian (5 files)

piotr at users.alioth.debian.org piotr at users.alioth.debian.org
Fri Jun 27 18:34:21 UTC 2014


    Date: Friday, June 27, 2014 @ 18:34:20
  Author: piotr
Revision: 29534

* New upstream release
* Remove Python 3.X build tag files, thanks to Matthias Urlichs for the
  patch (closes: #747852)
* python-fdb isn't in the Debian archive yet so default dialect for firebird://
  URLs is changed to obsolete kinterbasdb, thanks to Russell Stuart for the
  patch (closes: #752145)

Added:
  packages/sqlalchemy/trunk/debian/patches/
  packages/sqlalchemy/trunk/debian/patches/change_firebirds_default_dialect_to_kinterbasedb.patch
  packages/sqlalchemy/trunk/debian/patches/series
Modified:
  packages/sqlalchemy/trunk/debian/changelog
  packages/sqlalchemy/trunk/debian/rules

Modified: packages/sqlalchemy/trunk/debian/changelog
===================================================================
--- packages/sqlalchemy/trunk/debian/changelog	2014-06-27 18:21:18 UTC (rev 29533)
+++ packages/sqlalchemy/trunk/debian/changelog	2014-06-27 18:34:20 UTC (rev 29534)
@@ -1,3 +1,14 @@
+sqlalchemy (0.9.6-1) unstable; urgency=medium
+
+  * New upstream release
+  * Remove Python 3.X build tag files, thanks to Matthias Urlichs for the
+    patch (closes: #747852)
+  * python-fdb isn't in the Debian archive yet so default dialect for firebird://
+    URLs is changed to obsolete kinterbasdb, thanks to Russell Stuart for the
+    patch (closes: #752145)
+
+ -- Piotr Ożarowski <piotr at debian.org>  Fri, 27 Jun 2014 20:17:13 +0200
+
 sqlalchemy (0.9.4-1) unstable; urgency=medium
 
   * New upstream release

Added: packages/sqlalchemy/trunk/debian/patches/change_firebirds_default_dialect_to_kinterbasedb.patch
===================================================================
--- packages/sqlalchemy/trunk/debian/patches/change_firebirds_default_dialect_to_kinterbasedb.patch	                        (rev 0)
+++ packages/sqlalchemy/trunk/debian/patches/change_firebirds_default_dialect_to_kinterbasedb.patch	2014-06-27 18:34:20 UTC (rev 29534)
@@ -0,0 +1,15 @@
+# python-fdb isn't in the Debian archive yet so default dialect for firebird://
+# URLs is changed to obsolete kinterbasdb
+Index: sqlalchemy-0.9.6/lib/sqlalchemy/dialects/firebird/__init__.py
+===================================================================
+--- sqlalchemy-0.9.6.orig/lib/sqlalchemy/dialects/firebird/__init__.py
++++ sqlalchemy-0.9.6/lib/sqlalchemy/dialects/firebird/__init__.py
+@@ -6,7 +6,7 @@
+ 
+ from sqlalchemy.dialects.firebird import base, kinterbasdb, fdb
+ 
+-base.dialect = fdb.dialect
++base.dialect = kinterbasdb.dialect
+ 
+ from sqlalchemy.dialects.firebird.base import \
+     SMALLINT, BIGINT, FLOAT, FLOAT, DATE, TIME, \

Added: packages/sqlalchemy/trunk/debian/patches/series
===================================================================
--- packages/sqlalchemy/trunk/debian/patches/series	                        (rev 0)
+++ packages/sqlalchemy/trunk/debian/patches/series	2014-06-27 18:34:20 UTC (rev 29534)
@@ -0,0 +1 @@
+change_firebirds_default_dialect_to_kinterbasedb.patch

Modified: packages/sqlalchemy/trunk/debian/rules
===================================================================
--- packages/sqlalchemy/trunk/debian/rules	2014-06-27 18:21:18 UTC (rev 29533)
+++ packages/sqlalchemy/trunk/debian/rules	2014-06-27 18:34:20 UTC (rev 29534)
@@ -18,7 +18,9 @@
 	find . -name '*\.py[co]' -delete
 	dh_clean build-docs build-stamp install-docs \
 		$(PYVERS:%=install-python%) $(PYVERS:%=build-python%) \
-		$(PYVERS:%=install-debug-python%) $(PYVERS:%=build-debug-python%)
+		$(PYVERS:%=install-debug-python%) $(PYVERS:%=build-debug-python%) \
+		$(PY3VERS:%=install-python%) $(PY3VERS:%=build-python%) \
+		$(PHONYY3VERS:%=install-debug-python%) $(PY3VERS:%=build-debug-python%)
 
 build: build-arch
 




More information about the Python-modules-commits mailing list