r10383 - packages/trunk/biniax2/debian
Barry deFreese
bdefreese at alioth.debian.org
Sun Sep 27 14:43:47 UTC 2009
Author: bdefreese
Date: 2009-09-27 14:43:46 +0000 (Sun, 27 Sep 2009)
New Revision: 10383
Added:
packages/trunk/biniax2/debian/README.source
Modified:
packages/trunk/biniax2/debian/README.Debian
packages/trunk/biniax2/debian/changelog
packages/trunk/biniax2/debian/control
packages/trunk/biniax2/debian/copyright
Log:
* Add README.source for quilt patch system.
* Fix spelling error in README.Debian.
* Fix syntax in debian/copyright to make lintian happy.
* Add myself to uploaders.
* Bump Standards Version to 3.8.3. (No changes needed).
Modified: packages/trunk/biniax2/debian/README.Debian
===================================================================
--- packages/trunk/biniax2/debian/README.Debian 2009-09-27 02:03:59 UTC (rev 10382)
+++ packages/trunk/biniax2/debian/README.Debian 2009-09-27 14:43:46 UTC (rev 10383)
@@ -4,7 +4,7 @@
The format and ubication for the user files of the game have been changed.
They have been placed according to XDG Base Directory Specification [1]
-The format has been changed to make them work in different endianess and word
+The format has been changed to make them work in different endianness and word
sizes. The original code made a direct memory dump to the hard disc, and thus
there was not guarantee of even been able to load it when it was compiled with
different parameters in the same computer. Upstream has not adopted the patches
Added: packages/trunk/biniax2/debian/README.source
===================================================================
--- packages/trunk/biniax2/debian/README.source (rev 0)
+++ packages/trunk/biniax2/debian/README.source 2009-09-27 14:43:46 UTC (rev 10383)
@@ -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/biniax2/debian/changelog
===================================================================
--- packages/trunk/biniax2/debian/changelog 2009-09-27 02:03:59 UTC (rev 10382)
+++ packages/trunk/biniax2/debian/changelog 2009-09-27 14:43:46 UTC (rev 10383)
@@ -9,6 +9,13 @@
* Add a watch file
- PLEASE NOTE UPSTREAM 1.20 == 0.0.20080409
+ [ Barry deFreese ]
+ * Add README.source for quilt patch system.
+ * Fix spelling error in README.Debian.
+ * Fix syntax in debian/copyright to make lintian happy.
+ * Add myself to uploaders.
+ * Bump Standards Version to 3.8.3. (No changes needed).
+
-- Miriam Ruiz <little_miry at yahoo.es> Wed, 25 Jun 2008 16:05:36 +0200
biniax2 (0.0.20080409-1) unstable; urgency=low
Modified: packages/trunk/biniax2/debian/control
===================================================================
--- packages/trunk/biniax2/debian/control 2009-09-27 02:03:59 UTC (rev 10382)
+++ packages/trunk/biniax2/debian/control 2009-09-27 14:43:46 UTC (rev 10383)
@@ -2,10 +2,10 @@
Section: games
Priority: extra
Maintainer: Debian Games Team <pkg-games-devel at lists.alioth.debian.org>
-Uploaders: Miriam Ruiz <little_miry at yahoo.es>
+Uploaders: Miriam Ruiz <little_miry at yahoo.es>, Barry deFreese <bdefreese at debian.org>
Build-Depends: debhelper (>= 5), quilt,
libsdl1.2-dev, libsdl-mixer1.2-dev, libsdl-image1.2-dev
-Standards-Version: 3.8.0
+Standards-Version: 3.8.3
Homepage: http://biniax.com/index2.html
Vcs-Svn: svn://svn.debian.org/svn/pkg-games/packages/trunk/biniax2/
Vcs-Browser: http://svn.debian.org/wsvn/pkg-games/packages/trunk/biniax2/?op=log
Modified: packages/trunk/biniax2/debian/copyright
===================================================================
--- packages/trunk/biniax2/debian/copyright 2009-09-27 02:03:59 UTC (rev 10382)
+++ packages/trunk/biniax2/debian/copyright 2009-09-27 14:43:46 UTC (rev 10383)
@@ -342,5 +342,5 @@
can be found in `/usr/share/common-licenses/LGPL-2.1'.
-The Debian packaging is (C) 2008, Miriam Ruiz <little_miry at yahoo.es> and
+The Debian packaging is Copyright (C) 2008, Miriam Ruiz <little_miry at yahoo.es> and
is licensed under the GPL, see `/usr/share/common-licenses/GPL'.
More information about the Pkg-games-commits
mailing list