--- rpl-1.5.5.orig/debian/changelog +++ rpl-1.5.5/debian/changelog @@ -0,0 +1,91 @@ +rpl (1.5.5-1.1) unstable; urgency=medium + + * Non-maintainer upload. + * Build using dh-python instead of python-support. Closes: #786109 + * Build-depend on python instead of python-dev, since it builds only one + arch:all package. + * Add dependency on ${misc:Depends}, so debhelper can do its work. + * Move Homepage field to the source stanza. + * Remove long useless debian/pycompat file. + * Recode author name in setup.py in UTF-8, otherwise dh_python2 choke on it. + And also because UTF-8 <=> \o/, everything else <=> /o\. + + -- Mattia Rizzolo Mon, 14 Dec 2015 23:36:10 +0000 + +rpl (1.5.5-1) unstable; urgency=low + + * Uploaded original source files to SourceForge (rpl) in order to convert + this package from a Debian native to a normal package. + * Added homepage to debian/control. + * Added debian/watch file. + * Editorial changes in debian/control description and debian/copyright. + * New e-mail address for maintainer. Changed in debian/* files. + * Changed debian/control Builds-Depends: python-support (>= 0.5.3) + + -- Kevin Coyner Sun, 12 Aug 2007 20:46:02 -0400 + +rpl (1.5.4) unstable; urgency=low + + * New maintainer (closes: #388131). + * Updated Standards-Version to 3.7.2. + * Updated debian/control & rules for new Python policies + + -- Kevin Coyner Mon, 18 Sep 2006 18:52:56 -0400 + +rpl (1.5.3) unstable; urgency=low + + * Used force instead of opts.force. Thanks to Martin Sarsale for the + report (closes: #347419). + + -- Göran Weinholt Mon, 13 Mar 2006 11:07:48 +0100 + +rpl (1.5.2) unstable; urgency=low + + * Do not follow symlinks. Fixes the problem with symlink loops. Thanks + to Johannes Berg for reporting this bug. + (Closes: #296918). + * Ignore hidden files and directories unless the -a/--all argument is + given. Thanks to Michael Schuerig for + reporting this bug. (Closes: #314538) + * debian/control: Update to Standards-Version: 3.6.2 (no changes). + * Updated GPL v2 (COPYING and the address in the copyright notices) + from base-files. + + -- Göran Weinholt Sun, 31 Jul 2005 15:45:36 +0200 + +rpl (1.5.1) unstable; urgency=low + + * Quiet mode no longer asks for confirmation to replace with the empty + string. That very prompt also had the logic reversed. Thanks to + simon raven for the patch. (Closes: #257533) + + -- Göran Weinholt Sun, 4 Jul 2004 05:43:28 +0200 + +rpl (1.5.0) unstable; urgency=low + + * Liberated! Rewritten as a python script and uploaded to main. + * Recursion works now. (Closes: #250684) + + -- Göran Weinholt Fri, 18 Jun 2004 22:57:50 +0200 + +rpl (1.4.0-2) unstable; urgency=low + + * New maintainer (closes: #239961). + * Fixed errors in man page (closes: #180524). + * debian/rules: Switched over to CDBS. + * Remove /usr/doc/rpl symlink. + + -- Göran Weinholt Mon, 5 Apr 2004 13:04:04 +0200 + +rpl (1.4.0-1) unstable; urgency=low + + * New upstream release + + -- Aubin Paul Wed, 24 Jul 2002 14:02:38 -0400 + +rpl (1.3.0b3-1) unstable; urgency=low + + * Initial Release. (Closes: #90468) + + -- Aubin Paul Wed, 20 Mar 2002 15:54:51 -0500 + --- rpl-1.5.5.orig/debian/compat +++ rpl-1.5.5/debian/compat @@ -0,0 +1 @@ +5 --- rpl-1.5.5.orig/debian/control +++ rpl-1.5.5/debian/control @@ -0,0 +1,15 @@ +Source: rpl +Section: utils +Priority: optional +Maintainer: Kevin Coyner +Build-Depends: debhelper (>= 5), cdbs (>= 0.4.43), python, dh-python +Standards-Version: 3.7.2 +Homepage: http://rpl.sourceforge.net/ + +Package: rpl +Architecture: all +Depends: ${python:Depends}, ${misc:Depends} +Description: intelligent recursive search/replace utility + rpl is a text replacement utility. It will replace strings with new strings + in multiple text files. It can work recursively over directories and supports + limiting the search to specific file suffixes. --- rpl-1.5.5.orig/debian/copyright +++ rpl-1.5.5/debian/copyright @@ -0,0 +1,22 @@ +This package was debianized by Aubin Paul on 20 Mar 2002. + +The current maintainer is Kevin Coyner . + +Copyright (C) 2004-2005 Göran Weinholt + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + +On Debian systems, the complete text of the GNU General Public License +can be found in `/usr/share/common-licenses/GPL'. --- rpl-1.5.5.orig/debian/rpl.manpages +++ rpl-1.5.5/debian/rpl.manpages @@ -0,0 +1 @@ +rpl.1 --- rpl-1.5.5.orig/debian/rules +++ rpl-1.5.5/debian/rules @@ -0,0 +1,4 @@ +#!/usr/bin/make -f +DEB_PYTHON2_MODULE_PACKAGES := rpl +include /usr/share/cdbs/1/rules/debhelper.mk +include /usr/share/cdbs/1/class/python-distutils.mk --- rpl-1.5.5.orig/debian/watch +++ rpl-1.5.5/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://sf.net/rpl/rpl(.*)\.tar\.gz --- rpl-1.5.5.orig/setup.py +++ rpl-1.5.5/setup.py @@ -8,7 +8,7 @@ setup(name='rpl', version='1.5.5', description=DESC, - author='Go¶ran Weinholt', + author='Göran Weinholt', author_email='weinholt@debian.org', url='http:/rpl.sf.net', license='GPL v2 or later',