r11019 - in packages/trunk/boswars/debian: . source

Marc Dequènes duck at alioth.debian.org
Wed Jun 9 20:51:55 UTC 2010


Author: duck
Date: 2010-06-09 20:51:55 +0000 (Wed, 09 Jun 2010)
New Revision: 11019

Added:
   packages/trunk/boswars/debian/source/
   packages/trunk/boswars/debian/source/format
Removed:
   packages/trunk/boswars/debian/patches/
Modified:
   packages/trunk/boswars/debian/
   packages/trunk/boswars/debian/boswars-data.install
   packages/trunk/boswars/debian/changelog
   packages/trunk/boswars/debian/compat
   packages/trunk/boswars/debian/control
   packages/trunk/boswars/debian/rules
Log:
[evol] NUR + minor packaging refreshment


Property changes on: packages/trunk/boswars/debian
___________________________________________________________________
Modified: svn-bp:origUrl
   - http://pkg-games.alioth.debian.org/tarballs/boswars_2.5.orig.tar.gz
   + http://pkg-games.alioth.debian.org/tarballs/boswars_2.6.1.orig.tar.gz

Modified: packages/trunk/boswars/debian/boswars-data.install
===================================================================
--- packages/trunk/boswars/debian/boswars-data.install	2010-06-07 09:06:46 UTC (rev 11018)
+++ packages/trunk/boswars/debian/boswars-data.install	2010-06-09 20:51:55 UTC (rev 11019)
@@ -6,3 +6,4 @@
 scripts   usr/share/games/boswars
 sounds    usr/share/games/boswars
 units     usr/share/games/boswars
+patches   usr/share/games/boswars

Modified: packages/trunk/boswars/debian/changelog
===================================================================
--- packages/trunk/boswars/debian/changelog	2010-06-07 09:06:46 UTC (rev 11018)
+++ packages/trunk/boswars/debian/changelog	2010-06-09 20:51:55 UTC (rev 11019)
@@ -1,10 +1,20 @@
-boswars (2.5-3) UNRELEASED; urgency=low
+boswars (2.6.1-1) unstable; urgency=low
 
   [ Barry deFreese]
   * Update Cyril Brulebois e-mail address.
 
- -- Barry deFreese <bdefreese at debian.org>  Tue, 14 Jul 2009 13:23:22 -0400
+  [ Marc Dequènes (Duck) ]
+  * Added myself to Uploaders, with KiBi and bddebian's blessing.
+  * New upstream release (Closes: #566119, #473673):
+    - removed all patches, now obsolete (and patchsystem call).
+  * Installed new map 'patches' directory in boswars-data.
+  * Switched to dpkg-source 3.0 (quilt) format.
+  * Bumped Standards-Version (no changes).
+  * Added missing ${misc:Depends} for 'boswars-data'.
+  * Switched compat level to 7 (switched to dh_prep in rules).
 
+ -- Marc Dequènes (Duck) <Duck at DuckCorp.org>  Tue, 08 Jun 2010 23:14:08 +0200
+
 boswars (2.5-2) unstable; urgency=low
 
   [ Barry deFreese ]

Modified: packages/trunk/boswars/debian/compat
===================================================================
--- packages/trunk/boswars/debian/compat	2010-06-07 09:06:46 UTC (rev 11018)
+++ packages/trunk/boswars/debian/compat	2010-06-09 20:51:55 UTC (rev 11019)
@@ -1 +1 @@
-5
+7

Modified: packages/trunk/boswars/debian/control
===================================================================
--- packages/trunk/boswars/debian/control	2010-06-07 09:06:46 UTC (rev 11018)
+++ packages/trunk/boswars/debian/control	2010-06-09 20:51:55 UTC (rev 11019)
@@ -2,9 +2,9 @@
 Section: games
 Priority: extra
 Maintainer: Debian Games Team <pkg-games-devel at lists.alioth.debian.org>
-Uploaders: Cyril Brulebois <kibi at debian.org>, Barry deFreese <bdefreese at debian.org>
-Build-Depends: debhelper (>= 5), scons, quilt, libpng12-dev, libsdl1.2-dev, libvorbis-dev, liblua5.1-0-dev | liblua50-dev, pkg-config, libtheora-dev
-Standards-Version: 3.8.2
+Uploaders: Cyril Brulebois <kibi at debian.org>, Barry deFreese <bdefreese at debian.org>, Marc Dequènes (Duck) <Duck at DuckCorp.org>
+Build-Depends: debhelper (>= 7.0.1), scons, libpng12-dev, libsdl1.2-dev, libvorbis-dev, liblua5.1-0-dev | liblua50-dev, pkg-config, libtheora-dev
+Standards-Version: 3.8.4
 Vcs-Svn: svn://svn.debian.org/svn/pkg-games/packages/trunk/boswars/
 Vcs-Browser: http://svn.debian.org/wsvn/pkg-games/packages/trunk/boswars/?op=log
 Homepage: http://www.boswars.org/
@@ -22,6 +22,7 @@
 Package: boswars-data
 Architecture: all
 Suggests: python
+Depends: ${misc:Depends}
 Description: Images, data, and music files for Bos Wars
  This package includes the images, data files, and music for the Bos Wars
  real-time-strategy game.

Modified: packages/trunk/boswars/debian/rules
===================================================================
--- packages/trunk/boswars/debian/rules	2010-06-07 09:06:46 UTC (rev 11018)
+++ packages/trunk/boswars/debian/rules	2010-06-09 20:51:55 UTC (rev 11019)
@@ -4,8 +4,6 @@
 # Uncomment this to turn on verbose mode
 #export DH_VERBOSE=1
 
-include /usr/share/quilt/quilt.make
-
 # This has to be exported to make some magic below work.
 export DH_OPTIONS
 
@@ -23,12 +21,12 @@
 #Architecture
 build: build-arch build-indep
 
-build-arch: patch build-arch-stamp
+build-arch: build-arch-stamp
 build-arch-stamp:
 	scons CCFLAGS=$(CCFLAGS)
 	touch $@
 
-build-indep: patch build-indep-stamp
+build-indep: build-indep-stamp
 build-indep-stamp:
 	# Adjust the permissions
 	chmod +x languages/makesame.py
@@ -38,7 +36,7 @@
 
 	touch $@
 
-clean: unpatch
+clean:
 	dh_testdir
 	dh_testroot
 	rm -f build-arch-stamp build-indep-stamp
@@ -60,7 +58,7 @@
 install-indep:
 	dh_testdir
 	dh_testroot
-	dh_clean -k -i
+	dh_prep -k -i
 	dh_installdirs -i
 	dh_install -i
 
@@ -72,7 +70,7 @@
 install-arch:
 	dh_testdir
 	dh_testroot
-	dh_clean -k -s
+	dh_prep -k -s
 	dh_installdirs -s
 	dh_installman -pboswars debian/boswars.6
 	dh_install -s

Added: packages/trunk/boswars/debian/source/format
===================================================================
--- packages/trunk/boswars/debian/source/format	                        (rev 0)
+++ packages/trunk/boswars/debian/source/format	2010-06-09 20:51:55 UTC (rev 11019)
@@ -0,0 +1 @@
+3.0 (quilt)




More information about the Pkg-games-commits mailing list