Your message dated Wed, 24 Aug 2016 12:18:33 +0000
with message-id <[email protected]>
and subject line Bug#664381: fixed in png2html 1.1-6
has caused the Debian Bug report #664381,
regarding [PATCH] png2html: 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.)


-- 
664381: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=664381
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: png2html
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 7c2b4b8693bea76d268e421cbce9a63f0443d6eb Mon Sep 17 00:00:00 2001
From: Jari Aalto <[email protected]>
Date: Wed, 29 Feb 2012 09:07:03 -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 -
 ...1_truecolorfix.dpatch => 01_truecolorfix.patch} |    8 ++------
 debian/patches/series                              |    1 +
 debian/rules                                       |   14 +-------------
 debian/source/format                               |    1 +
 8 files changed, 16 insertions(+), 23 deletions(-)
 delete mode 100644 debian/patches/00list
 rename debian/patches/{01_truecolorfix.dpatch => 01_truecolorfix.patch} (70%)
 create mode 100644 debian/patches/series
 create mode 100644 debian/source/format

diff --git a/debian/changelog b/debian/changelog
index 4158b59..60a91eb 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,11 @@
+png2html (1.1-5.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]>  Wed, 29 Feb 2012 09:06:17 -0500
+
 png2html (1.1-5) unstable; urgency=low
 
   * New maintainer (Closes: #387477).
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 54c839d..93c34f7 100644
--- a/debian/control
+++ b/debian/control
@@ -2,8 +2,8 @@ Source: png2html
 Section: graphics
 Priority: extra
 Maintainer: Jack Grahams <[email protected]>
-Build-Depends: debhelper (>= 5.0.0), dpatch, libgd2-noxpm-dev
-Standards-Version: 3.7.2
+Build-Depends: debhelper (>= 9), libgd2-noxpm-dev
+Standards-Version: 3.9.3
 
 Package: png2html
 Architecture: any
diff --git a/debian/patches/00list b/debian/patches/00list
deleted file mode 100644
index 4b96760..0000000
--- a/debian/patches/00list
+++ /dev/null
@@ -1 +0,0 @@
-01_truecolorfix
diff --git a/debian/patches/01_truecolorfix.dpatch b/debian/patches/01_truecolorfix.patch
similarity index 70%
rename from debian/patches/01_truecolorfix.dpatch
rename to debian/patches/01_truecolorfix.patch
index 7cb3586..7c90ecd 100644
--- a/debian/patches/01_truecolorfix.dpatch
+++ b/debian/patches/01_truecolorfix.patch
@@ -1,10 +1,6 @@
-#! /bin/sh /usr/share/dpatch/dpatch-run
-## 01_truecolorfix.dpatch by Jack Grahams <[email protected]>
-##
-## All lines beginning with `## DP:' are a description of the patch.
-## DP: Fixes segfault on truecolor images, Bug #338971. Patch sent upstream.
+From: Jack Grahams <[email protected]>
+Subject: Fixes segfault on truecolor images, Bug #338971. Patch sent upstream.
 
-@DPATCH@
 diff -urNad png2html-1.1~/png2html.c png2html-1.1/png2html.c
 --- png2html-1.1~/png2html.c	1999-11-13 22:42:36.000000000 +0000
 +++ png2html-1.1/png2html.c	2006-09-23 17:17:21.000000000 +0100
diff --git a/debian/patches/series b/debian/patches/series
new file mode 100644
index 0000000..7eae0ee
--- /dev/null
+++ b/debian/patches/series
@@ -0,0 +1 @@
+01_truecolorfix.patch
diff --git a/debian/rules b/debian/rules
index 83945fe..409f48d 100755
--- a/debian/rules
+++ b/debian/rules
@@ -18,15 +18,13 @@ CFLAGS += -lpng -lgd
 
 build: build-stamp
 
-build-stamp: patch
+build-stamp:
 	dh_testdir
 
 	$(MAKE) all CFLAGS="$(CFLAGS)"
 
 	touch build-stamp
 
-clean:  clean-patched unpatch
-
 clean-patched:
 	dh_testdir
 	dh_testroot
@@ -36,16 +34,6 @@ clean-patched:
 
 	dh_clean 
 
-patch: patch-stamp
-
-patch-stamp:
-	dpatch apply-all
-	touch patch-stamp
-
-unpatch:
-	dpatch deapply-all
-	rm -rf patch-stamp debian/patched
-
 install: build
 	dh_testdir
 	dh_testroot
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: png2html
Source-Version: 1.1-6

We believe that the bug you reported is fixed in the latest version of
png2html, 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 png2html 
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: SHA256

Format: 1.8
Date: Tue, 23 Aug 2016 21:08:40 -0300
Source: png2html
Binary: png2html
Architecture: source amd64
Version: 1.1-6
Distribution: unstable
Urgency: medium
Maintainer: Debian QA Group <[email protected]>
Changed-By: Joao Eriberto Mota Filho <[email protected]>
Description:
 png2html   - transforms a PNG image to a web page
Closes: 615223 664381
Changes:
 png2html (1.1-6) unstable; urgency=medium
 .
   * QA upload.
   * Set Debian QA Group as maintainer. (see #746047)
   * New upstream homepage.
   * Migrations:
       - debian/copyright to 1.0 format.
       - debian/rules to new (reduced) format.
       - DebSrc to 3.0 version. (Closes: #664381)
       - DH level to 9.
   * debian/control:
       - Added the ${misc:Depends} variable to Depends field.
       - Bumped Standards-Version to 3.9.8.
       - Changed Priority from extra to optional.
       - Moved the Homepage field from long description to header.
         (Closes: #615223)
       - Removed the obsolete build dependency dpatch.
   * debian/docs: created to install the README file.
   * debian/install: created to install the binary.
   * debian/manpages: created to install the manpage.
   * debian/patches/:
       - 01_truecolorfix.dpatch:
           ~ Renamed to 10_truecolor-fix.patch
           ~ Converted to quilt.
       - 20_add-gcc-hardening.patch: create to add GCC hardening.
   * debian/watch: created.
Checksums-Sha1:
 25b14f06b39745d491a172f6a65b8b643c62d42f 1693 png2html_1.1-6.dsc
 46865b9068aaca2c5968f01d2067eb4dff9831bc 4344 png2html_1.1-6.debian.tar.xz
 bca3af420edf3537f955522bb83de2637b81ac0e 7694 png2html-dbgsym_1.1-6_amd64.deb
 15d4dd0a9f02a3c99b36ad106e92a03e5f4bfbd6 8444 png2html_1.1-6_amd64.deb
Checksums-Sha256:
 9ef4ddfcf26150715accdbbce07bb5414d8fb6003616c49ab0a769bcefd0263f 1693 
png2html_1.1-6.dsc
 c26c61d130a680d6eeaaced024bcd2dadcc119db05f60b526998a168deb8c563 4344 
png2html_1.1-6.debian.tar.xz
 e13467529c61cbbec8a3416d8d232738c04a9d34cf38c67d0feab30cebdaed84 7694 
png2html-dbgsym_1.1-6_amd64.deb
 38377ca8336efd0604943f1059225738e99a3a2d8bb7278e33b64d76fb5dc604 8444 
png2html_1.1-6_amd64.deb
Files:
 fc00067c753bc8714d2ee3879bc9b94c 1693 graphics optional png2html_1.1-6.dsc
 282fc13bae6f83fc8a948b4f6bcb59f5 4344 graphics optional 
png2html_1.1-6.debian.tar.xz
 af93a2844a6afaea91b92ebe54643394 7694 debug extra 
png2html-dbgsym_1.1-6_amd64.deb
 93301546fac52adc2a1ac928c32e2c9d 8444 graphics optional 
png2html_1.1-6_amd64.deb

-----BEGIN PGP SIGNATURE-----

iQIcBAEBCAAGBQJXvQkDAAoJEN5juccE6+nvdiIP/2ad4kK0IGt3reb/hBPyR56b
SscCGG76WEPTu3P5CgSUCqTMwiAST7uwx5wcpS3ZjQgam3Of/ge3qA03XLWlO4Ec
3iReH00Fe39/qAE3KYre7QTGA9nOGLIhEGQtZKSvUP2CUNoa9clmeTS6fddW/zCj
PLwrbItkl48ZXewd+EjIi+8jkfuaOoDtLzk8w8PiIuMB+BkiPXDQRIH1au0vMS9H
FaMfD7dA4QJPPQ5Hj/HcJwKxA7dBxnZBea5ag/IdGeynOzkBrNkom5YefwnoBkKm
JMdyPd2rtUaOFZ65TrIeR+5EZDeaY3Pp2LaqktyR3o5/qAqdrfb8nnHHKV//CsP0
uhVEMcYKh7tyGupefBu6Ot/N3oHcIDTDv0pDHMvXXbhJxj8dzhYUsZr09bNq4FOI
9dJaFYyAcgPoS9yOyI3GLuahouD0HQ+riJjcQk4oAmjuQCz6VONstcb9aRJLaDrx
1qJPx4F0JcZTrr7jgirBS0BAh3HH1C4vAXMH91D3pJgUnMUyLHf6d3AXtbEtEQDZ
zAMbmSAPLAxBPdkh12ZwVLc2m+vzadhhIqDVYY7ZveaHegYhK/D7NEF2LgKpZvyy
KEoZc+ANZBI+jeOlBULb3U5DRtnxo1M8t/goFc0Y3GVxuIDJofQdPOt+poILmxcB
X+CdTeaZRti5rxq30dL1
=Jrnh
-----END PGP SIGNATURE-----

--- End Message ---

Reply via email to