[Python-modules-commits] r23165 - in packages/python-crypto/trunk/debian (changelog rules)
sramacher at users.alioth.debian.org
sramacher at users.alioth.debian.org
Sat Dec 15 13:19:02 UTC 2012
Date: Saturday, December 15, 2012 @ 13:19:00
Author: sramacher
Revision: 23165
debian/rules: Install extension modules built for the debug version of
Python 3.3 into the correct package.
Modified:
packages/python-crypto/trunk/debian/changelog
packages/python-crypto/trunk/debian/rules
Modified: packages/python-crypto/trunk/debian/changelog
===================================================================
--- packages/python-crypto/trunk/debian/changelog 2012-12-15 09:04:38 UTC (rev 23164)
+++ packages/python-crypto/trunk/debian/changelog 2012-12-15 13:19:00 UTC (rev 23165)
@@ -3,6 +3,8 @@
* debian/patches/dont-drop-g.patch: Fix Origin and add Author.
* debian/{control,copyright}: Update my mail address.
* debian/control: Remove DM-Upload-Allowed.
+ * debian/rules: Install extension modules built for the debug version of
+ Python 3.3 into the correct package.
-- Sebastian Ramacher <sramacher at debian.org> Mon, 24 Sep 2012 22:54:35 +0200
Modified: packages/python-crypto/trunk/debian/rules
===================================================================
--- packages/python-crypto/trunk/debian/rules 2012-12-15 09:04:38 UTC (rev 23164)
+++ packages/python-crypto/trunk/debian/rules 2012-12-15 13:19:00 UTC (rev 23165)
@@ -43,10 +43,10 @@
override_dh_install:
# Install everything excluding the *_d.so/*dmu.so debug extensions to python(3)-crypto
dh_install -X"_d.so" -X"python3" "debian/tmp/*" -p python-crypto
- dh_install -X"dmu.so" -X"python2" "debian/tmp/*" -p python3-crypto
+ dh_install -X"dm.so" -X"dmu.so" -X"python2" "debian/tmp/*" -p python3-crypto
# Install the debug extensions to python(3)-crypto-dbg
find debian/tmp/ -name "*_d.so" -exec dh_install '{}' -p python-crypto-dbg \;
- find debian/tmp/ -name "*dmu.so" -exec dh_install '{}' -p python3-crypto-dbg \;
+ find debian/tmp/ -name "*cpython-*dm*.so" -exec dh_install '{}' -p python3-crypto-dbg \;
# Continue with regular dh_install
dh_install
More information about the Python-modules-commits
mailing list