[Python-modules-commits] r28798 - in packages/qscintilla2/trunk/debian (changelog rules)
kitterman at users.alioth.debian.org
kitterman at users.alioth.debian.org
Wed May 7 13:40:36 UTC 2014
Date: Wednesday, May 7, 2014 @ 13:40:35
Author: kitterman
Revision: 28798
Fix test for python-pyqt5 availability
Modified:
packages/qscintilla2/trunk/debian/changelog
packages/qscintilla2/trunk/debian/rules
Modified: packages/qscintilla2/trunk/debian/changelog
===================================================================
--- packages/qscintilla2/trunk/debian/changelog 2014-05-07 13:34:11 UTC (rev 28797)
+++ packages/qscintilla2/trunk/debian/changelog 2014-05-07 13:40:35 UTC (rev 28798)
@@ -1,3 +1,9 @@
+qscintilla2 (2.8.1-4) unstable; urgency=medium
+
+ * Fix test for python-pyqt5 availability
+
+ -- Scott Kitterman <scott at kitterman.com> Wed, 07 May 2014 09:07:37 -0400
+
qscintilla2 (2.8.1-3) unstable; urgency=medium
* Change PyQt5 build-deps to linux-any to match where it is available
Modified: packages/qscintilla2/trunk/debian/rules
===================================================================
--- packages/qscintilla2/trunk/debian/rules 2014-05-07 13:34:11 UTC (rev 28797)
+++ packages/qscintilla2/trunk/debian/rules 2014-05-07 13:40:35 UTC (rev 28798)
@@ -31,7 +31,7 @@
# Not all archs have Qt5 yet. This test means python3-pyqt5 is installed
qt5 := "no"
-ifeq ($([ -e /usr/lib/python3/dist-packages/PyQt5/__init__.py ]), $(/usr/bin/true))
+ifeq ($(shell dpkg-query -s python3-pyqt5 |grep -o Package), Package)
qt5 := "yes"
endif
More information about the Python-modules-commits
mailing list