r9123 - in /trunk/libnet-subnets-perl/debian: ./ changelog compat control copyright rules watch
emhn-guest at users.alioth.debian.org
emhn-guest at users.alioth.debian.org
Fri Nov 9 21:54:24 UTC 2007
Author: emhn-guest
Date: Fri Nov 9 21:54:24 2007
New Revision: 9123
URL: http://svn.debian.org/wsvn/?sc=1&rev=9123
Log:
[svn-inject] Applying Debian modifications to trunk
Added:
trunk/libnet-subnets-perl/debian/
trunk/libnet-subnets-perl/debian/changelog
trunk/libnet-subnets-perl/debian/compat
trunk/libnet-subnets-perl/debian/control
trunk/libnet-subnets-perl/debian/copyright
trunk/libnet-subnets-perl/debian/rules (with props)
trunk/libnet-subnets-perl/debian/watch
Added: trunk/libnet-subnets-perl/debian/changelog
URL: http://svn.debian.org/wsvn/trunk/libnet-subnets-perl/debian/changelog?rev=9123&op=file
==============================================================================
--- trunk/libnet-subnets-perl/debian/changelog (added)
+++ trunk/libnet-subnets-perl/debian/changelog Fri Nov 9 21:54:24 2007
@@ -1,0 +1,14 @@
+libnet-subnets-perl (0.21-2) unstable; urgency=low
+
+ * Moved package into Pkg Perl Project SVN.
+ * Update Standards Version.
+ * Cleanup debian/rules.
+
+ -- Ernesto Hernández-Novich (USB) <emhn at usb.ve> Fri, 09 Nov 2007 17:48:11 -0400
+
+libnet-subnets-perl (0.21-1) unstable; urgency=low
+
+ * Initial Release.
+
+ -- Ernesto Hernández-Novich <emhn at telcel.net.ve> Wed, 6 Sep 2006 15:15:05 -0400
+
Added: trunk/libnet-subnets-perl/debian/compat
URL: http://svn.debian.org/wsvn/trunk/libnet-subnets-perl/debian/compat?rev=9123&op=file
==============================================================================
--- trunk/libnet-subnets-perl/debian/compat (added)
+++ trunk/libnet-subnets-perl/debian/compat Fri Nov 9 21:54:24 2007
@@ -1,0 +1,1 @@
+5
Added: trunk/libnet-subnets-perl/debian/control
URL: http://svn.debian.org/wsvn/trunk/libnet-subnets-perl/debian/control?rev=9123&op=file
==============================================================================
--- trunk/libnet-subnets-perl/debian/control (added)
+++ trunk/libnet-subnets-perl/debian/control Fri Nov 9 21:54:24 2007
@@ -1,0 +1,21 @@
+Source: libnet-subnets-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 5.0.0)
+Build-Depends-Indep: perl (>= 5.8.0-7)
+Maintainer: Debian PkgPerl <pkg-perl at lists.alioth.debian.org>
+Uploaders: Ernesto Hernández-Novich <emhn at usb.ve>
+Homepage: http://search.cpan.org/~sri/Net-Subnets-0.21/
+Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libnet-subnets-perl/
+Vcs-Browser: http://svn.debian.org/wsvn/pkg-perl/trunk/libnet-subnets-perl/
+Standards-Version: 3.7.2
+
+Package: libnet-subnets-perl
+Architecture: all
+Depends: ${perl:Depends}, ${misc:Depends},
+Description: A Perl library for subnet calculations
+ Net::Subnets provides very fast operations for:
+ .
+ - Matching a list of IP addresses against one or more CIDR subnets.
+ .
+ - Calculation of IP address ranges.
Added: trunk/libnet-subnets-perl/debian/copyright
URL: http://svn.debian.org/wsvn/trunk/libnet-subnets-perl/debian/copyright?rev=9123&op=file
==============================================================================
--- trunk/libnet-subnets-perl/debian/copyright (added)
+++ trunk/libnet-subnets-perl/debian/copyright Fri Nov 9 21:54:24 2007
@@ -1,0 +1,23 @@
+This package was debianized by Ernesto Hernández-Novich <emhn at telcel.net.ve>
+on Wed, 06 Sep 2006 15:27:24 -0400
+
+It was downloaded from <CPAN>/authors/id/S/SR/SRI/Net-Subnets-0.21.tar.gz
+
+Upstream Authors:
+
+Sebastian Riedel <sri at cpan.org>
+Juergen Peters <juergen.peters at taulmarill.de>
+
+Copyright:
+
+Copyright (c) 2003 Sebastian Riedel & Juergen Peters. All rights reserved.
+
+This library is free software; you can redistribute it and/or modify it
+under the same terms as Perl itself.
+
+Perl is distributed under your choice of the GNU General Public License or
+the Artistic License.
+
+The complete text of the GNU General Public License can be found in
+/usr/share/common-licenses/GPL and the Artistic License can be found
+in /usr/share/common-licenses/Artistic.
Added: trunk/libnet-subnets-perl/debian/rules
URL: http://svn.debian.org/wsvn/trunk/libnet-subnets-perl/debian/rules?rev=9123&op=file
==============================================================================
--- trunk/libnet-subnets-perl/debian/rules (added)
+++ trunk/libnet-subnets-perl/debian/rules Fri Nov 9 21:54:24 2007
@@ -1,0 +1,80 @@
+#!/usr/bin/make -f
+# This debian/rules file is provided as a template for normal perl
+# packages. It was created by Marc Brockschmidt <marc at dch-faq.de> for
+# the Debian Perl Group (http://pkg-perl.alioth.debian.org/) but may
+# be used freely wherever it is useful.
+
+# 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
+
+TMP =$(CURDIR)/debian/$(PACKAGE)
+
+build: build-stamp
+build-stamp:
+ dh_testdir
+
+ # Add commands to compile the package here
+ $(PERL) Makefile.PL INSTALLDIRS=vendor
+ $(MAKE) OPTIMIZE="-Wall -O2 -g"
+
+ touch build-stamp
+
+clean:
+ dh_testdir
+ dh_testroot
+
+ # Add commands to clean up after the build process here
+ [ ! -f Makefile ] || $(MAKE) realclean
+
+ dh_clean build-stamp install-stamp
+
+install: build install-stamp
+install-stamp:
+ dh_testdir
+ dh_testroot
+ dh_clean -k
+
+ # Add commands to install the package into debian/$PACKAGE_NAME here
+ $(MAKE) test
+ $(MAKE) install DESTDIR=$(TMP) PREFIX=/usr
+
+ # As this is a architecture independent package, we are not
+ # supposed to install stuff to /usr/lib. MakeMaker creates
+ # the dirs, we delete them from the deb:
+ rmdir --ignore-fail-on-non-empty --parents $(TMP)/usr/lib/perl5
+
+ touch install-stamp
+
+binary-arch:
+# We have nothing to do by default.
+
+binary-indep: build install
+ dh_testdir
+ dh_testroot
+ dh_installdocs README
+ dh_installchangelogs Changes
+ dh_perl
+ dh_link
+ dh_strip
+ dh_compress
+ dh_fixperms
+ dh_installdeb
+ 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
Propchange: trunk/libnet-subnets-perl/debian/rules
------------------------------------------------------------------------------
svn:executable = *
Added: trunk/libnet-subnets-perl/debian/watch
URL: http://svn.debian.org/wsvn/trunk/libnet-subnets-perl/debian/watch?rev=9123&op=file
==============================================================================
--- trunk/libnet-subnets-perl/debian/watch (added)
+++ trunk/libnet-subnets-perl/debian/watch Fri Nov 9 21:54:24 2007
@@ -1,0 +1,3 @@
+# format version number, currently 2; this line is compulsory!
+version=2
+http://www.cpan.org/modules/by-module/Net/Net-Subnets-(.*).(tar.gz|tar|tgz)
More information about the Pkg-perl-cvs-commits
mailing list