[Python-apps-commits] r2143 - in packages/wicd/trunk/debian (changelog default rules)

bzed at users.alioth.debian.org bzed at users.alioth.debian.org
Fri Jan 2 16:15:19 UTC 2009


    Date: Friday, January 2, 2009 @ 16:15:19
  Author: bzed
Revision: 2143

  - allow to disable the daemon in /etc/default/wicd.
* debian/rules:
  - run dh_pysupport before dh_installinit, so Python modules will be
    compiled before the daemon starts (Closes: #510457)

Modified:
  packages/wicd/trunk/debian/changelog
  packages/wicd/trunk/debian/default
  packages/wicd/trunk/debian/rules

Modified: packages/wicd/trunk/debian/changelog
===================================================================
--- packages/wicd/trunk/debian/changelog	2009-01-02 14:02:05 UTC (rev 2142)
+++ packages/wicd/trunk/debian/changelog	2009-01-02 16:15:19 UTC (rev 2143)
@@ -1,5 +1,6 @@
 wicd (1.5.7-2) UNRELEASED; urgency=high
 
+  [ David Paleino ]
   * debian/rules:
     - passing --lib to configure, moving files in /usr/share/wicd
       (Closes: #510461)
@@ -16,8 +17,13 @@
       installed (Closes: #510308)
   * debian/default added:
   * debian/init updated:
-    - don't start wicd during post-installation (Closes: #510457)
+    - allow to disable the daemon in /etc/default/wicd.
 
+  [ Bernd Zeimetz ]
+  * debian/rules:
+    - run dh_pysupport before dh_installinit, so Python modules will be
+      compiled before the daemon starts (Closes: #510457)
+
  -- David Paleino <d.paleino at gmail.com>  Fri, 02 Jan 2009 15:01:28 +0100
 
 wicd (1.5.7-1) unstable; urgency=low

Modified: packages/wicd/trunk/debian/default
===================================================================
--- packages/wicd/trunk/debian/default	2009-01-02 14:02:05 UTC (rev 2142)
+++ packages/wicd/trunk/debian/default	2009-01-02 16:15:19 UTC (rev 2143)
@@ -1,3 +1,3 @@
 # Don't start the daemon by default, let the user set it.
 # Use "yes" (without quotes) to make /etc/init.d/wicd start the WICD daemon.
-START_DAEMON=no
+START_DAEMON=yes

Modified: packages/wicd/trunk/debian/rules
===================================================================
--- packages/wicd/trunk/debian/rules	2009-01-02 14:02:05 UTC (rev 2142)
+++ packages/wicd/trunk/debian/rules	2009-01-02 16:15:19 UTC (rev 2143)
@@ -38,11 +38,14 @@
 	find $(CURDIR)/debian/wicd \( -name "*.glade" -o -name "*.conf" -o -name "*.desktop" \) -exec chmod 644 {} \;
 	find $(CURDIR)/debian/wicd/usr/share/wicd/ -type f -exec chmod 644 {} \;
 	rm -rf $(CURDIR)/debian/wicd/usr/lib/python*/
-	dh install --after dh_auto_install
+	dh install --after dh_auto_install --before dh_installinit
+	dh_pysupport -i
+	dh_installinit -i
+	dh install --after dh_installinit
 
 binary-arch:
 binary-indep: build install
-	dh binary-indep
+	dh binary-indep 
 
 binary: binary-indep binary-arch
 .PHONY: build clean binary-indep binary-arch binary install




More information about the Python-apps-commits mailing list