r1250 - in /unstable/libmpeg1/debian: changelog control rules

fabian-guest at users.alioth.debian.org fabian-guest at users.alioth.debian.org
Tue Jun 10 13:42:57 UTC 2008


Author: fabian-guest
Date: Tue Jun 10 13:42:57 2008
New Revision: 1250

URL: http://svn.debian.org/wsvn/pkg-multimedia/?sc=1&rev=1250
Log:
* debian/control:
+ Removed "XS-" prefixes from VCS fields.
* debian/rules:
+ Copy config.{sub,guess} in place just before the ./configure call and
remove the files in the clean target (Closes: #484972).
+ Fixed debian-rules-ignores-make-clean-error lintian warning.


Modified:
    unstable/libmpeg1/debian/changelog
    unstable/libmpeg1/debian/control
    unstable/libmpeg1/debian/rules

Modified: unstable/libmpeg1/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-multimedia/unstable/libmpeg1/debian/changelog?rev=1250&op=diff
==============================================================================
--- unstable/libmpeg1/debian/changelog (original)
+++ unstable/libmpeg1/debian/changelog Tue Jun 10 13:42:57 2008
@@ -1,3 +1,14 @@
+libmpeg1 (1.3.1-9) UNRELEASED; urgency=low
+
+  * debian/control:
+    + Removed "XS-" prefixes from VCS fields.
+  * debian/rules:
+    + Copy config.{sub,guess} in place just before the ./configure call and
+      remove the files in the clean target (Closes: #484972).
+    + Fixed debian-rules-ignores-make-clean-error lintian warning.
+
+ -- Fabian Greffrath <fabian at debian-unofficial.org>  Tue, 10 Jun 2008 15:40:00 +0100
+
 libmpeg1 (1.3.1-8) unstable; urgency=low
 
   [ Sam Hocevar ]

Modified: unstable/libmpeg1/debian/control
URL: http://svn.debian.org/wsvn/pkg-multimedia/unstable/libmpeg1/debian/control?rev=1250&op=diff
==============================================================================
--- unstable/libmpeg1/debian/control (original)
+++ unstable/libmpeg1/debian/control Tue Jun 10 13:42:57 2008
@@ -5,8 +5,8 @@
 Uploaders: Fabian Greffrath <fabian at debian-unofficial.org>, Sam Hocevar (Debian packages) <sam+deb at zoy.org>
 Build-Depends: debhelper (>= 5), quilt, autotools-dev
 Standards-Version: 3.7.2
-XS-Vcs-Svn: svn://svn.debian.org/pkg-multimedia/unstable/libmpeg1
-XS-Vcs-Browser: http://svn.debian.org/wsvn/pkg-multimedia/unstable/libmpeg1/
+Vcs-Svn: svn://svn.debian.org/pkg-multimedia/unstable/libmpeg1
+Vcs-Browser: http://svn.debian.org/wsvn/pkg-multimedia/unstable/libmpeg1/
 
 Package: libmpeg1
 Section: libs

Modified: unstable/libmpeg1/debian/rules
URL: http://svn.debian.org/wsvn/pkg-multimedia/unstable/libmpeg1/debian/rules?rev=1250&op=diff
==============================================================================
--- unstable/libmpeg1/debian/rules (original)
+++ unstable/libmpeg1/debian/rules Tue Jun 10 13:42:57 2008
@@ -13,6 +13,12 @@
 
 config.status: configure
 	dh_testdir
+ifneq "$(wildcard /usr/share/misc/config.sub)" ""
+	cp -f /usr/share/misc/config.sub config.sub
+endif
+ifneq "$(wildcard /usr/share/misc/config.guess)" ""
+	cp -f /usr/share/misc/config.guess config.guess
+endif
 	QUILT_PATCHES=debian/patches quilt push -a || test $$? = 2
 	# Configuring package
 	./configure --prefix=/usr
@@ -34,13 +40,8 @@
 	rm -f build-stamp
 
 	# Cleaning package
-	-$(MAKE) distclean
-ifneq "$(wildcard /usr/share/misc/config.sub)" ""
-	cp -f /usr/share/misc/config.sub config.sub
-endif
-ifneq "$(wildcard /usr/share/misc/config.guess)" ""
-	cp -f /usr/share/misc/config.guess config.guess
-endif
+	[ ! -f Makefile ] || $(MAKE) distclean
+	rm -f config.sub config.guess
 	QUILT_PATCHES=debian/patches quilt pop -a -R || test $$? = 2
 	dh_clean
 




More information about the pkg-multimedia-commits mailing list