[libparse-debianchangelog-perl] 01/52: Inital version of the Debian packaging

Intrigeri intrigeri at moszumanska.debian.org
Sun May 24 12:37:23 UTC 2015


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

intrigeri pushed a commit to branch master
in repository libparse-debianchangelog-perl.

commit 7e94cc0d8464ee8c861ce5565d8cdb9fadb4df2f
Author: Frank Lichtenheld <frank at lichtenheld.de>
Date:   Fri Jul 1 20:54:27 2005 +0000

    Inital version of the Debian packaging
---
 debian/changelog |  6 +++++
 debian/compat    |  1 +
 debian/control   | 20 ++++++++++++++
 debian/copyright | 25 ++++++++++++++++++
 debian/rules     | 79 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 5 files changed, 131 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..e3c4e03
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,6 @@
+libparse-debianchangelog-perl (0.3a-1) unstable; urgency=low
+
+  * Initial Release (Closes: #314559).
+
+ -- Frank Lichtenheld <djpig at debian.org>  Fri,  1 Jul 2005 22:35:31 +0200
+
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..b8626c4
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+4
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..6daa93f
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,20 @@
+Source: libparse-debianchangelog-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 4.0.2)
+Build-Depends-Indep: perl (>= 5.8.0-7)
+Maintainer: Frank Lichtenheld <djpig at debian.org>
+Standards-Version: 3.6.2
+
+Package: libparse-debianchangelog-perl
+Architecture: all
+Depends: ${perl:Depends}, ${misc:Depends}, libtimedate-perl
+Recommends: dpkg-dev, libhtml-parser-perl, liburi-perl
+Description: parse Debian changelogs and output them in other formats
+ Replacement for the very limited dpkg-parsechangelog.
+ .
+ Currently supports the original dpkg-parsechangelog output format
+ and an (not yet customizable) HTML output.
+ .
+ This is an early alpha version, don't expect a stable (or at all
+ useful) API yet.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..832d275
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,25 @@
+This is the debian package for the Parse-DebianChangelog module.
+It was created by Frank Lichtenheld <djpig at debian.org> using dh-make-perl.
+
+This software was downloaded from http://www.djpig.de/software/
+
+Upstream author: Frank Lichtenheld <frank at lichtenheld.de>
+
+Copyright:
+
+Copyright 1996 Ian Jackson (for the original dpkg-parsechangelog
+                            from dpkg)
+Copyright 2005 Frank Lichtenheld <frank at lichtenheld.de>
+
+    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.
+
+On Debian systems the full text of the GNU General Public Licence,
+version 2, can be found at /usr/share/common-licenses/GPL-2.
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..54677d0
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,79 @@
+#!/usr/bin/make -f
+# This debian/rules file is provided as a template for normal perl
+# packages. It was created by Marc Brockschmidt <marc at dch-faq.de> for
+# the Debian Perl Group (http://pkg-perl.alioth.debian.org/) but may
+# be used freely wherever it is useful.
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+# If set to a true value then MakeMaker's prompt function will
+# always return the default without waiting for user input.
+export PERL_MM_USE_DEFAULT=1
+
+PACKAGE=$(shell dh_listpackages)
+
+ifndef PERL
+PERL = /usr/bin/perl
+endif
+
+TMP     =$(CURDIR)/debian/$(PACKAGE)
+
+build: build-stamp
+build-stamp:
+	dh_testdir
+
+	$(PERL) Makefile.PL INSTALLDIRS=vendor
+	$(MAKE) OPTIMIZE="-Wall -O2 -g"
+
+	touch build-stamp
+
+clean:
+	dh_testdir
+	dh_testroot
+
+	# Add commands to clean up after the build process here
+	-$(MAKE) distclean
+
+	dh_clean build-stamp install-stamp
+
+install: build install-stamp
+install-stamp:
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+
+	$(MAKE) test
+	$(MAKE) install DESTDIR=$(TMP) PREFIX=/usr
+
+	# As this is a architecture independent package, we are not
+	# supposed to install stuff to /usr/lib. MakeMaker creates
+	# the dirs, we delete them from the deb:
+	rmdir --ignore-fail-on-non-empty --parents $(TMP)/usr/lib/perl5
+
+	touch install-stamp
+
+binary-arch:
+# We have nothing to do by default.
+
+binary-indep: build install
+	dh_testdir
+	dh_testroot
+#	dh_installexamples
+	dh_installdocs README
+	dh_installchangelogs Changes
+	dh_perl
+	dh_link
+	dh_strip
+	dh_compress
+	dh_fixperms
+	dh_installdeb
+	dh_gencontrol
+	dh_md5sums
+	dh_builddeb
+
+source diff:                                                                  
+	@echo >&2 'source and diff are obsolete - use dpkg-source -b'; false
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary

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



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