r48267 - in /trunk/libnetpacket-perl/debian: ./ changelog compat control copyright rules watch

opensides-guest at users.alioth.debian.org opensides-guest at users.alioth.debian.org
Sat Dec 5 19:07:38 UTC 2009


Author: opensides-guest
Date: Sat Dec  5 19:07:31 2009
New Revision: 48267

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

Added:
    trunk/libnetpacket-perl/debian/
    trunk/libnetpacket-perl/debian/changelog
    trunk/libnetpacket-perl/debian/compat
    trunk/libnetpacket-perl/debian/control
    trunk/libnetpacket-perl/debian/copyright
    trunk/libnetpacket-perl/debian/rules   (with props)
    trunk/libnetpacket-perl/debian/watch

Added: trunk/libnetpacket-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnetpacket-perl/debian/changelog?rev=48267&op=file
==============================================================================
--- trunk/libnetpacket-perl/debian/changelog (added)
+++ trunk/libnetpacket-perl/debian/changelog Sat Dec  5 19:07:31 2009
@@ -1,0 +1,12 @@
+libnetpacket-perl (0.41.1-1) unstable; urgency=low
+
+  * New Upstream Version (Closes: #557161)
+
+ -- Benoit Mortier <benoit.mortier at opensides.be>  Sat, 21 Nov 2009 15:18:28 +0100
+
+libnetpacket-perl (0.04-1) unstable; urgency=low
+
+  * Initial upload (Closes: #532675)
+
+ -- Cajus Pollmeier <cajus at debian.org>  Tue, 24 Jun 2009 10:11:00 +0200
+

Added: trunk/libnetpacket-perl/debian/compat
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnetpacket-perl/debian/compat?rev=48267&op=file
==============================================================================
--- trunk/libnetpacket-perl/debian/compat (added)
+++ trunk/libnetpacket-perl/debian/compat Sat Dec  5 19:07:31 2009
@@ -1,0 +1,1 @@
+5

Added: trunk/libnetpacket-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnetpacket-perl/debian/control?rev=48267&op=file
==============================================================================
--- trunk/libnetpacket-perl/debian/control (added)
+++ trunk/libnetpacket-perl/debian/control Sat Dec  5 19:07:31 2009
@@ -1,0 +1,25 @@
+Source: libnetpacket-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 5), libmodule-build-perl
+Build-Depends-Indep: perl (>= 5.6.10-12)
+Maintainer: Benoit Mortier <benoit.mortier at opensides.be>
+Standards-Version: 3.8.3
+Homepage: http://search.cpan.org/dist/NetPacket/
+
+Package: libnetpacket-perl
+Architecture: all
+Depends: ${perl:Depends}, ${misc:Depends}
+Description: Modules to assemble/disassemble network packets at the protocol level
+ NetPacket provides a base class for a cluster of modules related to
+ decoding and encoding of network protocols.  Each NetPacket
+ descendent module knows how to encode and decode packets for the
+ network protocol it implements.  Consult the documentation for the
+ module in question for protocol-specific implementation.
+ .
+ Note that there is no inheritance in the NetPacket:: cluster of
+ modules other than each protocol module being a NetPacket.  This
+ was seen to be too restrictive as imposing inheritance relationships
+ (for example between the IP, UDP and TCP protocols) would make things
+ like tunneling or other unusual situations difficult.
+ .

Added: trunk/libnetpacket-perl/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnetpacket-perl/debian/copyright?rev=48267&op=file
==============================================================================
--- trunk/libnetpacket-perl/debian/copyright (added)
+++ trunk/libnetpacket-perl/debian/copyright Sat Dec  5 19:07:31 2009
@@ -1,0 +1,25 @@
+This is the debian package for the NetPacket module.
+It was created by Benoit Mortier <benoit.mortier at opensides.be>
+
+It was downloaded from http://search.cpan.org/dist/NetPacket/
+
+The upstream author is: Tim Potter <tpot at samba.org>, Stephanie Wehner <atrak at itsx.com>, Yanick Champoux <yanick at cpan.org>.
+
+
+Copyright (c) 2001 Tim Potter.
+
+This package is free software and is provided "as is" without express 
+  or implied warranty.  It may be used, redistributed and/or modified 
+  under the terms of the Perl Artistic License (see
+  http://www.perl.com/perl/misc/Artistic.html)
+
+Copyright (c) 1995,1996,1997,1998,1999 ANU and CSIRO on behalf of 
+  the participants in the CRC for Advanced Computational Systems
+  ('ACSys').
+
+ACSys makes this software and all associated data and documentation
+  ('Software') available free of charge.  You may make copies of the 
+  Software but you must include all of this notice on any copy.
+
+The Debian packaging is Copyright (C) 2009, Benoit Mortier <benoit.mortier at opensides.be> and
+is licensed under the same terms as the software itself (see above).

Added: trunk/libnetpacket-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnetpacket-perl/debian/rules?rev=48267&op=file
==============================================================================
--- trunk/libnetpacket-perl/debian/rules (added)
+++ trunk/libnetpacket-perl/debian/rules Sat Dec  5 19:07:31 2009
@@ -1,0 +1,63 @@
+#!/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.
+#
+# It was later modified by Jason Kohles <email at jasonkohles.com>
+# http://www.jasonkohles.com/ to support Module::Build installed modules
+
+# 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
+
+PERL   ?= /usr/bin/perl
+PACKAGE = $(shell dh_listpackages)
+TMP     = $(CURDIR)/debian/$(PACKAGE)
+
+build: build-stamp
+build-stamp:
+	dh_testdir
+	# Add commands to compile the package here
+	$(PERL) Build.PL installdirs=vendor
+	$(PERL) Build
+	$(PERL) Build test
+	touch $@
+
+clean:
+	dh_testdir
+	dh_testroot
+	dh_clean build-stamp install-stamp
+	# Add commands to clean up after the build process here
+	[ ! -f Build ] || $(PERL) Build --allow_mb_mismatch 1 distclean
+
+install: install-stamp
+install-stamp: build-stamp
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+	# Add commands to install the package into $(TMP) here
+	$(PERL) Build install destdir=$(TMP) create_packlist=0
+	touch $@
+
+binary-arch:
+# We have nothing to do here for an architecture-independent package
+
+binary-indep: build install
+	dh_testdir
+	dh_testroot
+	dh_installdocs README
+	dh_installchangelogs Changes
+	dh_perl
+	dh_compress
+	dh_fixperms
+	dh_installdeb
+	dh_gencontrol
+	dh_md5sums
+	dh_builddeb
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install

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

Added: trunk/libnetpacket-perl/debian/watch
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnetpacket-perl/debian/watch?rev=48267&op=file
==============================================================================
--- trunk/libnetpacket-perl/debian/watch (added)
+++ trunk/libnetpacket-perl/debian/watch Sat Dec  5 19:07:31 2009
@@ -1,0 +1,4 @@
+# format version number, currently 3; this line is compulsory!
+version=3
+# URL to the package page followed by a regex to search
+http://search.cpan.org/dist/NetPacket/   .*/NetPacket-v?(\d[\d_.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$




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