r10445 - packages/trunk/lordsawar/debian
Barry deFreese
bdefreese at alioth.debian.org
Wed Oct 21 13:02:20 UTC 2009
Author: bdefreese
Date: 2009-10-21 13:02:19 +0000 (Wed, 21 Oct 2009)
New Revision: 10445
Added:
packages/trunk/lordsawar/debian/README.source
Modified:
packages/trunk/lordsawar/debian/changelog
packages/trunk/lordsawar/debian/control
packages/trunk/lordsawar/debian/copyright
Log:
* Add README.source for quilt patch system.
* Clean up debian/copyright some.
Added: packages/trunk/lordsawar/debian/README.source
===================================================================
--- packages/trunk/lordsawar/debian/README.source (rev 0)
+++ packages/trunk/lordsawar/debian/README.source 2009-10-21 13:02:19 UTC (rev 10445)
@@ -0,0 +1,57 @@
+This package uses quilt to manage all modifications to the upstream
+source. Changes are stored in the source package as diffs in
+debian/patches and applied during the build.
+
+To configure quilt to use debian/patches instead of patches, you want
+either to export QUILT_PATCHES=debian/patches in your environment
+or use this snippet in your ~/.quiltrc:
+
+ for where in ./ ../ ../../ ../../../ ../../../../ ../../../../../; do
+ if [ -e ${where}debian/rules -a -d ${where}debian/patches ]; then
+ export QUILT_PATCHES=debian/patches
+ fi
+ done
+
+To get the fully patched source after unpacking the source package, cd to
+the root level of the source package and run:
+
+ quilt push -a
+
+The last patch listed in debian/patches/series will become the current
+patch.
+
+To add a new set of changes, first run quilt push -a, and then run:
+
+ quilt new <patch>
+
+where <patch> is a descriptive name for the patch, used as the filename in
+debian/patches. Then, for every file that will be modified by this patch,
+run:
+
+ quilt add <file>
+
+before editing those files. You must tell quilt with quilt add what files
+will be part of the patch before making changes or quilt will not work
+properly. After editing the files, run:
+
+ quilt refresh
+
+to save the results as a patch.
+
+Alternately, if you already have an external patch and you just want to
+add it to the build system, run quilt push -a and then:
+
+ quilt import -P <patch> /path/to/patch
+ quilt push -a
+
+(add -p 0 to quilt import if needed). <patch> as above is the filename to
+use in debian/patches. The last quilt push -a will apply the patch to
+make sure it works properly.
+
+To remove an existing patch from the list of patches that will be applied,
+run:
+
+ quilt delete <patch>
+
+You may need to run quilt pop -a to unapply patches first before running
+this command.
Modified: packages/trunk/lordsawar/debian/changelog
===================================================================
--- packages/trunk/lordsawar/debian/changelog 2009-10-21 12:07:26 UTC (rev 10444)
+++ packages/trunk/lordsawar/debian/changelog 2009-10-21 13:02:19 UTC (rev 10445)
@@ -3,6 +3,8 @@
[ Barry deFreese ]
* New upstream release.
+ Drop libsdl-image1.2 from build-deps, no longer needed.
+ * Add README.source for quilt patch system.
+ * Clean up debian/copyright some.
* Bump Standards Version to 3.8.3. (No changes needed).
-- Barry deFreese <bdefreese at debian.org> Wed, 21 Oct 2009 08:02:12 -0400
Modified: packages/trunk/lordsawar/debian/control
===================================================================
--- packages/trunk/lordsawar/debian/control 2009-10-21 12:07:26 UTC (rev 10444)
+++ packages/trunk/lordsawar/debian/control 2009-10-21 13:02:19 UTC (rev 10445)
@@ -25,7 +25,7 @@
Package: lordsawar-data
Recommends: lordsawar
Architecture: all
-Description: A clone of the popular SSG game Warlords II
+Description: A clone of the popular SSG game Warlords II - data files
A 2d turn-based strategy game where up to 8 players strive for control
of as many cities as possible. Produce new armies in cities to conquer
nearby cities. Using the income from those cities, make more armies to
Modified: packages/trunk/lordsawar/debian/copyright
===================================================================
--- packages/trunk/lordsawar/debian/copyright 2009-10-21 12:07:26 UTC (rev 10444)
+++ packages/trunk/lordsawar/debian/copyright 2009-10-21 13:02:19 UTC (rev 10445)
@@ -54,9 +54,9 @@
po/pl.po is Copyright (C) 2006 Piotr Cychowski
po/de.po is Copyright (C) 2004 Ulf Lorenz
- src/ucompose.hpp is Copyright (c) 2002, 03, 04 Ole Laursen <olau at hardworking.dk>
- dat/theme/lordsawar/URWChanceryL-MediItal.pfb is Copyright (URW)++,Copyright 1999 by (URW)++ Design & Development
- all other files are <Copyright (C) 1995-2007 Free Software Foundation, Inc.>
+ src/ucompose.hpp is Copyright (C) 2002, 03, 04 Ole Laursen <olau at hardworking.dk>
+ dat/theme/lordsawar/URWChanceryL-MediItal.pfb is Copyright (URW)++,Copyright (C) 1999 by (URW)++ Design & Development
+ all other files are Copyright (C) 1995-2007 Free Software Foundation, Inc.
License:
@@ -113,5 +113,5 @@
On Debian GNU/Linux systems, the complete text of the GNU General
Public License can be found in `/usr/share/common-licenses/GPL'.
-The Debian packaging is (C) 2007, Barry deFreese <bddebian at comcast.net> and
+The Debian packaging is Copyright (C) 2007, Barry deFreese <bddebian at comcast.net> and
is licensed under the GPL, see `/usr/share/common-licenses/GPL'.
More information about the Pkg-games-commits
mailing list