[Pkg-sdl-commits] r258 - unstable/sdlpango/debian

Barry deFreese bdefreese at alioth.debian.org
Fri Dec 11 04:08:32 UTC 2009


Author: bdefreese
Date: 2009-12-11 04:08:31 +0000 (Fri, 11 Dec 2009)
New Revision: 258

Added:
   unstable/sdlpango/debian/README.source
Modified:
   unstable/sdlpango/debian/changelog
   unstable/sdlpango/debian/control
Log:
  * Add Homepage.
  * Add VCS tag.
  * Add ${misc:Depends} to -dev package.
  * Add README.source for quilt.
  * Bump Standards Version to 3.8.3.


Added: unstable/sdlpango/debian/README.source
===================================================================
--- unstable/sdlpango/debian/README.source	                        (rev 0)
+++ unstable/sdlpango/debian/README.source	2009-12-11 04:08:31 UTC (rev 258)
@@ -0,0 +1,58 @@
+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
+                break
+        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: unstable/sdlpango/debian/changelog
===================================================================
--- unstable/sdlpango/debian/changelog	2009-11-16 20:20:34 UTC (rev 257)
+++ unstable/sdlpango/debian/changelog	2009-12-11 04:08:31 UTC (rev 258)
@@ -1,3 +1,14 @@
+sdlpango (0.1.2-5) unstable; urgency=low
+
+  [ Barry deFreese ]
+  * Add Homepage.
+  * Add VCS tag.
+  * Add ${misc:Depends} to -dev package.
+  * Add README.source for quilt.
+  * Bump Standards Version to 3.8.3.
+
+ -- Barry deFreese <bdefreese at debian.org>  Thu, 10 Dec 2009 23:01:58 -0500
+
 sdlpango (0.1.2-4) unstable; urgency=low
 
   * debian/control:

Modified: unstable/sdlpango/debian/control
===================================================================
--- unstable/sdlpango/debian/control	2009-11-16 20:20:34 UTC (rev 257)
+++ unstable/sdlpango/debian/control	2009-12-11 04:08:31 UTC (rev 258)
@@ -2,9 +2,11 @@
 Section: libs
 Priority: optional
 Maintainer: Debian SDL packages maintainers <pkg-sdl-maintainers at lists.alioth.debian.org>
-Uploaders: Sam Hocevar (Debian packages) <sam+deb at zoy.org>, Aurelien Jarno <aurel32 at debian.org>, Josselin Mouette <joss at debian.org>
-Standards-Version: 3.7.3
+Uploaders: Sam Hocevar (Debian packages) <sam+deb at zoy.org>, Aurelien Jarno <aurel32 at debian.org>, Josselin Mouette <joss at debian.org>, Barry deFreese <bdefreese at debian.org>
+Standards-Version: 3.8.3
 Build-Depends: debhelper (>= 5), cdbs, libsdl1.2-dev (>= 1.2.4), libpango1.0-dev (>= 1.2.0), quilt
+Homepage: http://sdlpango.sourceforge.net/
+Vcs-Svn: svn://svn.debian.org/svn/pkg-sdl/unstable/sdlpango
 
 Package: libsdl-pango1
 Architecture: any
@@ -20,7 +22,7 @@
 
 Package: libsdl-pango-dev
 Architecture: any
-Depends: libsdl-pango1 (= ${binary:Version}), libsdl1.2-dev (>= 1.2.4), libpango1.0-dev (>= 1.2.0)
+Depends: ${misc:Depends}, libsdl-pango1 (= ${binary:Version}), libsdl1.2-dev (>= 1.2.4), libpango1.0-dev (>= 1.2.0)
 Section: libdevel
 Description: text rendering with Pango in SDL applications (development)
  SDL_pango is a Simple Directmedia Layer extension for rendering text




More information about the pkg-sdl-commits mailing list