r50662 - in /trunk/libnet-packet-perl/debian: ./ changelog compat control copyright libnet-packet-perl.docs rules watch

jawnsy-guest at users.alioth.debian.org jawnsy-guest at users.alioth.debian.org
Sun Jan 10 18:19:09 UTC 2010


Author: jawnsy-guest
Date: Sun Jan 10 18:19:02 2010
New Revision: 50662

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

Added:
    trunk/libnet-packet-perl/debian/
    trunk/libnet-packet-perl/debian/changelog
    trunk/libnet-packet-perl/debian/compat
    trunk/libnet-packet-perl/debian/control
    trunk/libnet-packet-perl/debian/copyright
    trunk/libnet-packet-perl/debian/libnet-packet-perl.docs
    trunk/libnet-packet-perl/debian/rules   (with props)
    trunk/libnet-packet-perl/debian/watch

Added: trunk/libnet-packet-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnet-packet-perl/debian/changelog?rev=50662&op=file
==============================================================================
--- trunk/libnet-packet-perl/debian/changelog (added)
+++ trunk/libnet-packet-perl/debian/changelog Sun Jan 10 18:19:02 2010
@@ -1,0 +1,5 @@
+libnet-packet-perl (3.27-1) UNRELEASED; urgency=low
+
+  * Initial Release. (Closes: #533293)
+
+ -- Jonathan Yu <jawnsy at cpan.org>  Sun, 10 Jan 2010 13:19:55 -0500

Added: trunk/libnet-packet-perl/debian/compat
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnet-packet-perl/debian/compat?rev=50662&op=file
==============================================================================
--- trunk/libnet-packet-perl/debian/compat (added)
+++ trunk/libnet-packet-perl/debian/compat Sun Jan 10 18:19:02 2010
@@ -1,0 +1,1 @@
+7

Added: trunk/libnet-packet-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnet-packet-perl/debian/control?rev=50662&op=file
==============================================================================
--- trunk/libnet-packet-perl/debian/control (added)
+++ trunk/libnet-packet-perl/debian/control Sun Jan 10 18:19:02 2010
@@ -1,0 +1,40 @@
+Source: libnet-packet-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 7)
+Build-Depends-Indep: perl, libnet-pcap-perl (>= 0.12),
+  libclass-gomor-perl (>= 1.00), libnetwork-ipv4addr-perl,
+  libbit-vector-perl, libnet-ipv6addr-perl, libsocket6-perl,
+  libnet-write-perl (>= 1.00), libnet-libdnet-perl
+Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
+Uploaders: Jonathan Yu <jawnsy at cpan.org>
+Standards-Version: 3.8.3
+Homepage: http://search.cpan.org/dist/Net-Packet/
+Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libnet-packet-perl/
+Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libnet-packet-perl/
+
+Package: libnet-packet-perl
+Architecture: all
+Depends: ${perl:Depends}, ${misc:Depends}, libnet-pcap-perl (>= 0.12),
+  libclass-gomor-perl (>= 1.00), libnetwork-ipv4addr-perl,
+  libbit-vector-perl, libnet-ipv6addr-perl, libsocket6-perl,
+  libnet-write-perl (>= 1.00), libnet-libdnet-perl
+Description: a framework to easily send and receive frames from layer 2 to layer 7
+ Net::Packet is a unified framework to craft, send and receive packets at
+ layers 2, 3, 4 and 7.
+ .
+ Basically, you forge each layer of a frame (Net::Packet::IPv4 for layer 3,
+ Net::Packet::TCP for layer 4; for example), and pack all of this into a
+ Net::Packet::Frame object. Then, you can send the frame to the network, and
+ receive its response easily, because the response is automatically searched
+ for and matched against the request (not implemented for all layers).
+ .
+ If you want some layer 2, 3 or 4 protocol encoding/decoding to be added, just
+ ask, and give a corresponding .pcap file ;). You can also subscribe to
+ netpacket-users at gomor.org by sumply sending an e-mail requesting for it.
+ .
+ You should study various pod found in all classes, example files found in
+ examples directory that come with this tarball, and also tests in t
+ directory.
+ .
+ This description was automagically extracted from the module by dh-make-perl.

Added: trunk/libnet-packet-perl/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnet-packet-perl/debian/copyright?rev=50662&op=file
==============================================================================
--- trunk/libnet-packet-perl/debian/copyright (added)
+++ trunk/libnet-packet-perl/debian/copyright Sun Jan 10 18:19:02 2010
@@ -1,0 +1,36 @@
+Format-Specification: http://svn.debian.org/wsvn/dep/web/deps/dep5.mdwn?op=file&rev=59
+Maintainer: GomoR <gomor-cpan_at_gomor.org>
+Source: http://search.cpan.org/dist/Net-Packet/
+Name: Net-Packet
+Disclaimer: This copyright info was automatically extracted 
+ from the perl module. It may not be accurate, so you better 
+ check the module sources in order to ensure the module for its 
+ inclusion in Debian or for general legal information. Please, 
+ if licensing information is incorrectly generated, file a bug 
+ on dh-make-perl.
+ NOTE: Don't forget to remove this disclaimer once you are happy
+ with this file.
+
+Files: *
+Copyright: GomoR <gomor-cpan_at_gomor.org>
+License: Artistic
+
+Files: debian/*
+Copyright: 2010, Jonathan Yu <jawnsy at cpan.org>
+License: GPL-1+ or Artistic
+
+License: GPL-1+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 1, or (at your option)
+ any later version.
+ .
+ On Debian GNU/Linux systems, the complete text of the GNU General
+ Public License can be found in `/usr/share/common-licenses/GPL'
+
+License: Artistic
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the Artistic License, which comes with Perl.
+ .
+ On Debian GNU/Linux systems, the complete text of the Artistic License
+ can be found in `/usr/share/common-licenses/Artistic'

Added: trunk/libnet-packet-perl/debian/libnet-packet-perl.docs
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnet-packet-perl/debian/libnet-packet-perl.docs?rev=50662&op=file
==============================================================================
--- trunk/libnet-packet-perl/debian/libnet-packet-perl.docs (added)
+++ trunk/libnet-packet-perl/debian/libnet-packet-perl.docs Sun Jan 10 18:19:02 2010
@@ -1,0 +1,1 @@
+README

Added: trunk/libnet-packet-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnet-packet-perl/debian/rules?rev=50662&op=file
==============================================================================
--- trunk/libnet-packet-perl/debian/rules (added)
+++ trunk/libnet-packet-perl/debian/rules Sun Jan 10 18:19:02 2010
@@ -1,0 +1,4 @@
+#!/usr/bin/make -f
+
+%:
+	dh $@

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

Added: trunk/libnet-packet-perl/debian/watch
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnet-packet-perl/debian/watch?rev=50662&op=file
==============================================================================
--- trunk/libnet-packet-perl/debian/watch (added)
+++ trunk/libnet-packet-perl/debian/watch Sun Jan 10 18:19:02 2010
@@ -1,0 +1,2 @@
+version=3
+http://search.cpan.org/dist/Net-Packet/   .*/Net-Packet-v?(\d[\d.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$




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