r15775 - in packages/trunk/pixfrogger/debian: . source

Vincent Cheng vcheng at moszumanska.debian.org
Tue May 24 05:16:38 UTC 2016


Author: vcheng
Date: 2016-05-24 05:16:38 +0000 (Tue, 24 May 2016)
New Revision: 15775

Added:
   packages/trunk/pixfrogger/debian/source/
   packages/trunk/pixfrogger/debian/source/format
Removed:
   packages/trunk/pixfrogger/debian/menu
Modified:
   packages/trunk/pixfrogger/debian/changelog
   packages/trunk/pixfrogger/debian/compat
   packages/trunk/pixfrogger/debian/control
   packages/trunk/pixfrogger/debian/rules
Log:
pixfrogger: modernize packaging


Modified: packages/trunk/pixfrogger/debian/changelog
===================================================================
--- packages/trunk/pixfrogger/debian/changelog	2016-05-24 05:04:36 UTC (rev 15774)
+++ packages/trunk/pixfrogger/debian/changelog	2016-05-24 05:16:38 UTC (rev 15775)
@@ -4,6 +4,10 @@
   * Declare the architecture affinity to handle build-dependency on a package
     which is only available on 32-bit archs. Thanks to Steve Langasek!
     (Closes: #534063)
+  * Use source format 3.0 (quilt).
+  * Bump dh compat level to 9 and modernize debian/rules.
+  * Bump Standards Version to 3.9.8.
+    - Drop obsolete debian/menu file.
 
  -- Vincent Cheng <vcheng at debian.org>  Mon, 23 May 2016 22:02:36 -0700
 

Modified: packages/trunk/pixfrogger/debian/compat
===================================================================
--- packages/trunk/pixfrogger/debian/compat	2016-05-24 05:04:36 UTC (rev 15774)
+++ packages/trunk/pixfrogger/debian/compat	2016-05-24 05:16:38 UTC (rev 15775)
@@ -1 +1 @@
-5
+9

Modified: packages/trunk/pixfrogger/debian/control
===================================================================
--- packages/trunk/pixfrogger/debian/control	2016-05-24 05:04:36 UTC (rev 15774)
+++ packages/trunk/pixfrogger/debian/control	2016-05-24 05:16:38 UTC (rev 15775)
@@ -3,9 +3,9 @@
 Priority: optional
 Maintainer: Debian Games Team <pkg-games-devel at lists.alioth.debian.org>
 Uploaders: Miriam Ruiz <little_miry at yahoo.es>, Barry deFreese <bdefreese at debian.org>
-Build-Depends: debhelper (>= 5), quilt
+Build-Depends: debhelper (>= 9)
 Build-Depends-Indep: fenix, fenix-plugins-system
-Standards-Version: 3.8.1
+Standards-Version: 3.9.8
 Homepage: http://www.pixjuegos.com/?q=node/63
 Vcs-Svn: svn://anonscm.debian.org/pkg-games/packages/trunk/pixfrogger/
 Vcs-Browser: http://anonscm.debian.org/viewvc/pkg-games/packages/trunk/pixfrogger/

Deleted: packages/trunk/pixfrogger/debian/menu
===================================================================
--- packages/trunk/pixfrogger/debian/menu	2016-05-24 05:04:36 UTC (rev 15774)
+++ packages/trunk/pixfrogger/debian/menu	2016-05-24 05:16:38 UTC (rev 15775)
@@ -1,3 +0,0 @@
-?package(pixfrogger):needs="x11" section="Games/Action" \
-	title="PIX Frogger" command="/usr/games/pixfrogger" \
-	icon="/usr/share/pixmaps/pixfrogger.xpm"

Modified: packages/trunk/pixfrogger/debian/rules
===================================================================
--- packages/trunk/pixfrogger/debian/rules	2016-05-24 05:04:36 UTC (rev 15774)
+++ packages/trunk/pixfrogger/debian/rules	2016-05-24 05:16:38 UTC (rev 15775)
@@ -1,65 +1,21 @@
 #!/usr/bin/make -f
 
-# Uncomment this to turn on verbose mode.
-#export DH_VERBOSE=1
+%:
+	dh $@
 
-patch:
-	dh_testdir
-	QUILT_PATCHES=debian/patches quilt push -a || test $$? = 2
+override_dh_clean:
+	$(RM) -f pixfrogger.dcb fpg/pixfrogger.fpg
+	$(RM) -f pixfrogger exec.so src/exec.so src/fxc
+	dh_clean
 
-unpatch:
-	dh_testdir
-	QUILT_PATCHES=debian/patches quilt pop -a -f || test $$? = 2
-
-build: build-stamp
-build-stamp: 
-	dh_testdir
-	$(MAKE) -f /usr/share/quilt/quilt.make patch
+override_dh_auto_build:
 	cd fpg-sources && cmd="fenix-fpg -n ../fpg/pixfrogger.fpg " ; \
 		for i in `ls *.png | sort -g` ; \
 		do cmd=$$cmd`echo $$i | sed -e "s/.png//"`:`echo $$i`" " ; done ; \
 		echo $$cmd ; $$cmd || exit 1
 	cd src && fenix-fxc pixfrogger.prg -o ../pixfrogger.dcb
-	touch $@
+	dh_auto_build
 
-clean:
-	dh_testdir
-	dh_testroot
-	rm -f build-stamp
-	rm -f pixfrogger.dcb fpg/pixfrogger.fpg
-	rm -f pixfrogger exec.so src/exec.so src/fxc
-	$(MAKE) -f /usr/share/quilt/quilt.make unpatch
-	dh_clean
-
-install: build
-	dh_testdir
-	dh_testroot
-	dh_clean -k 
-	dh_installdirs
+override_dh_install:
 	chmod +x debian/*.sh
-
-# Build architecture-independent files here.
-binary-indep: build install
-	dh_testdir
-	dh_testroot
-	dh_installchangelogs 
-	dh_installdocs
-	dh_installexamples
 	dh_install
-#	dh_installmenu
-	dh_installman
-	dh_link
-	dh_strip
-	dh_compress
-	dh_fixperms
-	dh_installdeb
-	dh_shlibdeps
-	dh_gencontrol
-	dh_md5sums
-	dh_builddeb
-
-# Build architecture-dependent files here.
-binary-arch: build install
-
-binary: binary-indep binary-arch
-.PHONY: build clean binary-indep binary-arch binary install configure

Added: packages/trunk/pixfrogger/debian/source/format
===================================================================
--- packages/trunk/pixfrogger/debian/source/format	                        (rev 0)
+++ packages/trunk/pixfrogger/debian/source/format	2016-05-24 05:16:38 UTC (rev 15775)
@@ -0,0 +1 @@
+3.0 (quilt)




More information about the Pkg-games-commits mailing list