[Python-modules-commits] r11683 - in packages/keybinder/trunk/debian (changelog control rules)

dktrkranz at users.alioth.debian.org dktrkranz at users.alioth.debian.org
Wed Feb 10 23:17:49 UTC 2010


    Date: Wednesday, February 10, 2010 @ 23:17:42
  Author: dktrkranz
Revision: 11683

* debian/control:
  - Add autoconf, automake and libtool to Build-Depends.
  - Add autoconf2.13 and automake1.4 to Build-Conflicts.
* debian/rules:
  - Run "autoreconf -fi -I m4" for every Python build instance to get
    proper libtool fixes (Closes: #558567).

Modified:
  packages/keybinder/trunk/debian/changelog
  packages/keybinder/trunk/debian/control
  packages/keybinder/trunk/debian/rules

Modified: packages/keybinder/trunk/debian/changelog
===================================================================
--- packages/keybinder/trunk/debian/changelog	2010-02-10 22:38:14 UTC (rev 11682)
+++ packages/keybinder/trunk/debian/changelog	2010-02-10 23:17:42 UTC (rev 11683)
@@ -1,3 +1,14 @@
+keybinder (0.0.4-2) UNRELEASED; urgency=low
+
+  * debian/control:
+    - Add autoconf, automake and libtool to Build-Depends.
+    - Add autoconf2.13 and automake1.4 to Build-Conflicts.
+  * debian/rules:
+    - Run "autoreconf -fi -I m4" for every Python build instance to get
+      proper libtool fixes (Closes: #558567).
+
+ -- Luca Falavigna <dktrkranz at debian.org>  Thu, 11 Feb 2010 00:12:02 +0100
+
 keybinder (0.0.4-1) unstable; urgency=low
 
   * New upstream release.

Modified: packages/keybinder/trunk/debian/control
===================================================================
--- packages/keybinder/trunk/debian/control	2010-02-10 22:38:14 UTC (rev 11682)
+++ packages/keybinder/trunk/debian/control	2010-02-10 23:17:42 UTC (rev 11683)
@@ -3,7 +3,8 @@
 Priority: optional
 Maintainer: Luca Falavigna <dktrkranz at debian.org> 
 Uploaders: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
-Build-Depends: debhelper (>= 7.0.50), python-all-dev (>= 2.5), python-support, pkg-config (>= 0.9.0), python-gtk2-dev (>= 2.12)
+Build-Depends: debhelper (>= 7.0.50), python-all-dev (>= 2.5), python-support, pkg-config (>= 0.9.0), python-gtk2-dev (>= 2.12), autoconf, automake, libtool
+Build-Conflicts: autoconf2.13, automake1.4
 Standards-Version: 3.8.3
 XS-Python-Version: >= 2.5
 Homepage: http://kaizer.se/wiki/python-keybinder/

Modified: packages/keybinder/trunk/debian/rules
===================================================================
--- packages/keybinder/trunk/debian/rules	2010-02-10 22:38:14 UTC (rev 11682)
+++ packages/keybinder/trunk/debian/rules	2010-02-10 23:17:42 UTC (rev 11683)
@@ -12,7 +12,7 @@
 override_dh_auto_configure:
 	for pyvers in ${PYTHONS}; do \
 		mkdir -p build/py$$pyvers; cp -Rl `ls . | grep -v build | grep -v debian` build/py$$pyvers;\
-		(cd build/py$$pyvers; ./configure --prefix=/usr PYTHON=python$$pyvers); \
+		(cd build/py$$pyvers; autoreconf -fi -I m4 && ./configure --prefix=/usr PYTHON=python$$pyvers); \
 	done
 
 override_dh_auto_build:




More information about the Python-modules-commits mailing list