[Reproducible-commits] [libextutils-depends-perl] 47/187: [svn-inject] Applying Debian modifications to trunk
Maria Valentina Marin Rodrigues
akira-guest at moszumanska.debian.org
Wed Jan 21 21:16:47 UTC 2015
This is an automated email from the git hooks/post-receive script.
akira-guest pushed a commit to branch pu/reproducible_builds
in repository libextutils-depends-perl.
commit f766168409a0a7faab66797558e8d70b9c804c0c
Author: Ryan Niebur <ryan at debian.org>
Date: Sun Dec 28 07:25:11 2008 +0000
[svn-inject] Applying Debian modifications to trunk
---
debian/changelog | 53 +++++++++++++++++++++++++++++++++++++++++++
debian/compat | 1 +
debian/control | 16 +++++++++++++
debian/copyright | 16 +++++++++++++
debian/rules | 69 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++
debian/watch | 2 ++
6 files changed, 157 insertions(+)
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..f20c63f
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,53 @@
+libextutils-depends-perl (0.300-1) unstable; urgency=low
+
+ * New upstream release.
+ * debian/control: Bump to policy version 3.8.0 (no changes needed)
+
+ -- Marc 'HE' Brockschmidt <he at debian.org> Sat, 07 Jun 2008 11:13:20 +0200
+
+libextutils-depends-perl (0.205-1) unstable; urgency=low
+
+ * New upstream release. *No* changes for debian users - why isn't
+ there a "i just want to shut up uscan" urgency level?
+ * debian/watch: Fix it.
+
+ -- Marc 'HE' Brockschmidt <he at debian.org> Mon, 31 Jan 2005 16:23:09 +0100
+
+libextutils-depends-perl (0.204-1) unstable; urgency=low
+
+ * New upstream release.
+
+ -- Marc 'HE' Brockschmidt <he at debian.org> Mon, 20 Sep 2004 23:08:59 +0200
+
+libextutils-depends-perl (0.202-2) unstable; urgency=low
+
+ * This is now considered more or less stable, upload to unstable.
+ * debian/control: I'm a DD now!
+
+ -- Marc 'HE' Brockschmidt <he at debian.org> Wed, 24 Mar 2004 14:52:58 +0100
+
+libextutils-depends-perl (0.202-1) experimental; urgency=low
+
+ * New upstream release.
+
+ -- Marc 'HE' Brockschmidt <he at debian.org> Fri, 12 Mar 2004 16:04:27 +0100
+
+libextutils-depends-perl (0.201-1) experimental; urgency=low
+
+ * New upstream release.
+ * Upload of unstable gtk2-perl to experimental.
+
+ -- Marc Brockschmidt <marc at dch-faq.de> Mon, 16 Feb 2004 00:49:58 +0100
+
+libextutils-depends-perl (0.104-1) unstable; urgency=low
+
+ * New upstream release.
+ * debian/control: Updated descriptions (Thanks to Joe Drew)
+
+ -- Marc Brockschmidt <marc at dch-faq.de> Fri, 21 Nov 2003 14:32:53 +0100
+
+libextutils-depends-perl (0.103-1) unstable; urgency=low
+
+ * Initial Release. (Closes: #221684)
+
+ -- Marc Brockschmidt <marc at dch-faq.de> Wed, 19 Nov 2003 16:24:47 +0100
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..4c2dc1b
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,16 @@
+Source: libextutils-depends-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 4.0.2)
+Build-Depends-Indep: perl (>= 5.6.0-16)
+Maintainer: Marc 'HE' Brockschmidt <he at debian.org>
+Standards-Version: 3.8.0
+
+Package: libextutils-depends-perl
+Architecture: all
+Depends: ${perl:Depends}, ${misc:Depends}
+Description: Perl module for building extensions that depend on other extensions
+ libextutils-depends-perl tries to make it easy to build Perl
+ extensions that use functions and typemaps provided by other perl
+ extensions. This means that a perl extension is treated like a shared
+ library that also provides a C and an XS interface.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..447bec2
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,16 @@
+This is the debian package for the ExtUtils-Depends module.
+It was created by Marc Brockschmidt <marc at dch-faq.de> using dh-make-perl.
+
+The sources where downloaded from http://gtk2-perl.sf.net/.
+
+The upstream author is Paolo Molaro <lupus at debian.org>
+
+Copyright (C) 1997-2001, Kenneth Albanowski, Paolo Molaro and
+are licensed for use under the same terms as Perl itself (GPL
+and Artistic license).
+ [This information was extracted from the gtk-perl release]
+
+On Debian systems the complete text of the GPL and Artistic
+licenses can be found at:
+ /usr/share/common-licenses/GPL and
+ /usr/share/common-licenses/Artistic
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..2ff7aec
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,69 @@
+#!/usr/bin/make -f
+# 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
+
+
+ # Add here commands to compile the package.
+ $(PERL) Makefile.PL INSTALLDIRS=vendor
+ $(MAKE) OPTIMIZE="-O2 -g -Wall"
+
+ touch build-stamp
+
+clean:
+ dh_testdir
+ dh_testroot
+ rm -f build-stamp
+
+ # Add here commands to clean up after the build process.
+ [ ! -f Makefile ] || $(MAKE) realclean
+
+ dh_clean
+
+install:
+ dh_testdir
+ dh_testroot
+ dh_clean -k
+ dh_installdirs
+
+ $(MAKE) test
+ $(MAKE) install PREFIX=/usr DESTDIR=$(TMP)
+
+
+# Build architecture-dependent files here.
+binary-arch: build install
+# We have nothing to do by default.
+
+# Build architecture-independent files here.
+binary-indep: build install
+ dh_testdir
+ dh_testroot
+ dh_installdocs README
+ dh_installchangelogs Changes
+ dh_link
+ dh_strip
+ dh_compress
+ dh_fixperms
+ dh_installdeb
+ dh_perl
+ 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
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..f85f99f
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,2 @@
+version=2
+http://osdn.dl.sourceforge.net/sourceforge/gtk2-perl/ExtUtils-Depends-(\d+\.\d+)\.tar\.gz
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/reproducible/libextutils-depends-perl.git
More information about the Reproducible-commits
mailing list