[Python-modules-commits] r31960 - in packages/pyqt5/trunk/debian (changelog rules)

mitya57 at users.alioth.debian.org mitya57 at users.alioth.debian.org
Thu Mar 5 19:04:17 UTC 2015


    Date: Thursday, March 5, 2015 @ 19:04:16
  Author: mitya57
Revision: 31960

Remove .pyc and .DS_Store files when cleaning.

Modified:
  packages/pyqt5/trunk/debian/changelog
  packages/pyqt5/trunk/debian/rules

Modified: packages/pyqt5/trunk/debian/changelog
===================================================================
--- packages/pyqt5/trunk/debian/changelog	2015-03-05 13:46:42 UTC (rev 31959)
+++ packages/pyqt5/trunk/debian/changelog	2015-03-05 19:04:16 UTC (rev 31960)
@@ -8,6 +8,7 @@
   * Add some Suggests to pyqt5-examples package (closes: #779369).
   * No-op wrap and sort.
   * Bump years in debian/copyright.
+  * Remove .pyc and .DS_Store files when cleaning.
 
  -- Dmitry Shachnev <mitya57 at debian.org>  Sun, 11 Jan 2015 14:44:46 +0300
 

Modified: packages/pyqt5/trunk/debian/rules
===================================================================
--- packages/pyqt5/trunk/debian/rules	2015-03-05 13:46:42 UTC (rev 31959)
+++ packages/pyqt5/trunk/debian/rules	2015-03-05 19:04:16 UTC (rev 31960)
@@ -241,7 +241,9 @@
 	dh_testdir
 	dh_testroot
 	rm -rf $(ALLPYTHONS:%=build-%) $(ALLPYTHONS:%=dbg-build-%)
-	find . -type d -name __pycache__ | xargs rm -rf
+	find . -type f -name .DS_Store -delete
+	find . -type f -name *.pyc -delete
+	find . -type d -name __pycache__ -delete
 	cd sip; rm -rf Qt opengl_types.sip pyqt-gpl.sip5
 	rm -f examples/quick/tutorials/extending/chapter6-plugins/Charts/qmldir
 	dh_clean




More information about the Python-modules-commits mailing list