r10375 - in packages/trunk/gmult/debian: . patches

Barry deFreese bdefreese at alioth.debian.org
Sat Sep 26 01:47:09 UTC 2009


Author: bdefreese
Date: 2009-09-26 01:47:09 +0000 (Sat, 26 Sep 2009)
New Revision: 10375

Added:
   packages/trunk/gmult/debian/README.source
   packages/trunk/gmult/debian/patches/10_ftbfs_wtf.diff
Modified:
   packages/trunk/gmult/debian/changelog
   packages/trunk/gmult/debian/control
   packages/trunk/gmult/debian/patches/series
Log:
  * 10_ftbfs_wtf.diff - Fix FTBFS. (Closes: #542998).
    + No idea why this works but thanks to Stefan Potyra.
  * Add README.source from quilt.
  * Bump Standards Version to 3.8.3. (No changes needed).


Added: packages/trunk/gmult/debian/README.source
===================================================================
--- packages/trunk/gmult/debian/README.source	                        (rev 0)
+++ packages/trunk/gmult/debian/README.source	2009-09-26 01:47:09 UTC (rev 10375)
@@ -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/gmult/debian/changelog
===================================================================
--- packages/trunk/gmult/debian/changelog	2009-09-25 20:49:31 UTC (rev 10374)
+++ packages/trunk/gmult/debian/changelog	2009-09-26 01:47:09 UTC (rev 10375)
@@ -1,3 +1,13 @@
+gmult (7.2-2) unstable; urgency=low
+
+  [ Barry deFreese ]
+  * 10_ftbfs_wtf.diff - Fix FTBFS. (Closes: #542998).
+    + No idea why this works but thanks to Stefan Potyra.
+  * Add README.source from quilt.
+  * Bump Standards Version to 3.8.3. (No changes needed).
+
+ -- Barry deFreese <bdefreese at debian.org>  Fri, 25 Sep 2009 21:33:27 -0400
+
 gmult (7.2-1) unstable; urgency=low
 
   [ Barry deFreese ]

Modified: packages/trunk/gmult/debian/control
===================================================================
--- packages/trunk/gmult/debian/control	2009-09-25 20:49:31 UTC (rev 10374)
+++ packages/trunk/gmult/debian/control	2009-09-26 01:47:09 UTC (rev 10375)
@@ -4,7 +4,7 @@
 Maintainer: Debian Games Team <pkg-games-devel at lists.alioth.debian.org>
 Uploaders: Barry deFreese <bdefreese at debian.org>, Ansgar Burchardt <ansgar at 43-1.org>
 Build-Depends: debhelper (>> 7), quilt, intltool (>= 0.28), gettext (>= 0.12.1), docbook-xsl, xsltproc, automake, autoconf, pkg-config, libgtk2.0-dev, libglib2.0-dev
-Standards-Version: 3.8.1
+Standards-Version: 3.8.3
 Homepage: http://mterry.name/gmult/
 Vcs-Svn: svn://svn.debian.org/svn/pkg-games/packages/trunk/gmult/
 Vcs-Browser: http://svn.debian.org/wsvn/pkg-games/packages/trunk/gmult/?op=log

Added: packages/trunk/gmult/debian/patches/10_ftbfs_wtf.diff
===================================================================
--- packages/trunk/gmult/debian/patches/10_ftbfs_wtf.diff	                        (rev 0)
+++ packages/trunk/gmult/debian/patches/10_ftbfs_wtf.diff	2009-09-26 01:47:09 UTC (rev 10375)
@@ -0,0 +1,13 @@
+#Description: Absolutely no clue why this actually works.
+Index: gmult-7.2/gmult/Makefile.am
+===================================================================
+--- gmult-7.2.orig/gmult/Makefile.am	2009-09-25 21:32:09.000000000 -0400
++++ gmult-7.2/gmult/Makefile.am	2009-09-25 21:33:06.000000000 -0400
+@@ -22,7 +22,6 @@
+ 	gmult.stamp
+ 
+ gmult_SOURCES = \
+-	$(gmult_VALASOURCES:.vala=.c) \
+ 	$(gmult_VALASOURCES)
+ 
+ gmult.stamp: $(gmult_VALASOURCES)

Modified: packages/trunk/gmult/debian/patches/series
===================================================================
--- packages/trunk/gmult/debian/patches/series	2009-09-25 20:49:31 UTC (rev 10374)
+++ packages/trunk/gmult/debian/patches/series	2009-09-26 01:47:09 UTC (rev 10375)
@@ -1 +1,2 @@
 #No patches currently.
+10_ftbfs_wtf.diff




More information about the Pkg-games-commits mailing list