[libconvert-units-perl] 02/17: Imported Debian patch 0.43-4

Damyan Ivanov dmn at moszumanska.debian.org
Tue Jul 21 20:20:20 UTC 2015


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

dmn pushed a commit to annotated tag debian/0.43-2
in repository libconvert-units-perl.

commit 582e5bf294d6f90e03256d9ad8d7b33a1d4282e8
Author: Krzysztof Krzyzaniak (eloy) <eloy at debian.org>
Date:   Mon Apr 8 15:17:26 2002 +0200

    Imported Debian patch 0.43-4
---
 debian/changelog | 27 +++++++++++++++++++++
 debian/control   | 14 +++++++++++
 debian/copyright | 13 ++++++++++
 debian/rules     | 72 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 4 files changed, 126 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..3db0738
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,27 @@
+libconvert-units-perl (0.43-4) unstable; urgency=low
+
+  * rules file was rewritten
+
+ -- Krzysztof Krzyzaniak (eloy) <eloy at debian.org>  Mon,  8 Apr 2002 15:17:26 +0200
+
+libconvert-units-perl (0.43-3) unstable; urgency=low
+
+  * Build-Depends changed to Build-Depends-Indep (avoid lintian error)
+
+ -- Krzysztof Krzyzaniak (eloy) <eloy at debian.org>  Mon, 17 Dec 2001 22:50:48 +0100
+
+libconvert-units-perl (0.43-2) unstable; urgency=low
+
+  * Arch: any changed to Arch: all
+
+ -- Krzysztof Krzyzaniak (eloy) <eloy at debian.org>  Mon, 17 Dec 2001 22:33:30 +0100
+
+libconvert-units-perl (0.43-1) unstable; urgency=low
+
+  * Initial Release (closes: #123403).
+
+ -- Krzysztof Krzyzaniak (eloy) <eloy at debian.org>  Wed, 12 Dec 2001 11:11:39 +0100
+
+Local variables:
+mode: debian-changelog
+End:
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..7d368c3
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,14 @@
+Source: libconvert-units-perl
+Section: interpreters
+Priority: extra
+Maintainer: Krzysztof Krzyzaniak (eloy) <eloy at debian.org>
+Build-Depends-Indep: debhelper (>> 3.0.0), perl5
+Standards-Version: 3.5.2
+
+Package: libconvert-units-perl
+Architecture: all
+Depends: perl5
+Description: Perl module for performing unit conversions
+ The Units package is a collection of modules for parsing strings
+ with unit measurements (such as "12pt" or "3 meters") and
+ converting them to some other unit (such as "picas" or "inches").
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..14c50fc
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,13 @@
+This package was debianized by Krzysztof Krzyzaniak (eloy) <eloy at debian.org> on
+Tue, 11 Dec 2001 11:26:46 +0100.
+
+It was downloaded from 
+ftp://ftp.cpan.org/pub/CPAN/modules/by-category/17_Archiving_and_Compression/Convert/Convert-Units-0.43.tar.gz
+
+Upstream Author: Robert Rothenberg <wlkngowl at unix.asb.com>
+
+Copyright:
+
+Copyright (c) 1999 Robert Rothenberg. All rights reserved. This
+program is free software; you can redistribute it and/or modify
+it under the same terms as Perl itself.
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..e845a8f
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,72 @@
+#!/usr/bin/make -f
+# -*- Makefile -*-
+
+# Use debhelper V. 2
+export DH_COMPAT := 2
+
+# Make sure perl is defined (allow overriding from the command line
+PERL ?= /usr/bin/perl
+
+# Set our build directory
+b := $(shell pwd)/debian/libconvert-units-perl
+
+arrange: arrange-stamp
+arrange-stamp: install
+	dh_testdir
+	dh_installdirs
+	touch arrange-stamp
+
+binary: binary-stamp
+binary-stamp: binary-indep binary-arch
+	dh_testdir
+	touch binary-stamp
+
+binary-arch: binary-arch-stamp
+binary-arch-stamp: arrange
+	dh_testdir
+	dh_testroot
+	dh_installexamples
+	dh_installdocs README
+	dh_installchangelogs Changes
+	dh_compress
+	dh_fixperms
+	dh_strip
+	dh_installdeb
+	dh_perl
+	dh_shlibdeps
+	dh_gencontrol
+	dh_md5sums
+	dh_builddeb
+	touch binary-arch-stamp
+
+binary-indep: binary-indep-stamp
+binary-indep-stamp: arrange
+	dh_testdir
+	touch binary-indep-stamp
+
+build: build-stamp
+build-stamp: config
+	dh_testdir
+	$(MAKE) LDLOADLIBS=-lc
+	$(MAKE) test
+	touch build-stamp
+
+clean:
+	dh_testdir
+	dh_testroot
+	if [ -e Makefile ]; then $(MAKE) -i distclean; fi
+	dh_clean arrange-stamp binary-stamp binary-arch-stamp binary-indep-stamp build-stamp config-stamp install-stamp
+
+config: config-stamp
+config-stamp:
+	dh_testdir
+	$(PERL) Makefile.PL INSTALLDIRS=vendor
+	touch config-stamp
+
+install: install-stamp
+install-stamp: build
+	dh_testdir
+	$(MAKE) install PREFIX=$(b)/usr
+	touch install-stamp
+
+.PHONY: arrange binary binary-arch binary-indep build clean config install

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



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