Your message dated Wed, 15 Jul 2015 22:48:55 +0000
with message-id <[email protected]>
and subject line Bug#664332: fixed in firedns 0.9.12+dfsg-4
has caused the Debian Bug report #664332,
regarding [PATCH] firedns: 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.)


-- 
664332: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=664332
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: firedns
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 4252c4dbf2b5732225b8890c96cdced2204338b3 Mon Sep 17 00:00:00 2001
From: Jari Aalto <[email protected]>
Date: Mon, 27 Feb 2012 15:24:40 -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                                   |    8 ++++++++
 debian/compat                                      |    2 +-
 debian/control                                     |    4 ++--
 debian/patches/00list                              |    1 -
 .../patches/{01-id-fix.dpatch => 01-id-fix.patch}  |    7 ++-----
 debian/patches/series                              |    1 +
 debian/rules                                       |    5 ++---
 debian/source/format                               |    1 +
 8 files changed, 17 insertions(+), 12 deletions(-)
 delete mode 100644 debian/patches/00list
 rename debian/patches/{01-id-fix.dpatch => 01-id-fix.patch} (89%)
 create mode 100644 debian/patches/series
 create mode 100644 debian/source/format

diff --git a/debian/changelog b/debian/changelog
index 7bd640b..716bd73 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,11 @@
+firedns (0.9.12+dfsg-3.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Remove deprecated dpatch and upgrade to packaging format "3.0 quilt".
+  * Update to Standards-Version to 3.9.3 and debhelper to 9.
+
+ -- Jari Aalto <[email protected]>  Mon, 27 Feb 2012 15:22:24 -0500
+
 firedns (0.9.12+dfsg-3) unstable; urgency=low
 
   * New maintainer (Closes #407545). 
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 8eefd85..4fa0ad4 100644
--- a/debian/control
+++ b/debian/control
@@ -2,8 +2,8 @@ Source: firedns
 Section: libs
 Priority: optional
 Maintainer: Herve Rousseau <[email protected]>
-Build-Depends: debhelper (>= 5), dpatch, libfirestring-dev (>= 0.9.12-4)
-Standards-Version: 3.7.2
+Build-Depends: debhelper (>= 9), libfirestring-dev (>= 0.9.12-4)
+Standards-Version: 3.9.3
 
 Package: libfiredns0.9
 Section: libs
diff --git a/debian/patches/00list b/debian/patches/00list
deleted file mode 100644
index 618ff76..0000000
--- a/debian/patches/00list
+++ /dev/null
@@ -1 +0,0 @@
-01-id-fix.dpatch
diff --git a/debian/patches/01-id-fix.dpatch b/debian/patches/01-id-fix.patch
similarity index 89%
rename from debian/patches/01-id-fix.dpatch
rename to debian/patches/01-id-fix.patch
index 9d4ae13..48128d4 100644
--- a/debian/patches/01-id-fix.dpatch
+++ b/debian/patches/01-id-fix.patch
@@ -1,9 +1,6 @@
-#!/bin/sh /usr/share/dpatch/dpatch-run
-## 01-id-fix.dpatch by Andres Salomon <[email protected]>
-##
-## DP: Disable id check during build, since it's unnecessary.
+From: Andres Salomon <[email protected]>
+Subject: Disable id check during build, since it's unnecessary.
 
-@DPATCH@
 
 diff -Naur firestring-0.9.12.orig/firemake/id firestring-0.9.12/firemake/id
 --- firestring-0.9.12.orig/firemake/id	2003-05-15 16:24:41.000000000 +0000
diff --git a/debian/patches/series b/debian/patches/series
new file mode 100644
index 0000000..63023ed
--- /dev/null
+++ b/debian/patches/series
@@ -0,0 +1 @@
+01-id-fix.patch
diff --git a/debian/rules b/debian/rules
index 33132bf..ba952ea 100755
--- a/debian/rules
+++ b/debian/rules
@@ -3,7 +3,6 @@
 # Uncomment this to turn on verbose mode.
 #export DH_VERBOSE=1
 
-include /usr/share/dpatch/dpatch.make
 
 CFLAGS = -Wall -g
 
@@ -16,7 +15,7 @@ endif
 upstream:
 	rm -rf doc # non-free IETF RFC documents
 
-config.status: patch-stamp configure
+config.status: configure
 	dh_testdir
 
 	# Configuring package
@@ -31,7 +30,7 @@ build-stamp: config.status
 
 	touch build-stamp
 
-clean: unpatch
+clean:
 	dh_testdir
 	dh_testroot
 	rm -f build-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


--- End Message ---
--- Begin Message ---
Source: firedns
Source-Version: 0.9.12+dfsg-4

We believe that the bug you reported is fixed in the latest version of
firedns, 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.
Joao Eriberto Mota Filho <[email protected]> (supplier of updated firedns 
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: Tue, 14 Jul 2015 12:10:35 -0300
Source: firedns
Binary: libfiredns0.9 libfiredns-dev firedns
Architecture: source amd64
Version: 0.9.12+dfsg-4
Distribution: experimental
Urgency: medium
Maintainer: Debian QA Group <[email protected]>
Changed-By: Joao Eriberto Mota Filho <[email protected]>
Description:
 firedns    - Runtime binaries for firedns, an asynch. dns resolver library
 libfiredns-dev - Development files for firedns, an asynch. dns resolver library
 libfiredns0.9 - Runtime libraries for firedns, an asynch. dns resolver library
Closes: 664332
Changes:
 firedns (0.9.12+dfsg-4) experimental; urgency=medium
 .
   * QA upload.
   * Set Debian QA Group as maintainer.
   * Migrations:
       - debian/copyright to 1.0 format.
       - debian/rules to new (reduced) format.
       - DebSrc to 3.0 format. (Closes: #664332)
       - DH level to 9.
   * debian/control:
       - Added the ${misc:Depends} variable to libfiredns-dev binary.
       - Bumped Standards-Version to 3.9.6.
       - Removed the duplicate field "section" in package libfiredns0.9.
       - Updated the long description for libfiredns0.9 and libfiredns-dev
         binaries.
   * debian/copyright: updated all information.
   * debian/libfiredns0.9.symbols: added to provide the symbols.
   * debian/patches/:
       - add-GCC-hardening: created to add GCC hardening.
       - fix-manpages: created to fix the word 'separated' in some manpages.
       - 01-id-fix.dpatch: renamed to id-fix and added a header.
   * debian/watch: added a fake site to explain about the current status of the
       original upstream homepage.
Checksums-Sha1:
 08af3ea6d476b4dbcd6d52e66b6d6e1b8659a17a 1834 firedns_0.9.12+dfsg-4.dsc
 e0400c1195ec6cbf38e4f7dfb03a5d07fb7ea515 4664 
firedns_0.9.12+dfsg-4.debian.tar.xz
 962696428b3827a4321d426ae01926cef9781984 28362 firedns_0.9.12+dfsg-4_amd64.deb
 3a2db4920e4ed6ffd1638ec310961d97473e87d0 15456 
libfiredns-dev_0.9.12+dfsg-4_amd64.deb
 ad38dc2eb72a7fe2720fbddc79739f75c41f36b3 14960 
libfiredns0.9_0.9.12+dfsg-4_amd64.deb
Checksums-Sha256:
 f3f7a24214fecf1fd35b0e04d6a0c88c2b6929738ca7a0ab760f160f8201c14c 1834 
firedns_0.9.12+dfsg-4.dsc
 6aa7c2055b06d8d5018e9f85f0f5c22b539bf55954c833957867454b5271e08f 4664 
firedns_0.9.12+dfsg-4.debian.tar.xz
 49dab9864b768ac4f7cc7d106034577679e1849d1d2cb50deed60d338620ca72 28362 
firedns_0.9.12+dfsg-4_amd64.deb
 96012d080f2a0ccce1d6958045ca9d58abc4c9ff4b4db8e59557f46e24cf8847 15456 
libfiredns-dev_0.9.12+dfsg-4_amd64.deb
 12bc6113b6e8d2de26ea667ded0bfa92545c900d10e6a51d222108d20a8cc798 14960 
libfiredns0.9_0.9.12+dfsg-4_amd64.deb
Files:
 7fd17cb8a713b038d655896138205b4a 1834 libs optional firedns_0.9.12+dfsg-4.dsc
 5bfdde942fe89346f1fae8b62ec2097f 4664 libs optional 
firedns_0.9.12+dfsg-4.debian.tar.xz
 c06b98bf14acce0fedfe50fff51f6041 28362 net optional 
firedns_0.9.12+dfsg-4_amd64.deb
 4da23fc1df9ea13e4b5e92606909659e 15456 libdevel optional 
libfiredns-dev_0.9.12+dfsg-4_amd64.deb
 a6b66345a8bcd70c6b20f00a10b0fe9e 14960 libs optional 
libfiredns0.9_0.9.12+dfsg-4_amd64.deb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1

iQIcBAEBAgAGBQJVpt+6AAoJEN5juccE6+nvUEcQAJ1wESPvGskHLEmn0mqdl6na
AXnvIo3DVYzvXQ7hzu3ygjS6kiQzDGbqyF3crhPHYxb+gCh5C+LHJNQi3WswZkXx
sk6wtgFWcmeQcjizDIFJLxdow0+Q4rnSShMMVYp1u9bNFlOxwtRQOMH8MhfCh9/N
DY9/Q4PaiTtvn5uLp8aUfRe01GQvtbbzQTiISFx3nwRxag20VMTFGmfzvG9nFoau
3yfAUoMaAOX6pe9t6xX4gjAj/+XNOeUkx7WeRthzRCG1qDYL/KJaFbPC0fCuVgzt
jsa7zyPwg6xuGAjvH+BL4T5M4R7DsMOm3dCK4RNmXeP48EFT9Jfi7/UfPxS8zXpk
DTuBB0N3u+lL4vrVL1lwEBh5NksqT7/w716INRTthiunfeAo+PUx9loAxWV3urd9
QNsehX5DM5u/PqOTPOBM62EMLb7XlhnYGaizrzWzZzfmVAWXc/BOWwxBz9ZYK3b9
1ftewVkafpKw+PpUafD7baXP28KHz7iwJ7uW0up3nUaBNOhEhzm2F5iDDEhpYf/L
nODwVibDvKkTGde+F1Dbz6+Vc3nxvxovxO9a5cjwRCwFUNvNSG3/SFYaCCokxX1W
tMAIyrKLeJTW416RXq5hNtl9Czd6LyidZGey7Bm9IAfpC3PqUiqh55ENTFFue6O7
haoxJ9ELDBEIHBksQlNo
=frV7
-----END PGP SIGNATURE-----

--- End Message ---

Reply via email to