r10409 - in packages/trunk/libtpproto-py/debian: . patches

Barry deFreese bdefreese at alioth.debian.org
Fri Oct 9 20:04:18 UTC 2009


Author: bdefreese
Date: 2009-10-09 20:04:08 +0000 (Fri, 09 Oct 2009)
New Revision: 10409

Added:
   packages/trunk/libtpproto-py/debian/README.source
   packages/trunk/libtpproto-py/debian/patches/02_empty_file.diff
Modified:
   packages/trunk/libtpproto-py/debian/changelog
   packages/trunk/libtpproto-py/debian/control
   packages/trunk/libtpproto-py/debian/patches/series
Log:
  * 02_empty_file.diff. (Closes: #549087).
    + Comment __init__.py so it gets installed.
  * Add README.source for quilt patch system.
  * Bump Standards Version to 3.8.3.


Added: packages/trunk/libtpproto-py/debian/README.source
===================================================================
--- packages/trunk/libtpproto-py/debian/README.source	                        (rev 0)
+++ packages/trunk/libtpproto-py/debian/README.source	2009-10-09 20:04:08 UTC (rev 10409)
@@ -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/libtpproto-py/debian/changelog
===================================================================
--- packages/trunk/libtpproto-py/debian/changelog	2009-10-08 14:31:23 UTC (rev 10408)
+++ packages/trunk/libtpproto-py/debian/changelog	2009-10-09 20:04:08 UTC (rev 10409)
@@ -1,3 +1,13 @@
+libtpproto-py (0.2.5-3) unstable; urgency=low
+
+  [ Barry deFreese ]
+  * 02_empty_file.diff. (Closes: #549087).
+    + Comment __init__.py so it gets installed.
+  * Add README.source for quilt patch system.
+  * Bump Standards Version to 3.8.3.
+
+ -- Barry deFreese <bdefreese at debian.org>  Fri, 09 Oct 2009 16:00:32 -0400
+
 libtpproto-py (0.2.5-2) unstable; urgency=low
 
   [ Barry deFreese ]

Modified: packages/trunk/libtpproto-py/debian/control
===================================================================
--- packages/trunk/libtpproto-py/debian/control	2009-10-08 14:31:23 UTC (rev 10408)
+++ packages/trunk/libtpproto-py/debian/control	2009-10-09 20:04:08 UTC (rev 10409)
@@ -6,7 +6,7 @@
 Build-Depends: debhelper (>= 5), quilt (>= 0.40)
 Build-Depends-Indep: python-support (>= 0.6.4), python-all-dev
 XS-Python-Version: >=2.4
-Standards-Version: 3.8.2
+Standards-Version: 3.8.3
 Homepage: http://www.thousandparsec.net/tp/
 Vcs-Svn: svn://svn.debian.org/svn/pkg-games/packages/trunk/libtpproto-py/
 Vcs-Browser: http://svn.debian.org/wsvn/pkg-games/packages/trunk/libtpproto-py/?op=log

Added: packages/trunk/libtpproto-py/debian/patches/02_empty_file.diff
===================================================================
--- packages/trunk/libtpproto-py/debian/patches/02_empty_file.diff	                        (rev 0)
+++ packages/trunk/libtpproto-py/debian/patches/02_empty_file.diff	2009-10-09 20:04:08 UTC (rev 10409)
@@ -0,0 +1,6 @@
+Index: libtpproto-py-0.2.5/tp/netlib/objects/OrderExtra/__init__.py
+===================================================================
+--- /dev/null	1970-01-01 00:00:00.000000000 +0000
++++ libtpproto-py-0.2.5/tp/netlib/objects/OrderExtra/__init__.py	2009-10-09 15:54:30.000000000 -0400
+@@ -0,0 +1 @@
++# Some comment just so this file gets installed.

Modified: packages/trunk/libtpproto-py/debian/patches/series
===================================================================
--- packages/trunk/libtpproto-py/debian/patches/series	2009-10-08 14:31:23 UTC (rev 10408)
+++ packages/trunk/libtpproto-py/debian/patches/series	2009-10-09 20:04:08 UTC (rev 10409)
@@ -1,2 +1,3 @@
 01_setuptools.diff
 
+02_empty_file.diff




More information about the Pkg-games-commits mailing list