r36036 - in /desktop/experimental/pygobject/debian: changelog rules

mpitt at users.alioth.debian.org mpitt at users.alioth.debian.org
Mon Oct 22 09:48:04 UTC 2012


Author: mpitt
Date: Mon Oct 22 09:47:56 2012
New Revision: 36036

URL: http://svn.debian.org/wsvn/pkg-gnome/?sc=1&rev=36036
Log:
* Configure with --disable-silent-rules.
* debian/rules (clean): Remove __pycache__ directories.

Modified:
    desktop/experimental/pygobject/debian/changelog
    desktop/experimental/pygobject/debian/rules

Modified: desktop/experimental/pygobject/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/experimental/pygobject/debian/changelog?rev=36036&op=diff
==============================================================================
--- desktop/experimental/pygobject/debian/changelog [utf-8] (original)
+++ desktop/experimental/pygobject/debian/changelog [utf-8] Mon Oct 22 09:47:56 2012
@@ -2,6 +2,8 @@
 
   [ Matthias Klose ]
   * Fix renaming of python3 extensions.
+  * Configure with --disable-silent-rules.
+  * debian/rules (clean): Remove __pycache__ directories.
 
  -- Martin Pitt <mpitt at debian.org>  Mon, 22 Oct 2012 11:44:38 +0200
 

Modified: desktop/experimental/pygobject/debian/rules
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/experimental/pygobject/debian/rules?rev=36036&op=diff
==============================================================================
--- desktop/experimental/pygobject/debian/rules [utf-8] (original)
+++ desktop/experimental/pygobject/debian/rules [utf-8] Mon Oct 22 09:47:56 2012
@@ -16,7 +16,8 @@
 		--prefix=/usr \
 		--enable-thread \
 		--build=$(DEB_BUILD_GNU_TYPE) \
-		--disable-maintainer-mode
+		--disable-maintainer-mode \
+		--disable-silent-rules
 
 ifneq ($(DEB_BUILD_GNU_TYPE),$(DEB_HOST_GNU_TYPE))
 	configure_flags += --host=$(DEB_HOST_GNU_TYPE)
@@ -170,6 +171,8 @@
 	rm -rf build-* dbg-build-*
 	dh_autoreconf_clean
 	dh_clean *.pyc */*.pyc
+	find -name '*.pyc' | xargs -r rm -f
+	find -name __pycache__ | xargs -r rm -rf
 
 maybe_check = $(if $(findstring nocheck,$(DEB_BUILD_OPTIONS)),,check)
 




More information about the pkg-gnome-commits mailing list