Your message dated Sun, 15 Sep 2013 15:18:50 +0000
with message-id <[email protected]>
and subject line Bug#671657: fixed in libclass-trait-perl 0.31-2
has caused the Debian Bug report #671657,
regarding [PATCH] libclass-trait-perl: 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.)


-- 
671657: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=671657
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: libclass-trait-perl
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 fc6c45325116960920be5a270bfaa8d70aca0cf8 Mon Sep 17 00:00:00 2001
From: Jari Aalto <[email protected]>
Date: Sat, 5 May 2012 19:01:23 +0300
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/README.source            |   38 --------------------------------------
 debian/changelog                |   11 +++++++++++
 debian/compat                   |    2 +-
 debian/control                  |    9 +++++----
 debian/libclass-trait-perl.docs |    1 -
 debian/patches/00list           |    1 -
 debian/rules                    |   11 ++++++-----
 debian/source/format            |    1 +
 8 files changed, 24 insertions(+), 50 deletions(-)
 delete mode 100644 debian/README.source
 delete mode 100644 debian/libclass-trait-perl.docs
 delete mode 100644 debian/patches/00list
 create mode 100644 debian/source/format

diff --git a/debian/README.source b/debian/README.source
deleted file mode 100644
index fc98b3d..0000000
--- a/debian/README.source
+++ /dev/null
@@ -1,38 +0,0 @@
-This package uses dpatch 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 get the fully patched source after unpacking the source package, cd
-to the root level of the source package and run:
-
-    debian/rules patch
-
-Removing a patch is as simple as removing its entry from the
-debian/patches/00list file, and please also remove the patch file
-itself.
-
-Creating a new patch is done with "dpatch-edit-patch patch XX_patchname"
-where you should replace XX with a new number and patchname with a
-descriptive shortname of the patch. You can then simply edit all the
-files your patch wants to edit, and then simply "exit 0" from the shell
-to actually create the patch file.
-
-To tweak an already existing patch, call "dpatch-edit-patch XX_patchname"
-and replace XX_patchname with the actual filename from debian/patches
-you want to use.
-
-To clean up afterwards again, "debian/rules unpatch" will do the
-work for you - or you can of course choose to call
-"fakeroot debian/rules clean" all together.
-
-
---- 
-
-this documentation is part of dpatch package, and may be used by
-packages using dpatch to comply with policy on README.source. This
-documentation is meant to be useful to users who are not proficient in
-dpatch in doing work with dpatch-based packages. Please send any
-improvements to the BTS of dpatch package.
-
-original text by Gerfried Fuchs, edited by Junichi Uekawa <[email protected]>
-10 Aug 2008.
diff --git a/debian/changelog b/debian/changelog
index 858cace..dcd8083 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,14 @@
+libclass-trait-perl (0.31-1.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.
+  * Add build-arch and build-indep targets; use dh_prep in rules file.
+  * Fix description-synopsis-starts-with-article (Lintian).
+  * Fix no-homepage-field (Lintian).
+
+ -- Jari Aalto <[email protected]>  Sat, 05 May 2012 17:51:31 +0300
+
 libclass-trait-perl (0.31-1) unstable; urgency=low
 
   * New upstream release (closes: #578946)
diff --git a/debian/compat b/debian/compat
index b8626c4..ec63514 100644
--- a/debian/compat
+++ b/debian/compat
@@ -1 +1 @@
-4
+9
diff --git a/debian/control b/debian/control
index 79763f9..34a6b4c 100644
--- a/debian/control
+++ b/debian/control
@@ -1,15 +1,16 @@
 Source: libclass-trait-perl
 Section: perl
 Priority: optional
-Build-Depends: debhelper (>= 4.0.2), dpatch
+Build-Depends: debhelper (>= 9)
 Build-Depends-Indep: perl (>= 5.10) | libtest-simple-perl (>= 0.62), libtest-differences-perl (>= 0.47), libmodule-build-perl, libclass-accessor-perl
 Maintainer: Alexander Zangerl <[email protected]>
-Standards-Version: 3.8.4
+Standards-Version: 3.9.3
+Homepage: http://search.cpan.org/~ovid/Class-Trait
 
 Package: libclass-trait-perl
 Architecture: all
-Depends: ${perl:Depends}, libclass-accessor-perl
-Description:  An implementation of Traits in Perl
+Depends: ${misc:Depends}, ${perl:Depends}, libclass-accessor-perl
+Description: implementation of Traits in Perl
  Traits are a simple composition mechanism for structuring 
  object-oriented programs. A Trait is essentially a parameterized set of 
  methods, which serves as a building block for classes and is the primitive 
diff --git a/debian/libclass-trait-perl.docs b/debian/libclass-trait-perl.docs
deleted file mode 100644
index 71839fd..0000000
--- a/debian/libclass-trait-perl.docs
+++ /dev/null
@@ -1 +0,0 @@
-debian/README.source
\ No newline at end of file
diff --git a/debian/patches/00list b/debian/patches/00list
deleted file mode 100644
index b21a47f..0000000
--- a/debian/patches/00list
+++ /dev/null
@@ -1 +0,0 @@
-# no required patches right now
\ No newline at end of file
diff --git a/debian/rules b/debian/rules
index 634ca20..bc93b1f 100755
--- a/debian/rules
+++ b/debian/rules
@@ -22,12 +22,13 @@ endif
 
 TMP     =$(CURDIR)/debian/$(PACKAGE)
 
-# to get the patch application targets
-include /usr/share/dpatch/dpatch.make
+# to get the application targets
 
+build-arch: build
+build-indep: build
 
 build: build-stamp
-build-stamp: patch
+build-stamp:
 	dh_testdir
 
 	# Add commands to compile the package here
@@ -36,7 +37,7 @@ build-stamp: patch
 
 	touch build-stamp
 
-clean: unpatch
+clean:
 	dh_testdir
 	dh_testroot
 
@@ -49,7 +50,7 @@ install: build install-stamp
 install-stamp:
 	dh_testdir
 	dh_testroot
-	dh_clean -k
+	dh_prep
 
 	$(PERL) Build test
 	$(PERL) Build install --destdir $(TMP)
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.10


--- End Message ---
--- Begin Message ---
Source: libclass-trait-perl
Source-Version: 0.31-2

We believe that the bug you reported is fixed in the latest version of
libclass-trait-perl, 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.
Alexander Zangerl <[email protected]> (supplier of updated libclass-trait-perl 
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: Mon, 16 Sep 2013 00:17:31 +1000
Source: libclass-trait-perl
Binary: libclass-trait-perl
Architecture: source all
Version: 0.31-2
Distribution: unstable
Urgency: low
Maintainer: Alexander Zangerl <[email protected]>
Changed-By: Alexander Zangerl <[email protected]>
Description: 
 libclass-trait-perl - Implementation of Traits in Perl
Closes: 671657
Changes: 
 libclass-trait-perl (0.31-2) unstable; urgency=low
 .
   * lifted standards version, debhelper compat level
   * changes to 3.0 quilt source format (closes: #671657)
Checksums-Sha1: 
 12f3ae5af565cb3028733a653b4a760af074772d 1296 libclass-trait-perl_0.31-2.dsc
 211461b8febdc504d995aabb75cda5695d0c86ed 2789 
libclass-trait-perl_0.31-2.debian.tar.gz
 73484f43ce1f2e748641259729143a29fd827397 52468 
libclass-trait-perl_0.31-2_all.deb
Checksums-Sha256: 
 a95f87b9f2a5820cc6281269a1528e704ca5cf86454751e227b7de3b4bfd45c9 1296 
libclass-trait-perl_0.31-2.dsc
 ff5e53493eea444907cd79a0c31e28bc3173487ec89ba53f16f2fb4f107d0617 2789 
libclass-trait-perl_0.31-2.debian.tar.gz
 0ce68f0b17ba81be9e49f7483bbceef4b81f47d1684396dffb33b4eeec1f51bb 52468 
libclass-trait-perl_0.31-2_all.deb
Files: 
 ea49e7fdd692c947b91902e90d073ee1 1296 perl optional 
libclass-trait-perl_0.31-2.dsc
 fafc0b2f8bfbe40f582c16969112cc01 2789 perl optional 
libclass-trait-perl_0.31-2.debian.tar.gz
 5de83b5c66c037e3f8e8fe052905a2ba 52468 perl optional 
libclass-trait-perl_0.31-2_all.deb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.12 (GNU/Linux)

iF4EAREIAAYFAlI1wkkACgkQ+bKELRvb2DyA0AD/awpZlOZK4L0El6hKP4uKG1bR
G2uNB/x8dUWZFEwb6B4A/RsqwsVlPxJlTXjP3sHplj2naNk7I4NUM4Rjd8eZIEw3
=HkkN
-----END PGP SIGNATURE-----

--- End Message ---

Reply via email to