rev 15898 - in kde-extras/kvpnc/trunk/debian: . patches

Fathi Boudra fabo at alioth.debian.org
Wed Sep 2 10:11:41 UTC 2009


Author: fabo
Date: 2009-09-02 10:11:41 +0000 (Wed, 02 Sep 2009)
New Revision: 15898

Added:
   kde-extras/kvpnc/trunk/debian/README.source
   kde-extras/kvpnc/trunk/debian/patches/series
Modified:
   kde-extras/kvpnc/trunk/debian/changelog
   kde-extras/kvpnc/trunk/debian/control
   kde-extras/kvpnc/trunk/debian/rules
Log:
  * New upstream release.
  * Update debian/control:
    - Bump KDE build dependencies.
    - Bump Standards-Version to 3.8.3 (add debian/README.source).
  * Update debian/rules: cleanup.


Added: kde-extras/kvpnc/trunk/debian/README.source
===================================================================
--- kde-extras/kvpnc/trunk/debian/README.source	                        (rev 0)
+++ kde-extras/kvpnc/trunk/debian/README.source	2009-09-02 10:11:41 UTC (rev 15898)
@@ -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: kde-extras/kvpnc/trunk/debian/changelog
===================================================================
--- kde-extras/kvpnc/trunk/debian/changelog	2009-09-02 09:52:21 UTC (rev 15897)
+++ kde-extras/kvpnc/trunk/debian/changelog	2009-09-02 10:11:41 UTC (rev 15898)
@@ -1,3 +1,13 @@
+kvpnc (0.9.3-1) unstable; urgency=low
+
+  * New upstream release.
+  * Update debian/control:
+    - Bump KDE build dependencies.
+    - Bump Standards-Version to 3.8.3 (add debian/README.source).
+  * Update debian/rules: cleanup.
+
+ -- Fathi Boudra <fabo at debian.org>  Wed, 02 Sep 2009 12:01:18 +0200
+
 kvpnc (0.9.2-1) unstable; urgency=low
 
   * New upstream release:
@@ -6,7 +16,7 @@
     - Remove cdbs build dependency.
     - Add quilt build dependency.
     - Add versionned build dependencies.
-    - Bump Standards-Version from 3.8.1 to 3.8.2 (no changes needed)
+    - Bump Standards-Version from 3.8.1 to 3.8.2 (no changes needed).
   * Rewrite debian/rules: use dh.
 
  -- Fathi Boudra <fabo at debian.org>  Fri, 31 Jul 2009 20:46:37 +0200

Modified: kde-extras/kvpnc/trunk/debian/control
===================================================================
--- kde-extras/kvpnc/trunk/debian/control	2009-09-02 09:52:21 UTC (rev 15897)
+++ kde-extras/kvpnc/trunk/debian/control	2009-09-02 10:11:41 UTC (rev 15898)
@@ -4,8 +4,8 @@
 Maintainer: Debian KDE Extras Team <pkg-kde-extras at lists.alioth.debian.org>
 Uploaders: Fathi Boudra <fabo at debian.org>, Mark Purcell <msp at debian.org>
 Build-Depends: debhelper (>= 7.3), quilt (>= 0.46-7), cmake, pkg-kde-tools (>= 0.4.11),
- kdelibs5-dev, libgcrypt11-dev
-Standards-Version: 3.8.2
+ kdelibs5-dev (>= 4:4.3.0), libgcrypt11-dev
+Standards-Version: 3.8.3
 Homepage: http://home.gna.org/kvpnc
 Vcs-Browser: http://svn.debian.org/wsvn/pkg-kde/kde-extras/kvpnc/?op=log
 Vcs-Svn: svn://svn.debian.org/pkg-kde/kde-extras/kvpnc/trunk/

Added: kde-extras/kvpnc/trunk/debian/patches/series
===================================================================
--- kde-extras/kvpnc/trunk/debian/patches/series	                        (rev 0)
+++ kde-extras/kvpnc/trunk/debian/patches/series	2009-09-02 10:11:41 UTC (rev 15898)
@@ -0,0 +1 @@
+10_su-to-root_usage.diff

Modified: kde-extras/kvpnc/trunk/debian/rules
===================================================================
--- kde-extras/kvpnc/trunk/debian/rules	2009-09-02 09:52:21 UTC (rev 15897)
+++ kde-extras/kvpnc/trunk/debian/rules	2009-09-02 10:11:41 UTC (rev 15898)
@@ -1,7 +1,6 @@
 #!/usr/bin/make -f
 
-include /usr/share/pkg-kde-tools/makefiles/1/debhelper/kde.mk
-
 %:
-	dh --with quilt $@
+	dh --with quilt,kde $@
 
+.PHONY: override_dh_auto_test




More information about the pkg-kde-commits mailing list