r21207 - in /trunk/libdata-sorting-perl/debian: ./ changelog compat control copyright docs rules

gregoa at users.alioth.debian.org gregoa at users.alioth.debian.org
Sun Jun 15 13:32:22 UTC 2008


Author: gregoa
Date: Sun Jun 15 13:32:21 2008
New Revision: 21207

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=21207
Log:
[svn-inject] Applying Debian modifications to trunk

Added:
    trunk/libdata-sorting-perl/debian/
    trunk/libdata-sorting-perl/debian/changelog
    trunk/libdata-sorting-perl/debian/compat
    trunk/libdata-sorting-perl/debian/control
    trunk/libdata-sorting-perl/debian/copyright
    trunk/libdata-sorting-perl/debian/docs
    trunk/libdata-sorting-perl/debian/rules   (with props)

Added: trunk/libdata-sorting-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdata-sorting-perl/debian/changelog?rev=21207&op=file
==============================================================================
--- trunk/libdata-sorting-perl/debian/changelog (added)
+++ trunk/libdata-sorting-perl/debian/changelog Sun Jun 15 13:32:21 2008
@@ -1,0 +1,12 @@
+libdata-sorting-perl (0.9-2) unstable; urgency=low
+
+  * Added missing build dependency to perl in debian/control.
+
+ -- Florian Ragwitz <florian at mookooh.org>  Sun,  2 May 2004 17:58:40 +0200
+
+libdata-sorting-perl (0.9-1) unstable; urgency=low
+
+  * Initial Release (Closes: #211337).
+
+ -- Florian Ragwitz <florian at mookooh.org>  Thu, 22 Apr 2004 16:52:44 +0200
+

Added: trunk/libdata-sorting-perl/debian/compat
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdata-sorting-perl/debian/compat?rev=21207&op=file
==============================================================================
--- trunk/libdata-sorting-perl/debian/compat (added)
+++ trunk/libdata-sorting-perl/debian/compat Sun Jun 15 13:32:21 2008
@@ -1,0 +1,1 @@
+4

Added: trunk/libdata-sorting-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdata-sorting-perl/debian/control?rev=21207&op=file
==============================================================================
--- trunk/libdata-sorting-perl/debian/control (added)
+++ trunk/libdata-sorting-perl/debian/control Sun Jun 15 13:32:21 2008
@@ -1,0 +1,24 @@
+Source: libdata-sorting-perl
+Section: perl
+Priority: optional
+Maintainer: Florian Ragwitz <florian at mookooh.org>
+Build-Depends: debhelper (>= 4.0.0)
+Build-Depends-Indep: perl (>= 5.6.0-16)
+Standards-Version: 3.6.1
+
+Package: libdata-sorting-perl
+Architecture: all
+Depends: ${perl:Depends}
+Description: Perl module for multi-key sort using function results
+ Data::Sorting provides functions to sort the contents of arrays based
+ on a collection of extraction and comparison rules. Extraction rules
+ are  used to identify the attributes of array elements on which the
+ ordering  is based; comparison rules specify how those values should be
+ ordered.
+ .
+ Index strings may be used to retrieve values from array elements, or
+ function references may be passed in to call on each element.
+ Comparison rules are provided for numeric, bytewise, and
+ case-insensitive orders, as well as a 'natural' comparison that places
+ numbers first, in numeric order, followed by the remaining items in
+ case-insensitive textual order.

Added: trunk/libdata-sorting-perl/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdata-sorting-perl/debian/copyright?rev=21207&op=file
==============================================================================
--- trunk/libdata-sorting-perl/debian/copyright (added)
+++ trunk/libdata-sorting-perl/debian/copyright Sun Jun 15 13:32:21 2008
@@ -1,0 +1,21 @@
+This package was debianized by Florian Ragwitz <florian at mookooh.org> on
+Thu, 22 Apr 2004 16:52:44 +0200.
+
+It was downloaded from:
+ http://search.cpan.org/~evo/Data-Sorting/
+
+Upstream Author:
+ Matthew Simon Cavalletto <simonm at cavalletto.org>
+
+Copyright: dual licensed (GNU/GPL, Artistic)
+
+ Copyright 2003 Matthew Cavalletto.
+
+ Portions copyright 1996, 1997, 1998, 1999 Evolution Online Systems,Inc.
+
+ This library is free software; You may use, modify, and distribute this
+ software under the same terms as Perl. 
+   
+ On Debian GNU/Linux systems, the complete text of the GNU General
+ Public License can be found in `/usr/share/common-licenses/GPL' and
+ the Artistic Licence in `/usr/share/common-licenses/Artistic'.

Added: trunk/libdata-sorting-perl/debian/docs
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdata-sorting-perl/debian/docs?rev=21207&op=file
==============================================================================
--- trunk/libdata-sorting-perl/debian/docs (added)
+++ trunk/libdata-sorting-perl/debian/docs Sun Jun 15 13:32:21 2008
@@ -1,0 +1,1 @@
+README

Added: trunk/libdata-sorting-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdata-sorting-perl/debian/rules?rev=21207&op=file
==============================================================================
--- trunk/libdata-sorting-perl/debian/rules (added)
+++ trunk/libdata-sorting-perl/debian/rules Sun Jun 15 13:32:21 2008
@@ -1,0 +1,66 @@
+#!/usr/bin/make -f
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+ifndef PERL
+PERL = /usr/bin/perl
+endif
+
+PACKAGE = $(shell dh_listpackages)
+DESTDIR = `pwd`/debian/$(PACKAGE)
+
+build: build-stamp
+
+build-stamp:
+	dh_testdir
+
+	# Add here commands to compile the package.
+	$(PERL) Makefile.PL INSTALLDIRS=vendor
+	$(MAKE)
+	$(MAKE) test
+
+	touch build-stamp
+
+clean:
+	dh_testdir
+	dh_testroot
+	rm -f build-stamp
+
+	# Add here commands to clean up after the build process.
+	-$(MAKE) realclean
+
+	dh_clean 
+
+install: build
+	dh_testdir
+	dh_testroot
+	dh_clean -k 
+	dh_installdirs
+
+	# Add here commands to install ithe package into debian/libdata-sorting-perl.
+	$(MAKE) install DESTDIR=$(DESTDIR)
+
+
+# Build architecture-independent files here.
+binary-arch: build install
+# We have nothing to do by default.
+
+# Build architecture-dependent files here.
+binary-indep: build install
+	dh_testdir
+	dh_testroot
+	dh_installchangelogs CHANGES
+	dh_installdocs
+	dh_installman
+	dh_link
+	dh_strip
+	dh_compress
+	dh_fixperms
+	dh_perl
+	dh_installdeb
+	dh_gencontrol
+	dh_md5sums
+	dh_builddeb
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary

Propchange: trunk/libdata-sorting-perl/debian/rules
------------------------------------------------------------------------------
    svn:executable = *




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