[Pkg-sdl-commits] r161 - unstable/sdlperl/debian

aurel32 at alioth.debian.org aurel32 at alioth.debian.org
Fri Dec 21 23:56:50 UTC 2007


Author: aurel32
Date: 2007-12-21 23:56:49 +0000 (Fri, 21 Dec 2007)
New Revision: 161

Modified:
   unstable/sdlperl/debian/changelog
   unstable/sdlperl/debian/control
   unstable/sdlperl/debian/rules
Log:
  * debian/control:
    + Set policy to 3.7.3.
  * debian/rules:
    + Only call make distclean if Makefile exists.
    + Call make distclean before removing Makefile (Closes: #424267).



Modified: unstable/sdlperl/debian/changelog
===================================================================
--- unstable/sdlperl/debian/changelog	2007-12-21 23:29:02 UTC (rev 160)
+++ unstable/sdlperl/debian/changelog	2007-12-21 23:56:49 UTC (rev 161)
@@ -1,8 +1,13 @@
 sdlperl (1.20.3dfsg-3) unstable; urgency=low
 
   * Acknowledge NMU (Closes: #441276).
+  * debian/control:
+    + Set policy to 3.7.3.
+  * debian/rules:
+    + Only call make distclean if Makefile exists.
+    + Call make distclean before removing Makefile (Closes: #424267).
 
- -- Aurelien Jarno <aurel32 at debian.org>  Tue, 18 Dec 2007 09:08:35 +0100
+ -- Aurelien Jarno <aurel32 at debian.org>  Sat, 22 Dec 2007 00:48:23 +0100
 
 sdlperl (1.20.3dfsg-2.1) unstable; urgency=low
 

Modified: unstable/sdlperl/debian/control
===================================================================
--- unstable/sdlperl/debian/control	2007-12-21 23:29:02 UTC (rev 160)
+++ unstable/sdlperl/debian/control	2007-12-21 23:56:49 UTC (rev 161)
@@ -2,9 +2,9 @@
 Section: perl
 Priority: optional
 Maintainer: Debian SDL packages maintainers <pkg-sdl-maintainers at lists.alioth.debian.org>
-Uploaders: Matthew Danish <mrd at debian.org>, Zephaniah E. Hull <warp at debian.org>, Sam Hocevar (Debian packages) <sam+deb at zoy.org>, Aurelien Jarno <aurel32 at debian.org>, Josselin Mouette <joss at debian.org>
+Uploaders: Matthew Danish <mrd at debian.org>, Zephaniah E. Hull <warp at debian.org>, Lawrence Williams <lawrence_cecil_williams at hotmail.com>, Sam Hocevar (Debian packages) <sam+deb at zoy.org>, Aurelien Jarno <aurel32 at debian.org>, Josselin Mouette <joss at debian.org>
 Build-Depends: debhelper (>= 4.0), quilt, perl (>= 5.8), libgl1-mesa-dev | libgl-dev, libglu1-mesa-dev | libglu-dev, libjpeg62-dev, libpng12-dev, libsdl1.2-dev (>= 1.2.5-3), libsdl-image1.2-dev, libsdl-mixer1.2-dev (>= 1.2.5-2), libsdl-net1.2-dev, libsdl-ttf2.0-dev, libsdl-console-dev (>= 1.3-2.2), libsdl-gfx1.2-dev (>= 2.0.13-1)
-Standards-Version: 3.7.2
+Standards-Version: 3.7.3
 
 Package: libsdl-perl
 Architecture: any

Modified: unstable/sdlperl/debian/rules
===================================================================
--- unstable/sdlperl/debian/rules	2007-12-21 23:29:02 UTC (rev 160)
+++ unstable/sdlperl/debian/rules	2007-12-21 23:56:49 UTC (rev 161)
@@ -33,9 +33,10 @@
 	dh_testdir
 	dh_testroot
 	rm -f build-stamp configure-stamp
-	rm -f Makefile Makefile.old Makefile.tmp
-	-$(MAKE) clean distclean
+	[ ! -f Makefile ] || $(MAKE) clean distclean
+	rm -f Makefile.old Makefile.tmp
 	QUILT_PATCHES=debian/patches quilt pop -a -R || test $$? = 2
+	rm -rf .pc/
 	dh_clean
 
 install: build




More information about the pkg-sdl-commits mailing list