r52230 - in /desktop/experimental/gdk-pixbuf/debian: changelog control control.in rules

laney at users.alioth.debian.org laney at users.alioth.debian.org
Tue Mar 14 14:25:12 UTC 2017


Author: laney
Date: Tue Mar 14 14:25:12 2017
New Revision: 52230

URL: http://svn.debian.org/wsvn/pkg-gnome/?sc=1&rev=52230
Log:
debian/rules: Use find ... -delete instead of -X.la
debian/control*: Update Vcs-* for branch.

Modified:
    desktop/experimental/gdk-pixbuf/debian/changelog
    desktop/experimental/gdk-pixbuf/debian/control
    desktop/experimental/gdk-pixbuf/debian/control.in
    desktop/experimental/gdk-pixbuf/debian/rules

Modified: desktop/experimental/gdk-pixbuf/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/experimental/gdk-pixbuf/debian/changelog?rev=52230&op=diff
==============================================================================
--- desktop/experimental/gdk-pixbuf/debian/changelog	[utf-8] (original)
+++ desktop/experimental/gdk-pixbuf/debian/changelog	[utf-8] Tue Mar 14 14:25:12 2017
@@ -1,10 +1,17 @@
 gdk-pixbuf (2.36.5-3) UNRELEASED; urgency=medium
 
+  [ Jeremy Bicha ]
   * Add new libgdk-pixbuf2.0-bin package to install thumbnailer
     binary and metadata needed by gnome-desktop 3.23 (LP: #1665602)
   * Have libgdk-pibxuf2.0-0 recommend libgdk-pixbuf2.0-bin
   * debian/rules: Change dh_install's --list-missing to --fail-missing to
     catch this issue sooner next time
+
+  [ Iain Lane ]
+  * debian/rules: Don't use -X.la - it's error prone as it does substring
+    matching instead of globbing. Instead use `find ... -delete' to remove
+    *.la files explicitly.
+  * debian/control.*: Update Vcs-* for branch.
 
  -- Jeremy Bicha <jbicha at ubuntu.com>  Mon, 27 Feb 2017 08:36:15 -0500
 

Modified: desktop/experimental/gdk-pixbuf/debian/control
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/experimental/gdk-pixbuf/debian/control?rev=52230&op=diff
==============================================================================
--- desktop/experimental/gdk-pixbuf/debian/control	[utf-8] (original)
+++ desktop/experimental/gdk-pixbuf/debian/control	[utf-8] Tue Mar 14 14:25:12 2017
@@ -6,7 +6,7 @@
 Section: libs
 Priority: optional
 Maintainer: Debian GNOME Maintainers <pkg-gnome-maintainers at lists.alioth.debian.org>
-Uploaders: Emilio Pozuelo Monfort <pochu at debian.org>, Iain Lane <laney at debian.org>, Michael Biebl <biebl at debian.org>
+Uploaders: Emilio Pozuelo Monfort <pochu at debian.org>, Iain Lane <laney at debian.org>, Jeremy Bicha <jbicha at ubuntu.com>, Michael Biebl <biebl at debian.org>
 Build-Depends: debhelper (>= 10),
                dh-exec,
                gnome-pkg-tools (>= 0.10),
@@ -24,8 +24,8 @@
                libglib2.0-doc,
 Standards-Version: 3.9.8
 Homepage: http://www.gtk.org/
-Vcs-Svn: svn://anonscm.debian.org/pkg-gnome/desktop/unstable/gdk-pixbuf/
-Vcs-Browser: https://anonscm.debian.org/viewvc/pkg-gnome/desktop/unstable/gdk-pixbuf/
+Vcs-Svn: svn://anonscm.debian.org/pkg-gnome/desktop/experimental/gdk-pixbuf/
+Vcs-Browser: https://anonscm.debian.org/viewvc/pkg-gnome/desktop/experimental/gdk-pixbuf/
 
 Package: libgdk-pixbuf2.0-0
 Architecture: any

Modified: desktop/experimental/gdk-pixbuf/debian/control.in
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/experimental/gdk-pixbuf/debian/control.in?rev=52230&op=diff
==============================================================================
--- desktop/experimental/gdk-pixbuf/debian/control.in	[utf-8] (original)
+++ desktop/experimental/gdk-pixbuf/debian/control.in	[utf-8] Tue Mar 14 14:25:12 2017
@@ -20,8 +20,8 @@
                libglib2.0-doc,
 Standards-Version: 3.9.8
 Homepage: http://www.gtk.org/
-Vcs-Svn: svn://anonscm.debian.org/pkg-gnome/desktop/unstable/gdk-pixbuf/
-Vcs-Browser: https://anonscm.debian.org/viewvc/pkg-gnome/desktop/unstable/gdk-pixbuf/
+Vcs-Svn: svn://anonscm.debian.org/pkg-gnome/desktop/experimental/gdk-pixbuf/
+Vcs-Browser: https://anonscm.debian.org/viewvc/pkg-gnome/desktop/experimental/gdk-pixbuf/
 
 Package: libgdk-pixbuf2.0-0
 Architecture: any

Modified: desktop/experimental/gdk-pixbuf/debian/rules
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/experimental/gdk-pixbuf/debian/rules?rev=52230&op=diff
==============================================================================
--- desktop/experimental/gdk-pixbuf/debian/rules	[utf-8] (original)
+++ desktop/experimental/gdk-pixbuf/debian/rules	[utf-8] Tue Mar 14 14:25:12 2017
@@ -1,4 +1,4 @@
-#!/usr/bin/make -f 
+#!/usr/bin/make -f
 
 include /usr/share/gnome-pkg-tools/1/rules/gnome-get-source.mk
 
@@ -21,7 +21,8 @@
 	libgdk-pixbuf2.0-0.postrm
 
 override_dh_install:
-	dh_install -X.la --fail-missing
+	find $(CURDIR)/debian/tmp -name *.la -print -delete
+	dh_install --fail-missing
 	# process .in files
 	set -e; for file in $(infiles); do \
 		sed -e"s/#MULTIARCH#/$(DEB_HOST_MULTIARCH)/g" \




More information about the pkg-gnome-commits mailing list