r28074 - in /desktop/unstable/pygtk/debian: changelog rules

mpitt at users.alioth.debian.org mpitt at users.alioth.debian.org
Fri May 27 06:07:48 UTC 2011


Author: mpitt
Date: Fri May 27 06:07:47 2011
New Revision: 28074

URL: http://svn.debian.org/wsvn/pkg-gnome/?sc=1&rev=28074
Log:
debian/rules: Don't call dh_numpy when building on Ubuntu, to avoid
dragging the sizable python-numpy into the default installation. The few
(if any) packages which actually use numpy ought to depend on it
themselves.

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

Modified: desktop/unstable/pygtk/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/pygtk/debian/changelog?rev=28074&op=diff
==============================================================================
--- desktop/unstable/pygtk/debian/changelog [utf-8] (original)
+++ desktop/unstable/pygtk/debian/changelog [utf-8] Fri May 27 06:07:47 2011
@@ -1,6 +1,13 @@
 pygtk (2.24.0-2) UNRELEASED; urgency=low
 
+  [ Josselin Mouette ]
   * Drop incorrect ${python:Provides}.
+
+  [ Martin Pitt ]
+  * debian/rules: Don't call dh_numpy when building on Ubuntu, to avoid
+    dragging the sizable python-numpy into the default installation. The few
+    (if any) packages which actually use numpy ought to depend on it
+    themselves.
 
  -- Josselin Mouette <joss at debian.org>  Mon, 25 Apr 2011 17:31:38 +0200
 

Modified: desktop/unstable/pygtk/debian/rules
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/pygtk/debian/rules?rev=28074&op=diff
==============================================================================
--- desktop/unstable/pygtk/debian/rules [utf-8] (original)
+++ desktop/unstable/pygtk/debian/rules [utf-8] Fri May 27 06:07:47 2011
@@ -188,7 +188,9 @@
 	dh_compress -s -X.py -X.glade
 	dh_fixperms -s
 	dh_python2 -a
-	dh_numpy -s -ppython-gtk2
+	if ! dpkg-vendor --is ubuntu; then \
+		dh_numpy -s -ppython-gtk2; \
+	fi
 	dh_installdeb -s
 	dh_shlibdeps -s
 	dh_gencontrol -s




More information about the pkg-gnome-commits mailing list