This is an automated email from the git hooks/post-receive script. apo-guest pushed a commit to branch master in repository lordsawar.
commit e7f9fb74e54067bfd757a42c92ca567f5d06d2e0 Author: Barry deFreese <[email protected]> Date: Wed Oct 21 13:02:19 2009 +0000 * Add README.source for quilt patch system. * Clean up debian/copyright some. --- debian/README.source | 57 ++++++++++++++++++++++++++++++++++++++++++++++++++++ debian/changelog | 2 ++ debian/control | 2 +- debian/copyright | 8 ++++---- 4 files changed, 64 insertions(+), 5 deletions(-) diff --git a/debian/README.source b/debian/README.source new file mode 100644 index 0000000..8646078 --- /dev/null +++ b/debian/README.source @@ -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. diff --git a/debian/changelog b/debian/changelog index 728a7ad..58a47a1 100644 --- a/debian/changelog +++ b/debian/changelog @@ -3,6 +3,8 @@ lordsawar (0.1.6-1) unstable; urgency=low [ 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 <[email protected]> Wed, 21 Oct 2009 08:02:12 -0400 diff --git a/debian/control b/debian/control index a1e0d27..0acc7c7 100644 --- a/debian/control +++ b/debian/control @@ -25,7 +25,7 @@ Description: A clone of the popular SSG game Warlords II 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 diff --git a/debian/copyright b/debian/copyright index 4bfc4c5..2e42f0f 100644 --- a/debian/copyright +++ b/debian/copyright @@ -54,9 +54,9 @@ Copyright: 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 <[email protected]> - 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 <[email protected]> + 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 @@ All other files: 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 <[email protected]> and +The Debian packaging is Copyright (C) 2007, Barry deFreese <[email protected]> and is licensed under the GPL, see `/usr/share/common-licenses/GPL'. -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-games/lordsawar.git _______________________________________________ Pkg-games-commits mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-games-commits

