Your message dated Wed, 21 Aug 2013 09:06:36 +0000 with message-id <[email protected]> and subject line Bug#664354: fixed in convertall 0.5.2-1 has caused the Debian Bug report #664354, regarding [PATCH] convertall: Helping to update to packaging format 3.0 to be marked as done.
This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact [email protected] immediately.) -- 664354: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=664354 Debian Bug Tracking System Contact [email protected] with problems
--- Begin Message ---Package: convertall Severity: wishlist Tags: patch Hi, The dpatch patch management system has been deprecated for some time. The Lintian currently flags use of dpatch packages as an error. The new 3.0 packaging format is an improved version which, among other things, contains patch management built-in. For more information, see: http://wiki.debian.org/Projects/DebSrc3.0 I had some free time; see attached patch to migrate to new package format. Note that all files in debian/patches/* are canocalized to *.patch. Let me know if there is anything that needs adjusting or if it is ok to upload this version in a NMU in case you are working on other issues needing attention. Thanks, Jari>From 9ebc640b0ddc9a66b0374da494d8bf2286d88ce0 Mon Sep 17 00:00:00 2001 From: Jari Aalto <[email protected]> Date: Thu, 8 Mar 2012 16:42:15 -0500 Subject: [PATCH] format-3.0 Organization: Private Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 8bit Signed-off-by: Jari Aalto <[email protected]> --- debian/changelog | 10 +++++++++ debian/compat | 2 +- debian/control | 4 +- debian/patches/00list | 2 - ....dpatch => install_python_into_usr_share.patch} | 22 ++++++++++---------- ..._shebang.dpatch => remove_module_shebang.patch} | 7 +---- debian/patches/series | 2 + debian/rules | 5 +-- debian/source/format | 1 + 9 files changed, 31 insertions(+), 24 deletions(-) delete mode 100644 debian/patches/00list rename debian/patches/{install_python_into_usr_share.dpatch => install_python_into_usr_share.patch} (56%) rename debian/patches/{remove_module_shebang.dpatch => remove_module_shebang.patch} (97%) create mode 100644 debian/patches/series create mode 100644 debian/source/format diff --git a/debian/changelog b/debian/changelog index a931dba..f6eb7ba 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,13 @@ +convertall (0.4.2-1.1) unstable; urgency=low + + * Non-maintainer upload. + * Remove deprecated dpatch and upgrade to packaging format "3.0 quilt". + * Note: patch install_python_into_usr_share was updated with "quilt + refresh" to make them apply cleanly. + * Update to Standards-Version to 3.9.3 and debhelper to 9. + + -- Jari Aalto <[email protected]> Thu, 08 Mar 2012 16:40:42 -0500 + convertall (0.4.2-1) unstable; urgency=low * New upstream release. diff --git a/debian/compat b/debian/compat index 7ed6ff8..ec63514 100644 --- a/debian/compat +++ b/debian/compat @@ -1 +1 @@ -5 +9 diff --git a/debian/control b/debian/control index 00ea5ee..b97927b 100644 --- a/debian/control +++ b/debian/control @@ -2,8 +2,8 @@ Source: convertall Section: x11 Priority: optional Maintainer: William Grant <[email protected]> -Build-Depends: debhelper (>= 5.0.0), dpatch, python, python-qt4 (>= 2.4), python-support (>= 0.5.3) -Standards-Version: 3.8.0 +Build-Depends: debhelper (>= 9), python, python-qt4 (>= 2.4), python-support (>= 0.5.3) +Standards-Version: 3.9.3 XS-Python-Version: current, >= 2.4 Homepage: http://convertall.bellz.org/ diff --git a/debian/patches/00list b/debian/patches/00list deleted file mode 100644 index c03f56b..0000000 --- a/debian/patches/00list +++ /dev/null @@ -1,2 +0,0 @@ -install_python_into_usr_share.dpatch -remove_module_shebang.dpatch diff --git a/debian/patches/install_python_into_usr_share.dpatch b/debian/patches/install_python_into_usr_share.patch similarity index 56% rename from debian/patches/install_python_into_usr_share.dpatch rename to debian/patches/install_python_into_usr_share.patch index 0ec5059..a6dd44b 100644 --- a/debian/patches/install_python_into_usr_share.dpatch +++ b/debian/patches/install_python_into_usr_share.patch @@ -1,22 +1,22 @@ -#! /bin/sh /usr/share/dpatch/dpatch-run -## install_python_into_usr_share.dpatch by William Grant <[email protected]> -## -## DP: As they're arch. independent, python modules should be installed to /usr/share. +From: William Grant <[email protected]> +Subject: As they're arch. independent, install python modules to /usr/share. -@DPATCH@ -diff -urNad convertall-0.4.0~/install.py convertall-0.4.0/install.py ---- convertall-0.4.0~/install.py 2007-04-15 10:28:07.000000000 +1000 -+++ convertall-0.4.0/install.py 2007-04-15 10:28:26.000000000 +1000 -@@ -214,7 +214,7 @@ +--- + install.py | 3 +-- + 1 file changed, 1 insertion(+), 2 deletions(-) + +--- a/install.py ++++ b/install.py +@@ -225,7 +225,7 @@ if testSpell: spellCheck(['aspell -a', 'ispell -a']) - pythonPrefixDir = os.path.join(prefixDir, 'lib', progName) + pythonPrefixDir = os.path.join(prefixDir, 'share', progName) pythonBuildDir = os.path.join(buildRoot, pythonPrefixDir[1:]) + if os.path.isdir('source'): - compileall.compile_dir('source', ddir=os.path.join(prefixDir, 'source')) -@@ -246,7 +246,6 @@ +@@ -270,7 +270,6 @@ dataPrefixDir = os.path.join(prefixDir, 'share', progName) dataBuildDir = os.path.join(buildRoot, dataPrefixDir[1:]) print ' Copying data files to %s' % dataBuildDir diff --git a/debian/patches/remove_module_shebang.dpatch b/debian/patches/remove_module_shebang.patch similarity index 97% rename from debian/patches/remove_module_shebang.dpatch rename to debian/patches/remove_module_shebang.patch index 58cd320..872bad3 100644 --- a/debian/patches/remove_module_shebang.dpatch +++ b/debian/patches/remove_module_shebang.patch @@ -1,9 +1,6 @@ -#! /bin/sh /usr/share/dpatch/dpatch-run -## remove_module_shebang.dpatch by William Grant <[email protected]> -## -## DP: Remove shebang lines from modules that don't deserve them. +From: William Grant <[email protected]> +Subject: Remove shebang lines from modules that don't deserve them. -@DPATCH@ diff -urNad convertall-0.4.2~/source/cmdline.py convertall-0.4.2/source/cmdline.py --- convertall-0.4.2~/source/cmdline.py 2008-01-21 03:05:41.000000000 +1100 +++ convertall-0.4.2/source/cmdline.py 2008-07-26 20:02:20.000000000 +1000 diff --git a/debian/patches/series b/debian/patches/series new file mode 100644 index 0000000..7bf7d75 --- /dev/null +++ b/debian/patches/series @@ -0,0 +1,2 @@ +install_python_into_usr_share.patch +remove_module_shebang.patch diff --git a/debian/rules b/debian/rules index 07c38b9..31e6c70 100755 --- a/debian/rules +++ b/debian/rules @@ -9,10 +9,9 @@ # Uncomment this to turn on verbose mode. #export DH_VERBOSE=1 -include /usr/share/dpatch/dpatch.make configure: configure-stamp -configure-stamp: patch-stamp +configure-stamp: dh_testdir touch configure-stamp @@ -25,7 +24,7 @@ build-stamp: configure-stamp touch build-stamp -clean: unpatch +clean: dh_testdir dh_testroot rm -f build-stamp configure-stamp diff --git a/debian/source/format b/debian/source/format new file mode 100644 index 0000000..163aaf8 --- /dev/null +++ b/debian/source/format @@ -0,0 +1 @@ +3.0 (quilt) -- 1.7.9.1
--- End Message ---
--- Begin Message ---Source: convertall Source-Version: 0.5.2-1 We believe that the bug you reported is fixed in the latest version of convertall, which is due to be installed in the Debian FTP archive. A summary of the changes between this version and the previous one is attached. Thank you for reporting the bug, which will now be closed. If you have further comments please address them to [email protected], and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Jackson Doak <[email protected]> (supplier of updated convertall package) (This message was generated automatically at their request; if you believe that there is a problem with it please contact the archive administrators by mailing [email protected]) -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Format: 1.8 Date: Mon, 05 Aug 2013 18:04:05 +1000 Source: convertall Binary: convertall Architecture: source all Version: 0.5.2-1 Distribution: unstable Urgency: low Maintainer: Jackson Doak <[email protected]> Changed-By: Jackson Doak <[email protected]> Description: convertall - very flexible unit converter Closes: 664354 691740 692964 718744 Changes: convertall (0.5.2-1) unstable; urgency=low . * New upstream release. closes: #692964 * Set myself as Maintainer. closes: #718744 * debian/control: - Removed "XS-Python-Version: current, >= 2.4" - Added "X-Python-Version: >= 2.3" - Updated standards version to 3.9.4 - Added depends on ${misc:Depends} to fix issue with debhelper - Delete line: XB-Python-Version: ${python:Versions} * debian/rules: - Convert to simple rules * Created debian/patches/series * Updated compat to 9 * Updated debian/watch * Debian/convertall.desktop: - Add keywords - Change comment. closes: #691740 * Delete debian/00list * debian/patches/: - Move existing patches here. - Change file format from .dpatch to .patch. closes: #664354 - Append patch numbers to each patch - Refresh all patches * Updated debian/copyright to machine readable format 1.0 * Edited debian/menu for ease of use * Create debian/docs Checksums-Sha1: 203afadc4b49aa1ab5f7345faa45bb9494152ec6 1156 convertall_0.5.2-1.dsc 494c4e851090e00072fc48c5cf4405c1aeb67295 60547 convertall_0.5.2.orig.tar.gz 1069965c72e7ca1087cde579b4e87e54537a9770 8070 convertall_0.5.2-1.debian.tar.gz bc5d4e7c1e3cc00e0b59f53706638ea2483b4ce7 52028 convertall_0.5.2-1_all.deb Checksums-Sha256: f108077ba08585343bc24c9c239f05874aa7d2190f4743959aff9bd996126f1a 1156 convertall_0.5.2-1.dsc 668738a06b20c8367f605a94ade400e0ca1d0fc213f34b1df3b634dc13ea824e 60547 convertall_0.5.2.orig.tar.gz 60a8654f77cd6e8b4382746342f5414c90b71b825f5e1bc2b91792cf2cc1c1d3 8070 convertall_0.5.2-1.debian.tar.gz 0268cd7d95316d8a1a2eae692974c2681e1f5b1cb32ab0be78c1b1708729ca09 52028 convertall_0.5.2-1_all.deb Files: 32032ae4bf826b5853deb7517807fa02 1156 x11 optional convertall_0.5.2-1.dsc 9378cb3ab40cf944570d53bcc5718ee8 60547 x11 optional convertall_0.5.2.orig.tar.gz e88be44cd67f1fa1275516fb68747c39 8070 x11 optional convertall_0.5.2-1.debian.tar.gz 003d1e082a4326413fb17a2a6679e161 52028 x11 optional convertall_0.5.2-1_all.deb -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.14 (GNU/Linux) iEYEARECAAYFAlIUdkoACgkQ02K2KlS5mJAXLACeK0gePFK3pkXg0rJau+QruZtW 8wAAnRLNvouScNDRBi9W161nc6ZiVPqA =Yn8l -----END PGP SIGNATURE-----
--- End Message ---

