r33848 - in /desktop/unstable/libpeas/debian: changelog rules

biebl at users.alioth.debian.org biebl at users.alioth.debian.org
Sat Mar 31 06:18:47 UTC 2012


Author: biebl
Date: Sat Mar 31 06:18:39 2012
New Revision: 33848

URL: http://svn.debian.org/wsvn/pkg-gnome/?sc=1&rev=33848
Log:
Use find to remove the compiled python and libtool .la files.

Modified:
    desktop/unstable/libpeas/debian/changelog
    desktop/unstable/libpeas/debian/rules

Modified: desktop/unstable/libpeas/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/libpeas/debian/changelog?rev=33848&op=diff
==============================================================================
--- desktop/unstable/libpeas/debian/changelog [utf-8] (original)
+++ desktop/unstable/libpeas/debian/changelog [utf-8] Sat Mar 31 06:18:39 2012
@@ -5,10 +5,11 @@
   * Bump (Build-)Depends on libglib2.0-dev to (>= 2.31.2).
   * debian/libpeas-1.0-0.symbols: Add new symbols and remove 2 internal
     symbols which were dropped upstream.
-  * debian/rules: Explicitly enable the plugins (vala, python, seed) for more
-    reliable build results.
-
- -- Michael Biebl <biebl at debian.org>  Sat, 31 Mar 2012 08:04:34 +0200
+  * Explicitly enable the plugins (vala, python, seed) for more reliable build
+    results.
+  * Use find to remove the compiled python and libtool .la files.
+
+ -- Michael Biebl <biebl at debian.org>  Sat, 31 Mar 2012 08:16:41 +0200
 
 libpeas (1.2.0-2) unstable; urgency=low
 

Modified: desktop/unstable/libpeas/debian/rules
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/libpeas/debian/rules?rev=33848&op=diff
==============================================================================
--- desktop/unstable/libpeas/debian/rules [utf-8] (original)
+++ desktop/unstable/libpeas/debian/rules [utf-8] Sat Mar 31 06:18:39 2012
@@ -21,6 +21,6 @@
 
 binary-post-install/libpeas-doc::
 	# remove compiled python and libtool .la files
-	rm -f debian/libpeas-doc/usr/lib/peas-demo/plugins/*/*.pyo
-	rm -f debian/libpeas-doc/usr/lib/peas-demo/plugins/*/*.pyc
-	rm -f debian/libpeas-doc/usr/lib/peas-demo/plugins/*/*.la
+	find debian/$(cdbs_curpkg) -name '*.pyo' -delete
+	find debian/$(cdbs_curpkg) -name '*.pyc' -delete
+	find debian/$(cdbs_curpkg) -name '*.la' -delete




More information about the pkg-gnome-commits mailing list