[Python-apps-commits] r8591 - in packages/pype/trunk/debian (changelog compat rules)

anoteng-guest at users.alioth.debian.org anoteng-guest at users.alioth.debian.org
Wed May 2 21:33:40 UTC 2012


    Date: Wednesday, May 2, 2012 @ 21:33:37
  Author: anoteng-guest
Revision: 8591

Delete all pyc's in clean target
bump compat level to 7 so dh_installchangelogs automagically finds the upstream
changelog

Modified:
  packages/pype/trunk/debian/changelog
  packages/pype/trunk/debian/compat
  packages/pype/trunk/debian/rules

Modified: packages/pype/trunk/debian/changelog
===================================================================
--- packages/pype/trunk/debian/changelog	2012-05-02 21:22:21 UTC (rev 8590)
+++ packages/pype/trunk/debian/changelog	2012-05-02 21:33:37 UTC (rev 8591)
@@ -4,16 +4,18 @@
   * Bump standards-version to 3.9.3
     - Upgrade debian/copyright to version 1.0
   * Fix FTBFS when building twice in a row by adding dh_clean to the clean
-    target (closes: #671144)
+    target and deleting all .pyc's (closes: #671144)
   * Lintian override: possible-documentation-but-no-doc-base-registration
     because the html file is an internal PyPE help file
   * Add missing Depends python-wxversion
   * Don't include two copies of readme.html
+  * Bump compatibility level to 7, to make dh_installchangelogs automatically
+    find and install the upstream changelog
 
   [Jakub Wilk]
   * Add Vcs-* fields.
 
- -- Andreas Noteng <andreas at noteng.no>  Wed, 02 May 2012 21:50:58 +0200
+ -- Andreas Noteng <andreas at noteng.no>  Wed, 02 May 2012 23:30:13 +0200
 
 pype (2.9.1-3) unstable; urgency=low
 

Modified: packages/pype/trunk/debian/compat
===================================================================
--- packages/pype/trunk/debian/compat	2012-05-02 21:22:21 UTC (rev 8590)
+++ packages/pype/trunk/debian/compat	2012-05-02 21:33:37 UTC (rev 8591)
@@ -1 +1 @@
-5
+7

Modified: packages/pype/trunk/debian/rules
===================================================================
--- packages/pype/trunk/debian/rules	2012-05-02 21:22:21 UTC (rev 8590)
+++ packages/pype/trunk/debian/rules	2012-05-02 21:33:37 UTC (rev 8591)
@@ -4,13 +4,11 @@
 # Deleting the upstream setup.py, because it is windows only, 
 # and breaks the build
 	rm -f setup.py
+	find ./ -name '*.pyc' -delete
 	dh_clean
 
 override_dh_auto_install:
 	install -m 755 debian/pype.sh debian/pype/usr/bin/pype
 
-override_dh_installchangelogs:
-	dh_installchangelogs changelog.txt
-
 %:
 	dh $@ --with python2




More information about the Python-apps-commits mailing list