r2411 - in packages/libnet-cidr-lite-perl/trunk: . debian

Niko Tyni ntyni-guest at costa.debian.org
Fri Mar 17 22:17:47 UTC 2006


Author: ntyni-guest
Date: 2006-03-17 22:17:45 +0000 (Fri, 17 Mar 2006)
New Revision: 2411

Added:
   packages/libnet-cidr-lite-perl/trunk/debian/
   packages/libnet-cidr-lite-perl/trunk/debian/changelog
   packages/libnet-cidr-lite-perl/trunk/debian/compat
   packages/libnet-cidr-lite-perl/trunk/debian/control
   packages/libnet-cidr-lite-perl/trunk/debian/copyright
   packages/libnet-cidr-lite-perl/trunk/debian/rules
Log:
Load libnet-cidr-lite-perl-0.15 into
packages/libnet-cidr-lite-perl/trunk.


Added: packages/libnet-cidr-lite-perl/trunk/debian/changelog
===================================================================
--- packages/libnet-cidr-lite-perl/trunk/debian/changelog	2006-03-17 22:17:29 UTC (rev 2410)
+++ packages/libnet-cidr-lite-perl/trunk/debian/changelog	2006-03-17 22:17:45 UTC (rev 2411)
@@ -0,0 +1,6 @@
+libnet-cidr-lite-perl (0.15-1) unstable; urgency=low
+
+  * Initial Release.
+
+ -- Chip Salzenberg <chip at debian.org>  Wed,  4 Feb 2004 11:53:44 -0500
+

Added: packages/libnet-cidr-lite-perl/trunk/debian/compat
===================================================================
--- packages/libnet-cidr-lite-perl/trunk/debian/compat	2006-03-17 22:17:29 UTC (rev 2410)
+++ packages/libnet-cidr-lite-perl/trunk/debian/compat	2006-03-17 22:17:45 UTC (rev 2411)
@@ -0,0 +1 @@
+4

Added: packages/libnet-cidr-lite-perl/trunk/debian/control
===================================================================
--- packages/libnet-cidr-lite-perl/trunk/debian/control	2006-03-17 22:17:29 UTC (rev 2410)
+++ packages/libnet-cidr-lite-perl/trunk/debian/control	2006-03-17 22:17:45 UTC (rev 2411)
@@ -0,0 +1,14 @@
+Source: libnet-cidr-lite-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 4.0.2)
+Build-Depends-Indep: perl (>= 5.8.0-7)
+Maintainer: Chip Salzenberg <chip at debian.org>
+Standards-Version: 3.6.1
+
+Package: libnet-cidr-lite-perl
+Architecture: all
+Depends: ${perl:Depends}, ${misc:Depends}
+Description:  Merge IPv4 or IPv6 CIDR address ranges
+ Faster alternative to Net::CIDR when merging a large number
+ of CIDR address ranges.  Works for IPv4 and IPv6 addresses.

Added: packages/libnet-cidr-lite-perl/trunk/debian/copyright
===================================================================
--- packages/libnet-cidr-lite-perl/trunk/debian/copyright	2006-03-17 22:17:29 UTC (rev 2410)
+++ packages/libnet-cidr-lite-perl/trunk/debian/copyright	2006-03-17 22:17:45 UTC (rev 2411)
@@ -0,0 +1,13 @@
+Chip Salzenberg <chip at debian.org> created this Debian package using
+original module sources, as found on the Comprehensive Perl Archive
+Network (CPAN) <URL:http://cpan.org/>.  The Debian Perl packaging tool
+"dh-make-perl" was of great help.
+
+The upstream author is Douglas Wilson <dougw at cpan.org>, w/numerous
+hints and ideas borrowed from Tye McQueen.
+
+libnet-cidr-lite-perl may be redistributed under your choice of the
+GNU General Public License or the Artistic License.  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: packages/libnet-cidr-lite-perl/trunk/debian/rules
===================================================================
--- packages/libnet-cidr-lite-perl/trunk/debian/rules	2006-03-17 22:17:29 UTC (rev 2410)
+++ packages/libnet-cidr-lite-perl/trunk/debian/rules	2006-03-17 22:17:45 UTC (rev 2411)
@@ -0,0 +1,89 @@
+#!/usr/bin/make -f
+#-*- makefile -*-
+# Made with the aid of dh_make, by Craig Small
+# Sample debian/rules that uses debhelper. GNU copyright 1997 by Joey Hess.
+# Some lines taken from debmake, by Christoph Lameter.
+
+# 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
+
+ifndef DESTDIR
+DESTDIR=..
+endif
+TMP     =`pwd`/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.
+	-$(MAKE) realclean
+
+	dh_clean
+
+install: 
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+	dh_installdirs
+
+	# Add here commands to install the package into debian/tmp.
+	#$(MAKE) install DESTDIR=`pwd`/debian/tmp
+	$(MAKE) install PREFIX=$(TMP)/usr
+
+
+# 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_installexamples
+	dh_installmenu
+#	dh_installemacsen
+#	dh_installinit
+	dh_installcron
+	dh_installman
+	dh_installchangelogs Changes
+	dh_link
+	dh_strip
+	dh_compress
+	dh_fixperms
+#	dh_makeshlibs
+	dh_installdeb
+	dh_perl 
+	dh_shlibdeps
+	dh_gencontrol
+	dh_md5sums
+	dh_builddeb --destdir=$(DESTDIR)
+
+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


Property changes on: packages/libnet-cidr-lite-perl/trunk/debian/rules
___________________________________________________________________
Name: svn:executable
   + *




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