r10446 - packages/trunk/fretsonfire/debian

Barry deFreese bdefreese at alioth.debian.org
Wed Oct 21 21:01:58 UTC 2009


Author: bdefreese
Date: 2009-10-21 21:01:56 +0000 (Wed, 21 Oct 2009)
New Revision: 10446

Added:
   packages/trunk/fretsonfire/debian/README.source
Modified:
   packages/trunk/fretsonfire/debian/changelog
   packages/trunk/fretsonfire/debian/control
Log:
  * Add myself to uploaders.
  * Remove python-numpy and python-numeric depends. (Closes: #547960).
  * Add depends on libgl1-mesa-dev for now. (Closes: #524731).
  * Add README.source for quilt patch system.
  * Bump Standards Version to 3.8.3. (No changes needed).


Added: packages/trunk/fretsonfire/debian/README.source
===================================================================
--- packages/trunk/fretsonfire/debian/README.source	                        (rev 0)
+++ packages/trunk/fretsonfire/debian/README.source	2009-10-21 21:01:56 UTC (rev 10446)
@@ -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/fretsonfire/debian/changelog
===================================================================
--- packages/trunk/fretsonfire/debian/changelog	2009-10-21 13:02:19 UTC (rev 10445)
+++ packages/trunk/fretsonfire/debian/changelog	2009-10-21 21:01:56 UTC (rev 10446)
@@ -1,9 +1,17 @@
 fretsonfire (1.3.110.dfsg-2) unstable; urgency=low
 
+  [ Matthew Johnson ]
   * Change credits to use sectoid/Feelings instead of defy. I'd like to ignore the error / have no music, but that doesn't seem to work. I can't figure out how to catch the exception. (Closes: #526399)
 
- -- Matthew Johnson <mjj29 at debian.org>  Sat, 02 May 2009 19:13:16 +0100
+  [ Barry deFreese ]
+  * Add myself to uploaders.
+  * Remove python-numpy and python-numeric depends. (Closes: #547960).
+  * Add depends on libgl1-mesa-dev for now. (Closes: #524731).
+  * Add README.source for quilt patch system.
+  * Bump Standards Version to 3.8.3. (No changes needed).
 
+ -- Barry deFreese <bdefreese at debian.org>  Wed, 21 Oct 2009 16:57:43 -0400
+
 fretsonfire (1.3.110.dfsg-1) unstable; urgency=low
 
   [ Ansgar Burchardt ]

Modified: packages/trunk/fretsonfire/debian/control
===================================================================
--- packages/trunk/fretsonfire/debian/control	2009-10-21 13:02:19 UTC (rev 10445)
+++ packages/trunk/fretsonfire/debian/control	2009-10-21 21:01:56 UTC (rev 10446)
@@ -3,10 +3,12 @@
 Priority: optional
 Maintainer: Debian Games Team <pkg-games-devel at lists.alioth.debian.org>
 Uploaders: Matthew Johnson <mjj29 at debian.org>,
- Miriam Ruiz <little_miry at yahoo.es>, David Martínez Martí <deavidsedice at gmail.com>
+ Miriam Ruiz <little_miry at yahoo.es>,
+ David Martínez Martí <deavidsedice at gmail.com>,
+ Barry deFreese <bdefreese at debian.org>
 Build-Depends: debhelper (>= 5), quilt
 Build-Depends-Indep: python-dev, python-support (>= 0.4), docbook-to-man
-Standards-Version: 3.8.0
+Standards-Version: 3.8.3
 Homepage: http://fretsonfire.sourceforge.net/
 Vcs-Svn: svn://svn.debian.org/svn/pkg-games/packages/trunk/fretsonfire/
 Vcs-Browser: http://svn.debian.org/wsvn/pkg-games/packages/trunk/fretsonfire/?op=log
@@ -23,10 +25,11 @@
 Package: fretsonfire-game
 Architecture: all
 Depends: ${shlibs:Depends}, ${python:Depends}, 
-         python-pygame, python-opengl, python-numeric, python-imaging, 
-         python-ogg, python-pyvorbis, python-numpy,
+         python-pygame, python-opengl, python-imaging, 
+         python-ogg, python-pyvorbis, 
          ${misc:Depends}, 
-         ttf-dejavu, ttf-mgopen
+         ttf-dejavu, ttf-mgopen,
+         libgl1-mesa-dev
 Recommends: fretsonfire-songs-sectoid, fretsonfire-songs-muldjord
 Suggests: vorbis-tools
 Description: game of musical skill and fast fingers - Game files




More information about the Pkg-games-commits mailing list