[Python-modules-commits] r11616 - in packages/pyparted/trunk/debian (6 files)

dktrkranz at users.alioth.debian.org dktrkranz at users.alioth.debian.org
Sun Feb 7 15:10:56 UTC 2010


    Date: Sunday, February 7, 2010 @ 15:10:50
  Author: dktrkranz
Revision: 11616

Build extension for Python 2.6 and newer only

Modified:
  packages/pyparted/trunk/debian/changelog
  packages/pyparted/trunk/debian/control
  packages/pyparted/trunk/debian/pyversions
  packages/pyparted/trunk/debian/rules
Deleted:
  packages/pyparted/trunk/debian/README.source
  packages/pyparted/trunk/debian/patches/

Deleted: packages/pyparted/trunk/debian/README.source
===================================================================
--- packages/pyparted/trunk/debian/README.source	2010-02-07 14:59:14 UTC (rev 11615)
+++ packages/pyparted/trunk/debian/README.source	2010-02-07 15:10:50 UTC (rev 11616)
@@ -1,57 +0,0 @@
-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/pyparted/trunk/debian/changelog
===================================================================
--- packages/pyparted/trunk/debian/changelog	2010-02-07 14:59:14 UTC (rev 11615)
+++ packages/pyparted/trunk/debian/changelog	2010-02-07 15:10:50 UTC (rev 11616)
@@ -3,13 +3,22 @@
   * New upstream release.
   * debian/control:
     - Build-depend on libparted-2.1-dev.
+    - Remove quilt from Build-Depends.
     - Bump Standards-Version to 3.8.4, no changes required.
+    - Let python-parted-dbg depend on python-dbg (>= 2.6) | python2.6-dbg.
   * debian/copyright:
     - Adjust copyright years.
+  * debian/README.source:
+    - Remove it, no longer needed.
+  * debian/pyversions:
+    - Build extension for Python 2.6 only.
   * Drop lower_parted_version.patch and no_Fedora.patch, they are no
     longer useful because libparted 2.1 implemented those features.
+  * Drop python2.5_fallback.patch and no_HashNotImplemented.patch,
+    extension is built for Python 2.6 only, so there is no need to provide
+    compatibility for older releases.
 
- -- Luca Falavigna <dktrkranz at debian.org>  Sun, 07 Feb 2010 15:58:37 +0100
+ -- Luca Falavigna <dktrkranz at debian.org>  Sun, 07 Feb 2010 16:03:55 +0100
 
 pyparted (2.2-1) unstable; urgency=low
 

Modified: packages/pyparted/trunk/debian/control
===================================================================
--- packages/pyparted/trunk/debian/control	2010-02-07 14:59:14 UTC (rev 11615)
+++ packages/pyparted/trunk/debian/control	2010-02-07 15:10:50 UTC (rev 11616)
@@ -3,7 +3,7 @@
 Priority: optional
 Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
 Uploaders: Luca Falavigna <dktrkranz at debian.org>
-Build-Depends: debhelper (>= 7.0.50), python-all-dev (>= 2.5), python-all-dbg (>= 2.5), python-support (>= 0.5.3), pkg-config, libparted-2.1-dev (>= 2.1), automake, libdevmapper-dev, uuid-dev, python-decorator, quilt (>= 0.46-7)
+Build-Depends: debhelper (>= 7.0.50), python-all-dev (>= 2.5), python-all-dbg (>= 2.5), python-support, pkg-config, libparted-2.1-dev (>= 2.1), automake, libdevmapper-dev, uuid-dev, python-decorator
 Standards-Version: 3.8.4
 Homepage: http://fedorahosted.org/pyparted/
 Vcs-Svn: svn://svn.debian.org/python-modules/packages/pyparted/trunk/
@@ -24,7 +24,7 @@
 Section: debug
 Priority: extra
 Architecture: any
-Depends: ${python:Depends}, ${shlibs:Depends}, ${misc:Depends}, python-dbg (>= 2.5), python-parted (= ${binary:Version}), python-decorator
+Depends: ${python:Depends}, python-dbg (>= 2.6) | python2.6-dbg, ${shlibs:Depends}, ${misc:Depends}, python-parted (= ${binary:Version}), python-decorator
 Description: Python interface for libparted - Debugging symbols
  pyparted is a set of Python modules that provide Python programmers an
  interface to libparted (http://www.gnu.org/software/parted), the GNU parted

Modified: packages/pyparted/trunk/debian/pyversions
===================================================================
--- packages/pyparted/trunk/debian/pyversions	2010-02-07 14:59:14 UTC (rev 11615)
+++ packages/pyparted/trunk/debian/pyversions	2010-02-07 15:10:50 UTC (rev 11616)
@@ -1 +1 @@
-2.5-
+2.6-

Modified: packages/pyparted/trunk/debian/rules
===================================================================
--- packages/pyparted/trunk/debian/rules	2010-02-07 14:59:14 UTC (rev 11615)
+++ packages/pyparted/trunk/debian/rules	2010-02-07 15:10:50 UTC (rev 11616)
@@ -3,11 +3,11 @@
 PYTHONS := $(shell pyversions -vr debian/control)
 
 %:
-	dh --with quilt $@
+	dh $@
 
 clean:
 	rm -fr build
-	dh --with quilt $@
+	dh $@
 
 override_dh_auto_configure:
 	for pyvers in ${PYTHONS}; do \




More information about the Python-modules-commits mailing list