[libtext-worddiff-perl] 01/01: Imported Debian patch 0.05-2

gregor herrmann gregoa at debian.org
Sun Jan 12 17:12:22 UTC 2014


This is an automated email from the git hooks/post-receive script.

gregoa pushed a commit to branch master
in repository libtext-worddiff-perl.

commit a1e98175e1e406895186f94b898294b757081efe
Author: Nacho Barrientos Arias <nacho at debian.org>
Date:   Sun Dec 29 22:15:36 2013 +0000

    Imported Debian patch 0.05-2
---
 debian/changelog | 31 +++++++++++++++++++++++++++++++
 debian/compat    |  1 +
 debian/control   | 20 ++++++++++++++++++++
 debian/copyright | 43 +++++++++++++++++++++++++++++++++++++++++++
 debian/rules     | 52 ++++++++++++++++++++++++++++++++++++++++++++++++++++
 debian/watch     |  2 ++
 6 files changed, 149 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..435b35e
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,31 @@
+libtext-worddiff-perl (0.05-2) unstable; urgency=low
+
+  * Orphaned. Set maintainer to Debian QA Group.
+
+ -- Nacho Barrientos Arias <nacho at debian.org>  Sun, 29 Dec 2013 22:15:36 +0000
+
+libtext-worddiff-perl (0.05-1) unstable; urgency=low
+
+  * New upstream release.
+  * debian/control
+   + Update standards-version to 3.8.3 (no changes).
+
+ -- Nacho Barrientos Arias <nacho at debian.org>  Thu, 24 Sep 2009 16:17:48 +0200
+
+libtext-worddiff-perl (0.04-1) unstable; urgency=low
+
+  * New upstream release.
+  * debian/control
+   + Set Standards-Version to 3.8.0 (no changes).
+   + Move homepage to the new Homepage field.
+  * debian/rules
+   + Prevent packlist creation.
+
+ -- Nacho Barrientos Arias <nacho at debian.org>  Wed, 23 Jul 2008 11:27:05 +0200
+
+libtext-worddiff-perl (0.02-1) unstable; urgency=low
+
+  * Initial release (Closes: #416088)
+
+ -- Nacho Barrientos Arias <nacho at debian.org>  Sat, 24 Mar 2007 19:40:51 +0100
+
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..7f8f011
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+7
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..b2bbe16
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,20 @@
+Source: libtext-worddiff-perl
+Section: perl
+Priority: extra
+Maintainer: Debian QA Group <packages at qa.debian.org>
+Build-Depends: debhelper (>= 7)
+Build-Depends-Indep: perl (>= 5.8), libmodule-build-perl
+Standards-Version: 3.8.3
+Homepage: http://search.cpan.org/dist/Text-WordDiff/
+
+Package: libtext-worddiff-perl
+Architecture: all
+Depends: ${perl:Depends}, libalgorithm-diff-perl, libhtml-parser-perl
+Description: Track changes between documents
+ This module is a variation on the lovely Text::Diff module. Rather than
+ generating traditional line-oriented diffs, however, it generates
+ word-oriented diffs. This can be useful for tracking changes in
+ narrative documents or documents with very long lines. To diff source
+ code, one is still best off using Text::Diff. But if you want to see how
+ a short story changed from one version to the next, this module will do
+ the job very nicely.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..edf5023
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,43 @@
+This package was debianized by Nacho Barrientos Arias 
+<nacho at debian.org> on Sat, 24 Mar 2007 19:40:51 +0100.
+
+It was downloaded from http://search.cpan.org/dist/Text-WordDiff/
+
+Upstream Author: David Wheeler <david at justatheory.com>
+
+Copyright (C) 2005-2009 David Wheeler (Kineticode, Inc.)
+
+License:
+
+This program is free software; you can redistribute it and/or
+modify it under the same terms as Perl itself.
+
+GPL:
+
+ 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
+ with Debian GNU/Linux (see /usr/share/common-licenses/), if not
+ write to the Free Software Foundation, Inc., 51 Franklin St,
+ Fifth Floor, Boston, MA  02110-1301 USA
+
+ On Debian GNU/Linux systems, the complete text of the GNU General
+ Public License can be found in `/usr/share/common-licenses/GPL'
+
+Artistic:
+
+ http://www.perl.com/language/misc/Artistic.html
+
+ On Debian GNU/Linux systems, the complete text of the Artistic
+ License can be found in `/usr/share/common-licenses/Artistic'.
+
+The Debian packaging is (C) 2007-2009, Nacho Barrientos Arias 
+<nacho at debian.org> and is licensed under the GPL, see above.
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..e78f907
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,52 @@
+#!/usr/bin/make -f
+
+PACKAGE = $(shell dh_listpackages)
+
+ifndef PERL
+PERL = $(shell which perl)
+endif
+
+configure: configure-stamp
+configure-stamp:
+	dh_testdir
+	$(PERL) Makefile.PL INSTALLDIRS=vendor DESTDIR=$(CURDIR)/debian/$(PACKAGE) create_packlist=0
+	touch configure-stamp
+
+build: build-stamp
+
+build-stamp: configure-stamp 
+	dh_testdir
+	$(MAKE) OPTIMIZE="-O2 -g -Wall"
+	touch build-stamp
+
+clean:
+	dh_testdir
+	dh_testroot
+	rm -f build-stamp configure-stamp
+	[ ! -f Build ] || $(MAKE) realclean
+	dh_clean 
+
+install: build
+	dh_testdir
+	dh_testroot
+	dh_prep	
+	dh_installdirs
+	$(MAKE) install
+
+binary-indep: build install
+	dh_testdir
+	dh_testroot
+	dh_installchangelogs Changes
+	dh_installdocs README
+	dh_compress
+	dh_fixperms
+	dh_perl
+	dh_installdeb
+	dh_gencontrol
+	dh_md5sums
+	dh_builddeb
+
+binary-arch: build install
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install configure
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..2c81803
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,2 @@
+version=3
+http://www.cpan.org/modules/by-module/Text/Text-WordDiff-([\d\.]*)\.tar\.gz

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-perl/packages/libtext-worddiff-perl.git



More information about the Pkg-perl-cvs-commits mailing list