[libtext-trac-perl] 01/01: Imported Debian patch 0.15-2

gregor herrmann gregoa at debian.org
Sun Jan 12 16:57:47 UTC 2014


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

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

commit 2fb3a0200ef797c5b4a4a310728941cb27ffbef2
Author: Nacho Barrientos Arias <nacho at debian.org>
Date:   Sun Dec 29 22:14:26 2013 +0000

    Imported Debian patch 0.15-2
---
 debian/changelog | 28 ++++++++++++++++++++++++++++
 debian/compat    |  1 +
 debian/control   | 16 ++++++++++++++++
 debian/copyright | 47 +++++++++++++++++++++++++++++++++++++++++++++++
 debian/rules     | 52 ++++++++++++++++++++++++++++++++++++++++++++++++++++
 debian/watch     |  2 ++
 6 files changed, 146 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..d3de61f
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,28 @@
+libtext-trac-perl (0.15-2) unstable; urgency=low
+
+  * Orphaned. Set maintainer to Debian QA Group.
+
+ -- Nacho Barrientos Arias <nacho at debian.org>  Sun, 29 Dec 2013 22:14:26 +0000
+
+libtext-trac-perl (0.15-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 09:51:52 +0200
+
+libtext-trac-perl (0.12-1) unstable; urgency=low
+
+  * New upstream release.
+  * debian/control
+   + Set Standards-Version to 3.8.0 (no changes).
+
+ -- Nacho Barrientos Arias <nacho at debian.org>  Wed, 23 Jul 2008 10:36:19 +0200
+
+libtext-trac-perl (0.11-1) unstable; urgency=low
+
+  * Initial release (Closes: #470046)
+
+ -- Nacho Barrientos Arias <nacho at debian.org>  Sat, 08 Mar 2008 21:37:42 +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..2e2eac5
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,16 @@
+Source: libtext-trac-perl
+Section: perl
+Priority: optional
+Maintainer: Debian QA Group <packages at qa.debian.org>
+Build-Depends: debhelper (>= 7)
+Build-Depends-Indep: perl, libtest-base-perl, libuniversal-require-perl, libclass-accessor-perl, libclass-data-inheritable-perl, libtie-ixhash-perl, liblist-moreutils-perl, libhtml-parser-perl
+Standards-Version: 3.8.3
+Homepage: http://search.cpan.org/dist/Text-Trac/
+
+Package: libtext-trac-perl
+Architecture: all
+Depends: ${perl:Depends}, libtest-base-perl, libuniversal-require-perl, libclass-accessor-perl, libclass-data-inheritable-perl, libtie-ixhash-perl, liblist-moreutils-perl, libhtml-parser-perl
+Description: format text with Trac Wiki Style
+ Text::Trac is a perl module the provides an easy interface
+ to parse text with Trac WikiFormatting and convert it to 
+ HTML format.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..7f90527
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,47 @@
+This package was debianized by Nacho Barrientos Arias 
+<nacho at debian.org> on Sat, 08 Mar 2008 21:37:42 +0100.
+
+It was downloaded from <http://search.cpan.org/dist/Text-Trac/>
+
+Upstream Author:
+
+    Gosuke Miyashita <gosukenator at gmail.com>
+
+Copyright: 
+
+    Copyright (C) 2006-2009
+      Gosuke Miyashita
+      Hideaki Tanaka
+
+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
+
+  Artistic:
+
+    http://www.perl.com/language/misc/Artistic.html
+
+    On Debian GNU/Linux systems, you can get extra information in
+    `/usr/share/common-licenses/Artistic'.
+
+The Debian packaging is (C) 2008, 2009 
+ - Nacho Barrientos Arias <nacho at debian.org> 
+and is licensed under the GPL, see `/usr/share/common-licenses/GPL'.
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..7988fc5
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,52 @@
+#!/usr/bin/make -f
+
+#export DH_VERBOSE=1
+
+PACKAGE = $(shell dh_listpackages)
+
+clean:
+	dh_testdir
+	dh_testroot
+	[ ! -f Makefile ] || $(MAKE) realclean
+	dh_clean
+	rm -f build-stamp configure-stamp 
+
+configure: configure-stamp
+configure-stamp:
+	dh_testdir
+	perl Makefile.PL INSTALLDIRS=vendor DESTDIR=$(CURDIR)/debian/$(PACKAGE)
+	touch configure-stamp
+
+build: build-stamp
+build-stamp: configure-stamp
+	dh_testdir
+	$(MAKE) OPTIMIZE="-O2 -g -Wall"
+	$(MAKE) test
+	touch build-stamp
+
+install: build
+	dh_testdir
+	dh_testroot
+	dh_prep
+	dh_installdirs
+	$(MAKE) install 
+	rm -rf $(CURDIR)/debian/$(PACKAGE)/usr/lib
+
+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: clean build install binary-indep binary-arch binary
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..3ed52e8
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,2 @@
+version=3
+http://search.cpan.org/dist/Text-Trac/ .*/Text-Trac-v?(\d[\d_.]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)

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



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