Your message dated Tue, 03 Dec 2013 22:18:31 +0000
with message-id <[email protected]>
and subject line Bug#664326: fixed in catfish 0.8.2-1
has caused the Debian Bug report #664326,
regarding [PATCH] catfish: 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.)


-- 
664326: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=664326
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: catfish
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 acf38a805586cc7e91e886f3e5801c315591cfe5 Mon Sep 17 00:00:00 2001
From: Jari Aalto <[email protected]>
Date: Mon, 27 Feb 2012 06:48:09 -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/README.source                               |   38 --------------------
 debian/changelog                                   |    8 ++++
 debian/compat                                      |    2 +-
 debian/control                                     |    4 +-
 debian/patches/00list                              |    4 --
 ...{10Fix_makefile.dpatch => 10Fix_makefile.patch} |   11 +-----
 ..._desktopfile.dpatch => 20Fix_desktopfile.patch} |    7 +---
 ..._backend.dpatch => 30Fix_tracker_backend.patch} |    8 +---
 ..._gtkiconload.dpatch => 40Fix_gtkiconload.patch} |    8 +---
 debian/patches/series                              |    4 ++
 debian/rules                                       |    5 +--
 debian/source/format                               |    2 +-
 12 files changed, 26 insertions(+), 75 deletions(-)
 delete mode 100644 debian/README.source
 delete mode 100644 debian/patches/00list
 rename debian/patches/{10Fix_makefile.dpatch => 10Fix_makefile.patch} (82%)
 rename debian/patches/{20Fix_desktopfile.dpatch => 20Fix_desktopfile.patch} (66%)
 rename debian/patches/{30Fix_tracker_backend.dpatch => 30Fix_tracker_backend.patch} (76%)
 rename debian/patches/{40Fix_gtkiconload.dpatch => 40Fix_gtkiconload.patch} (78%)
 create mode 100644 debian/patches/series

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 7f8bbb6..148a3f6 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,11 @@
+catfish (0.3.2-2.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 06:46:05 -0500
+
 catfish (0.3.2-2) unstable; urgency=low
 
   * Team upload.
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 1333d7a..79b7723 100644
--- a/debian/control
+++ b/debian/control
@@ -3,9 +3,9 @@ Section: utils
 Priority: optional
 Maintainer: Cody A.W. Somerville <[email protected]>
 Uploaders: Python Applications Team <[email protected]>
-Build-Depends: debhelper (>= 5), dpatch
+Build-Depends: debhelper (>= 9)
 Build-Depends-Indep: python-support (>= 0.5.3)
-Standards-Version: 3.9.2
+Standards-Version: 3.9.3
 Homepage: http://software.twotoasts.de/index.php?/pages/catfish_summary.html
 Vcs-Svn: svn://svn.debian.org/python-apps/packages/catfish/trunk/
 Vcs-Browser: http://svn.debian.org/viewsvn/python-apps/packages/catfish/trunk/
diff --git a/debian/patches/00list b/debian/patches/00list
deleted file mode 100644
index ed52ddc..0000000
--- a/debian/patches/00list
+++ /dev/null
@@ -1,4 +0,0 @@
-10Fix_makefile.dpatch
-20Fix_desktopfile.dpatch
-30Fix_tracker_backend.dpatch
-40Fix_gtkiconload.dpatch
diff --git a/debian/patches/10Fix_makefile.dpatch b/debian/patches/10Fix_makefile.patch
similarity index 82%
rename from debian/patches/10Fix_makefile.dpatch
rename to debian/patches/10Fix_makefile.patch
index 91448cd..285839f 100644
--- a/debian/patches/10Fix_makefile.dpatch
+++ b/debian/patches/10Fix_makefile.patch
@@ -1,13 +1,6 @@
-#! /bin/sh /usr/share/dpatch/dpatch-run
-## 10-Fix_makefile.dpatch by Cody A.W. Somerville <[email protected]>
-## Updated by Savvas Radevic <[email protected]>
-##
-## All lines beginning with `## DP:' are a description of the patch.
-## DP: Fix up Makefile.in (ex. Disable python compiling (we'll take care of that).
-##     Also disable the creation of symlinks as we'll handle it in debian/rules
-##     to ensure that it is done correctly.
+From: Cody A.W. Somerville <[email protected]>
+Subject: Fix up Makefile.in (ex. Disable python compiling (we'll take care of that).
 
-@DPATCH@
 --- catfish-0.3.2/Makefile.in	2009-01-13 17:40:41.000000000 +0100
 +++ catfish-0.3.2/Makefile.in	2009-01-13 17:54:29.000000000 +0100
 @@ -5,7 +5,6 @@
diff --git a/debian/patches/20Fix_desktopfile.dpatch b/debian/patches/20Fix_desktopfile.patch
similarity index 66%
rename from debian/patches/20Fix_desktopfile.dpatch
rename to debian/patches/20Fix_desktopfile.patch
index ce82ea1..000cb35 100644
--- a/debian/patches/20Fix_desktopfile.dpatch
+++ b/debian/patches/20Fix_desktopfile.patch
@@ -1,9 +1,6 @@
-#! /bin/sh /usr/share/dpatch/dpatch-run
-## 20Fix_desktopfile.dpatch by  <[email protected]>
-##
-## DP: Removed encoding field from desktop file
+From: <[email protected]>
+Subject: Removed encoding field from desktop file
 
-@DPATCH@
 diff -urNad catfish-0.3~/catfish.desktop catfish-0.3/catfish.desktop
 --- catfish-0.3~/catfish.desktop	2007-07-27 18:12:52.000000000 -0700
 +++ catfish-0.3/catfish.desktop	2008-02-18 16:50:06.000000000 -0800
diff --git a/debian/patches/30Fix_tracker_backend.dpatch b/debian/patches/30Fix_tracker_backend.patch
similarity index 76%
rename from debian/patches/30Fix_tracker_backend.dpatch
rename to debian/patches/30Fix_tracker_backend.patch
index 9a6b683..4b10bb3 100644
--- a/debian/patches/30Fix_tracker_backend.dpatch
+++ b/debian/patches/30Fix_tracker_backend.patch
@@ -1,10 +1,6 @@
-#! /bin/sh /usr/share/dpatch/dpatch-run
-## 30Fix_tracker_backend.dpatch by Michael Biebl <[email protected]>
-##
-## All lines beginning with `## DP:' are a description of the patch.
-## DP: Fix compatibility with Tracker 0.8.
+From: Michael Biebl <[email protected]>
+Subject: Fix compatibility with Tracker 0.8.
 
-@DPATCH@
 diff -urNad '--exclude=CVS' '--exclude=.svn' '--exclude=.git' '--exclude=.arch' '--exclude=.hg' '--exclude=_darcs' '--exclude=.bzr' catfish-0.3.2~/catfish.py catfish-0.3.2/catfish.py
 --- catfish-0.3.2~/catfish.py	2010-04-13 02:01:04.000000000 +0200
 +++ catfish-0.3.2/catfish.py	2010-04-13 02:01:17.249556252 +0200
diff --git a/debian/patches/40Fix_gtkiconload.dpatch b/debian/patches/40Fix_gtkiconload.patch
similarity index 78%
rename from debian/patches/40Fix_gtkiconload.dpatch
rename to debian/patches/40Fix_gtkiconload.patch
index 5c6dc4c..6e6f26f 100644
--- a/debian/patches/40Fix_gtkiconload.dpatch
+++ b/debian/patches/40Fix_gtkiconload.patch
@@ -1,10 +1,6 @@
-#! /bin/sh /usr/share/dpatch/dpatch-run
-## 40Fix_gtkiconload.dpatch by Jakub Wilk <[email protected]>
-##
-## All lines beginning with `## DP:' are a description of the patch.
-## DP: Prevent program crashing when an icon is missing from the icon theme.
+From: Jakub Wilk <[email protected]>
+Subject: Prevent program crashing when an icon is missing from the icon theme.
 
-@DPATCH@
 diff -urNad '--exclude=CVS' '--exclude=.svn' '--exclude=.git' '--exclude=.arch' '--exclude=.hg' '--exclude=_darcs' '--exclude=.bzr' catfish-0.3.2~/catfish.py catfish-0.3.2/catfish.py
 --- catfish-0.3.2~/catfish.py	2012-02-09 02:50:32.000000000 +0100
 +++ catfish-0.3.2/catfish.py	2012-02-09 02:51:33.823351096 +0100
diff --git a/debian/patches/series b/debian/patches/series
new file mode 100644
index 0000000..c124e4d
--- /dev/null
+++ b/debian/patches/series
@@ -0,0 +1,4 @@
+10Fix_makefile.patch
+20Fix_desktopfile.patch
+30Fix_tracker_backend.patch
+40Fix_gtkiconload.patch
diff --git a/debian/rules b/debian/rules
index 584e600..23ea179 100755
--- a/debian/rules
+++ b/debian/rules
@@ -1,12 +1,11 @@
 #!/usr/bin/make -f
 
-include /usr/share/dpatch/dpatch.make
 
 config.status: configure
 	dh_testdir
 	./configure --prefix=/usr
 
-build-indep: patch build-stamp
+build-indep: build-stamp
 
 build-stamp:  config.status
 	dh_testdir
@@ -17,7 +16,7 @@ build-arch: ;
 
 build: build-arch build-indep
 
-clean: unpatch
+clean:
 	dh_testdir
 	dh_testroot
 	rm -f build-stamp 
diff --git a/debian/source/format b/debian/source/format
index d3827e7..163aaf8 100644
--- a/debian/source/format
+++ b/debian/source/format
@@ -1 +1 @@
-1.0
+3.0 (quilt)
-- 
1.7.9


--- End Message ---
--- Begin Message ---
Source: catfish
Source-Version: 0.8.2-1

We believe that the bug you reported is fixed in the latest version of
catfish, 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 catfish 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, 14 Oct 2013 17:47:55 +1100
Source: catfish
Binary: catfish
Architecture: source all
Version: 0.8.2-1
Distribution: unstable
Urgency: low
Maintainer: Jackson Doak <[email protected]>
Changed-By: Jackson Doak <[email protected]>
Description: 
 catfish    - File searching tool which is configurable via the command line
Closes: 524603 579181 579564 589776 641577 664326 713006
Changes: 
 catfish (0.8.2-1) unstable; urgency=low
 .
   [ Jakub Wilk ]
   * Use canonical URIs for Vcs-* fields.
 .
   [ Jackson Doak ]
   * Set myself as maintainer
   * New upstream release
   * Update manpage
   * Merge from ubuntu, changes:
     Closes: #641577, #664326, #579181, #524603, #579564, #589776, #713006
   * Create debian/catfish.manpages, debian/docs,
     debian/patches/Manually-Install-Docs.patch
   * Delete debian/README.source, we no longer use dpatch
   * debian/copyright:
     - Specify GPL-2+
     - Convert to debian format 1.0
   * debian/control:
     - Bump debhelper to 9
     - Use "canonical" VCS fields
     - Update description
   * debian/compat: Set as 9
   * Use new URL in debian/watch
 .
   [ Sean Davis ]
   * debian/control
     - Updated standards version to 3.9.4
     - Updated homepage to launchpad
     - Remove dependencies on yelp, gksu
     - Move zeitgeist dependencies to Suggests
     - Update description to be more accurate
   * Update watch file for new home on Launchpad
     - update debian/watch
 .
   [ Liviu Andronic ]
   * Misc changes to debian/control.
   * Simplify debian/rules to ensure it works with newest catfish.
 .
   [ Scott Kitterman ]
   * Fix Makefile.in.in to install .py instead of .pyc files
   * Drop obsolete debian/patches/10Fix_makefile.dpatch and 00list
   * Drop dpatch from build-depends
   * Add --with python2 so dh_python2 is used
 .
   [ Lionel Le Folgoc ]
   * debian/patches:
     - 20Fix_desktopfile.dpatch, 40Fix_gtkiconload.dpatch: dropped, applied
       upstream.
     - 30Fix_tracker_backend.dpatch: dropped, tracker support has been removed.
   * debian/control:
     - replace gtk2 b-deps with python-gi.
     - promote python-xdg to depends, the new mimetype filter seems to discard
       all results without it.
   * debian/source/format: switch to 3.0 (quilt).
   * Convert to dh_python2
     - update debian/rules
     - update debian/control
 .
   [ Andrew Starr-Bochicchio ]
   * Fix file permissions during install.
   * Don't install extra license file.
   * Document missing copyright holder.
Checksums-Sha1: 
 52b2d9691118646d161723b8978eff34b823d271 1988 catfish_0.8.2-1.dsc
 c5c422c66c34cb1bb75ef5813cf344b2a0e37e97 106522 catfish_0.8.2.orig.tar.bz2
 5bf0422a7de95ac1aeabac572d80b26546a7ed3a 5628 catfish_0.8.2-1.debian.tar.gz
 34bcff4ecfd15ea07cb83b98fda944e3428fd2d3 99666 catfish_0.8.2-1_all.deb
Checksums-Sha256: 
 49c862efd35f346552a912358c68972fa9001ff707242d4f42a33a9fa4d32e15 1988 
catfish_0.8.2-1.dsc
 270eee049080c31a20a058cccb0662c28c1dadb205fc96bd6a18454c580e58a2 106522 
catfish_0.8.2.orig.tar.bz2
 56e350bb1ef8188d1e40f6e01e1c2449fd1ebc2a90515bd69b9c2e86afa8a4a6 5628 
catfish_0.8.2-1.debian.tar.gz
 ee6a043fad332e8b8c0dd482eacef015f09c78a8ecd792e0e282ab720f217eef 99666 
catfish_0.8.2-1_all.deb
Files: 
 de41c7873b46ba8ccc4979f4747b2d77 1988 utils optional catfish_0.8.2-1.dsc
 813666069e7b51d27722fcc6c5f36bf9 106522 utils optional 
catfish_0.8.2.orig.tar.bz2
 8a267c0db184948911f3dcff4beb793e 5628 utils optional 
catfish_0.8.2-1.debian.tar.gz
 fa4816da0013535cba2679dac53eab1b 99666 utils optional catfish_0.8.2-1_all.deb

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

iQIcBAEBCAAGBQJSnlZWAAoJEDtW4rvVP9yxgxIP/0UJBhC+QXWua4QpE/JFdjN3
zqXMC7K8U53qJpSNOgo7jJK9dBjWDnAGxvu/K+p+07dxf1ZUcX8o9406iloA+1HF
pfE/WvGotCy69Jy3XrBuo4ZzWSviuRcdMDZgRQPLWGPIwAnMLWi8cG8dh8ydSxLu
oZr/ERZ1bBxSeaHKdJ/QzvGNCos1IrJfl+zwXLnCs36eFWcMWHtRb5sIvYiCRxi8
NnQ9dU2hfLPC1bxrjbOhTsB6YIbVnMHR+ENhTnj3GSaxBAvvT0Ik2ZOGVNdd5/41
njnF1PeWA5vlwk+w9ZtvYMnd8Ak4xFjIEdoZRJ2sKkvwS8+qUXGE7KYKpSPGt28X
FSiyLi6HJ/YzYW2MUiO1mqsGv4CrvhSTIPnU5fe+JBxqZyjcwc5SFD3BanFM0b+U
mxGzpoX7cktWMEjvl3L/HK4UjCBCsycHnwd2r42tQheq2vEKQ7nmCxmZJG1DKpmc
3sE2vtLiCTtMgDLRrODWglCMFlt91zZOBcA1Hz31Qf5wBkL7lYV3mZtNhPVIUMwk
oPk6OLvFlskelFvGUSxn8d6DdDV+R6ICG3Ckl5bLnNK2Bdi8HgjrwIm6wF+k+9vD
OumGP4j839qhSX0pBCMgK4tGkUsb5X4nMTSNflH3cEek6ddRNGOOWqyBkxqOpBMY
pssW3BR4jlF0FQKnz0eW
=d/2p
-----END PGP SIGNATURE-----

--- End Message ---

Reply via email to