[libdata-compare-perl] 01/13: Import Debian changes 0.02-1

dom at earth.li dom at earth.li
Sat Sep 2 12:30:17 UTC 2017


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

dom pushed a commit to branch master
in repository libdata-compare-perl.

commit bd893b87e6e6a7f0a4884d33a88dc14c29d14ca8
Author: Jean-Francois Dive <jef at linuxbe.org>
Date:   Thu Feb 21 16:20:52 2002 +1100

    Import Debian changes 0.02-1
    
    libdata-compare-perl (0.02-1) unstable; urgency=low
    
      * Initial Debianization.
---
 debian/changelog |  6 +++++
 debian/control   | 15 +++++++++++++
 debian/copyright | 13 +++++++++++
 debian/rules     | 68 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 4 files changed, 102 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..0bab333
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,6 @@
+libdata-compare-perl (0.02-1) unstable; urgency=low
+
+  * Initial Debianization.
+
+ -- Jean-Francois Dive <jef at linuxbe.org>  Thu, 21 Feb 2002 16:20:52 +1100
+
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..cf7d30d
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,15 @@
+Source: libdata-compare-perl
+Maintainer: Jean-Francois Dive <jef at linuxbe.org>
+Priority: optional
+Section: libs
+Standards-Version: 3.5.6
+Build-Depends: debhelper (>= 3.0.5), perl (>= 5.6.0-17)
+
+Package: libdata-compare-perl
+Priority: optional
+Section: libs
+Architecture: all
+Depends: ${perl:Depends}
+Description: Compare two perl data structures recursively. 
+ Returns 0 if the structures differ, else returns 1.
+
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..ef6dee3
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,13 @@
+This package have been packaged by Jean-Francois Dive <jef at linuxbe.org>
+as libdata-compare-perl.
+The only changes are the debian packaging information.
+
+The upstream source is the CPAN perl module repository and can be
+found at http://www.cpan.org/
+
+the Data::Compare license as stated in the documentation is the following:
+"
+Copyright (c) 1999-2001 Fabien Tassin. 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..a996e2d
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,68 @@
+#!/usr/bin/make -f
+
+export DH_COMPAT := 3
+
+PERL ?= /usr/bin/perl
+
+b := $(CURDIR)/debian/libdata-compare-perl
+
+arrange: arrange-stamp
+arrange-stamp: install
+	dh_testdir
+	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_installdocs
+	dh_installexamples
+	dh_installchangelogs
+	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)
+	$(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 `find -name '*.bak'`
+
+config: config-stamp
+config-stamp:
+	dh_testdir
+	$(PERL) Makefile.PL INSTALLDIRS=vendor
+	touch config-stamp
+
+install: install-stamp
+install-stamp: build
+	dh_testdir
+	dh_installdirs
+	$(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/libdata-compare-perl.git



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