r14218 - in packages/trunk/pyracerz/debian: . source

Barry deFreese bdefreese at alioth.debian.org
Tue Jun 4 03:00:39 UTC 2013


Author: bdefreese
Date: 2013-06-04 03:00:38 +0000 (Tue, 04 Jun 2013)
New Revision: 14218

Added:
   packages/trunk/pyracerz/debian/pyracerz.manpages
   packages/trunk/pyracerz/debian/source/
   packages/trunk/pyracerz/debian/source/format
Modified:
   packages/trunk/pyracerz/debian/changelog
   packages/trunk/pyracerz/debian/compat
   packages/trunk/pyracerz/debian/control
   packages/trunk/pyracerz/debian/rules
Log:
Significant packaging changes

Modified: packages/trunk/pyracerz/debian/changelog
===================================================================
--- packages/trunk/pyracerz/debian/changelog	2013-06-04 01:39:39 UTC (rev 14217)
+++ packages/trunk/pyracerz/debian/changelog	2013-06-04 03:00:38 UTC (rev 14218)
@@ -1,9 +1,12 @@
-pyracerz (0.2-6) UNRELEASED; urgency=low
+pyracerz (0.2-7) UNRELEASED; urgency=low
 
-  [ Gerfried Fuchs ]
-  * Move quilt from B-D-Indep to B-D because of usage in clean target.
+  [ Barry deFreese ]
+  * Move to source format 3.0 quilt.
+    + Drop quilt from build-depends.
+  * Update to debhelper 7 and bump compat.
+  * Bump Standards Version to 3.9.4.
 
- -- 
+ -- Barry deFreese <bdefreese at debian.org>  Mon, 03 Jun 2013 18:51:46 -0400
 
 pyracerz (0.2-5) unstable; urgency=low
 

Modified: packages/trunk/pyracerz/debian/compat
===================================================================
--- packages/trunk/pyracerz/debian/compat	2013-06-04 01:39:39 UTC (rev 14217)
+++ packages/trunk/pyracerz/debian/compat	2013-06-04 03:00:38 UTC (rev 14218)
@@ -1 +1 @@
-5
+7

Modified: packages/trunk/pyracerz/debian/control
===================================================================
--- packages/trunk/pyracerz/debian/control	2013-06-04 01:39:39 UTC (rev 14217)
+++ packages/trunk/pyracerz/debian/control	2013-06-04 03:00:38 UTC (rev 14218)
@@ -3,9 +3,9 @@
 Priority: optional
 Maintainer: Debian Games Team <pkg-games-devel at lists.alioth.debian.org>
 Uploaders: Carlos Galisteo <cgalisteo at k-rolus.net>, Barry deFreese <bdefreese at debian.org>
-Build-Depends: debhelper (>= 5.0.37.2), quilt (>= 0.39-2)
-Build-Depends-Indep: python-support (>= 0.5.3), python (>= 2.3.5-11), docbook-to-man
-Standards-Version: 3.8.3
+Build-Depends: debhelper (>= 7.0.50~), dpkg-dev (>= 1.16.1~)
+Build-Depends-Indep: python (>= 2.3.5-11), docbook-to-man
+Standards-Version: 3.9.4
 Homepage: http://pyracerz.sourceforge.net/
 Vcs-Svn: svn://svn.debian.org/svn/pkg-games/packages/trunk/pyracerz/
 Vcs-Browser: http://svn.debian.org/wsvn/pkg-games/packages/trunk/pyracerz/?op=log

Added: packages/trunk/pyracerz/debian/pyracerz.manpages
===================================================================
--- packages/trunk/pyracerz/debian/pyracerz.manpages	                        (rev 0)
+++ packages/trunk/pyracerz/debian/pyracerz.manpages	2013-06-04 03:00:38 UTC (rev 14218)
@@ -0,0 +1 @@
+debian/pyracerz.6

Modified: packages/trunk/pyracerz/debian/rules
===================================================================
--- packages/trunk/pyracerz/debian/rules	2013-06-04 01:39:39 UTC (rev 14217)
+++ packages/trunk/pyracerz/debian/rules	2013-06-04 03:00:38 UTC (rev 14218)
@@ -4,34 +4,20 @@
 # Uncomment this to turn on verbose mode.
 #export DH_VERBOSE=1
 
-configure: configure-stamp
-configure-stamp:
-	dh_testdir
-	touch configure-stamp
+DPKG_EXPORT_BUILDFLAGS = 1
+include /usr/share/dpkg/buildflags.mk
 
-build: build-stamp
+%:
+	dh $@ --with python2
 
-build-stamp: configure-stamp 
-	dh_testdir
-	$(MAKE) -f /usr/share/quilt/quilt.make patch
-	docbook-to-man debian/pyracerz.sgml > debian/pyracerz.6
-	cp .pyRacerz.conf debian/pyracerz.conf;
-	touch build-stamp
-
-clean:
-	dh_testdir
-	dh_testroot
-	rm -f build-stamp configure-stamp
+override_dh_clean:
+#	rm -f build-stamp configure-stamp
 	rm -f debian/pyracerz.6 debian/pyracerz.conf;
-	$(MAKE) -f /usr/share/quilt/quilt.make unpatch
 	dh_clean 
 
-install: build
-	dh_testdir
-	dh_testroot
-	dh_clean -k 
-	dh_installdirs
-
+override_dh_install:
+	docbook-to-man debian/pyracerz.sgml > debian/pyracerz.6
+	cp .pyRacerz.conf debian/pyracerz.conf;
 	cp debian/pyracerz.desktop \
 		$(CURDIR)/debian/pyracerz/usr/share/applications;
 	cp debian/pyracerz.xpm \
@@ -40,23 +26,4 @@
 		$(CURDIR)/debian/pyracerz/usr/games/pyracerz;
 	cp -a credits fonts modules replays sounds sprites tracks \
 		$(CURDIR)/debian/pyracerz/usr/share/games/pyracerz/;
-
-binary-indep: build install
-	dh_testdir
-	dh_testroot
-	dh_installchangelogs CHANGELOG
-	dh_installdocs
-	dh_installexamples
-	dh_installmenu
-	dh_installdebconf	
-	dh_installman debian/pyracerz.6
-	dh_compress
-	dh_fixperms
-	dh_pysupport
-	dh_installdeb
-	dh_gencontrol
-	dh_md5sums
-	dh_builddeb
-
-binary: binary-indep
-.PHONY: build clean binary-indep binary-arch binary install configure
+	dh_install

Added: packages/trunk/pyracerz/debian/source/format
===================================================================
--- packages/trunk/pyracerz/debian/source/format	                        (rev 0)
+++ packages/trunk/pyracerz/debian/source/format	2013-06-04 03:00:38 UTC (rev 14218)
@@ -0,0 +1 @@
+3.0 (quilt)




More information about the Pkg-games-commits mailing list