[CVS] OpenPKG: openpkg-src/perl-net/ perl-net.patch perl-net.spec

2009-10-11 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  r...@openpkg.org
  Module: openpkg-src  Date:   11-Oct-2009 10:45:03
  Branch: HEAD Handle: 2009101109450100

  Modified files:
openpkg-src/perl-netperl-net.patch perl-net.spec

  Log:
add SSL transport support to Net::Stomp for STOMP-over-SSL
communication

  Summary:
RevisionChanges Path
1.35+47 -8  openpkg-src/perl-net/perl-net.patch
1.197   +1  -1  openpkg-src/perl-net/perl-net.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/perl-net/perl-net.patch
  
  $ cvs diff -u -r1.34 -r1.35 perl-net.patch
  --- openpkg-src/perl-net/perl-net.patch   6 May 2009 06:30:21 -   
1.34
  +++ openpkg-src/perl-net/perl-net.patch   11 Oct 2009 08:45:01 -  
1.35
  @@ -1,6 +1,6 @@
   Index: Net-Packet-3.26/Makefile.PL
   Net-Packet-3.26/Makefile.PL.orig 2006-12-16 16:26:26 +0100
  -+++ Net-Packet-3.26/Makefile.PL  2008-01-01 22:05:18 +0100
  +--- Net-Packet-3.26/Makefile.PL.orig 2008-04-19 18:41:49 +0200
   Net-Packet-3.26/Makefile.PL  2009-10-11 10:33:36 +0200
   @@ -14,7 +14,6 @@
  Net::Libdnet  = 0,
  Time::HiRes   = 0,
  @@ -10,8 +10,8 @@
   },
   ABSTRACT_FROM = 'lib/Net/Packet.pm',
   Index: Net-Patricia-1.15/libpatricia/patricia.c
   Net-Patricia-1.15/libpatricia/patricia.c.orig2005-12-07 21:55:39 
+0100
  -+++ Net-Patricia-1.15/libpatricia/patricia.c 2008-01-01 22:05:18 +0100
  +--- Net-Patricia-1.15/libpatricia/patricia.c.orig2009-04-19 06:28:15 
+0200
   Net-Patricia-1.15/libpatricia/patricia.c 2009-10-11 10:33:36 +0200
   @@ -38,24 +38,24 @@
/* prefix_tochar
 * convert prefix information to bytes
  @@ -120,8 +120,8 @@

assert (patricia);
   Index: Net-Patricia-1.15/libpatricia/patricia.h
   Net-Patricia-1.15/libpatricia/patricia.h.orig2005-12-07 21:54:52 
+0100
  -+++ Net-Patricia-1.15/libpatricia/patricia.h 2008-01-01 22:05:18 +0100
  +--- Net-Patricia-1.15/libpatricia/patricia.h.orig2009-04-19 06:28:15 
+0200
   Net-Patricia-1.15/libpatricia/patricia.h 2009-10-11 10:33:36 +0200
   @@ -15,10 +15,10 @@
#ifndef _PATRICIA_H
#define _PATRICIA_H
  @@ -175,7 +175,7 @@

   Index: Net-Pcap-0.16/Makefile.PL
   --- Net-Pcap-0.16/Makefile.PL.orig   2007-12-24 00:06:15 +0100
  -+++ Net-Pcap-0.16/Makefile.PL2008-01-01 22:08:20 +0100
   Net-Pcap-0.16/Makefile.PL2009-10-11 10:33:36 +0200
   @@ -23,7 +23,8 @@
}
else {
  @@ -188,7 +188,7 @@
for my $arg (@ARGV) {
   Index: Net-Pcap-0.16/Pcap.xs
   --- Net-Pcap-0.16/Pcap.xs.orig   2008-01-01 05:22:22 +0100
  -+++ Net-Pcap-0.16/Pcap.xs2008-01-01 22:05:18 +0100
   Net-Pcap-0.16/Pcap.xs2009-10-11 10:33:36 +0200
   @@ -33,7 +33,7 @@
#define NEED_sv_2pv_nolen 1
#include ppport.h
  @@ -198,3 +198,42 @@

#ifdef _CYGWIN
#include Win32-Extensions.h
  +Index: Net-Stomp-0.34/lib/Net/Stomp.pm
  +--- Net-Stomp-0.34/lib/Net/Stomp.pm.orig 2008-06-27 10:31:46 +0200
   Net-Stomp-0.34/lib/Net/Stomp.pm  2009-10-11 10:42:05 +0200
  +@@ -11,11 +11,21 @@
  + sub new {
  + my $class  = shift;
  + my $self   = $class-SUPER::new(@_);
  +-my $socket = IO::Socket::INET-new(
  ++my $socket;
  ++my %sockopts = (
  + PeerAddr = $self-hostname,
  + PeerPort = $self-port,
  + Proto= 'tcp'
  + );
  ++if ($self-ssl) {
  ++eval { use use IO::Socket::SSL; };
  ++die SSL transport required IO::Socket::SSL if ($@);
  ++%sockopts = (%sockopts, %{$self-ssl});
  ++$socket = IO::Socket::SSL-new(%sockopts);
  ++}
  ++else {
  ++$socket = IO::Socket::INET-new(%sockopts);
  ++}
  + die Error connecting to  . $self-hostname . ':' . $self-port . : 
$!
  + unless $socket;
  + binmode($socket);
  +@@ -169,6 +179,12 @@
  + 
  +   my $stomp = Net::Stomp-new( { hostname = 'localhost', port = '61613' } 
);
  + 
  ++If you want to use SSL transport, pass in a hash named ssl with optional 
extra 
  ++options for the IO::Socket::SSL constructor (see its documentation for all 
possible options).
  ++
  ++  my $stomp = Net::Stomp-new( { hostname = 'localhost', port = '61612',
  ++   ssl = { SSL_cipher_list = 'ALL:!EXPORT' } 
} );
  ++
  + =head2 connect
  + 
  + This connects to the Stomp server. You must pass in a login and
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/perl-net/perl-net.spec
  
  $ cvs diff -u 

[CVS] OpenPKG: openpkg-src/perl-net/ perl-net.patch perl-net.spec

2009-04-11 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  r...@openpkg.org
  Module: openpkg-src  Date:   11-Apr-2009 11:07:52
  Branch: HEAD Handle: 2009041110075200

  Modified files:
openpkg-src/perl-netperl-net.patch perl-net.spec

  Log:
modifying package: perl-net-5.10.0 20090123 - 20090411

  Summary:
RevisionChanges Path
1.33+6  -6  openpkg-src/perl-net/perl-net.patch
1.181   +2  -2  openpkg-src/perl-net/perl-net.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/perl-net/perl-net.patch
  
  $ cvs diff -u -r1.32 -r1.33 perl-net.patch
  --- openpkg-src/perl-net/perl-net.patch   20 Apr 2008 08:09:07 -  
1.32
  +++ openpkg-src/perl-net/perl-net.patch   11 Apr 2009 09:07:52 -  
1.33
  @@ -9,9 +9,9 @@
  Bit::Vector   = 0,
   },
   ABSTRACT_FROM = 'lib/Net/Packet.pm',
  -Index: Net-Patricia-1.014/libpatricia/patricia.c
   Net-Patricia-1.014/libpatricia/patricia.c.orig   2005-12-07 21:55:39 
+0100
  -+++ Net-Patricia-1.014/libpatricia/patricia.c2008-01-01 22:05:18 
+0100
  +Index: Net-Patricia-1.14.52/libpatricia/patricia.c
  +--- Net-Patricia-1.14.52/libpatricia/patricia.c.orig 2005-12-07 21:55:39 
+0100
   Net-Patricia-1.14.52/libpatricia/patricia.c  2008-01-01 22:05:18 
+0100
   @@ -38,24 +38,24 @@
/* prefix_tochar
 * convert prefix information to bytes
  @@ -119,9 +119,9 @@
int i, j, r;

assert (patricia);
  -Index: Net-Patricia-1.014/libpatricia/patricia.h
   Net-Patricia-1.014/libpatricia/patricia.h.orig   2005-12-07 21:54:52 
+0100
  -+++ Net-Patricia-1.014/libpatricia/patricia.h2008-01-01 22:05:18 
+0100
  +Index: Net-Patricia-1.14.52/libpatricia/patricia.h
  +--- Net-Patricia-1.14.52/libpatricia/patricia.h.orig 2005-12-07 21:54:52 
+0100
   Net-Patricia-1.14.52/libpatricia/patricia.h  2008-01-01 22:05:18 
+0100
   @@ -15,10 +15,10 @@
#ifndef _PATRICIA_H
#define _PATRICIA_H
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/perl-net/perl-net.spec
  
  $ cvs diff -u -r1.180 -r1.181 perl-net.spec
  --- openpkg-src/perl-net/perl-net.spec23 Jan 2009 19:43:58 -  
1.180
  +++ openpkg-src/perl-net/perl-net.spec11 Apr 2009 09:07:52 -  
1.181
  @@ -46,7 +46,7 @@
   %define   V_net_packet3.26
   %define   V_net_xmpp  1.02
   %define   V_net_jabber2.0
  -%define   V_net_patricia  1.014
  +%define   V_net_patricia  1.14.52
   %define   V_net_irc   0.75
   %define   V_ip_country2.26
   %define   V_io_socket_multicast   1.05
  @@ -65,7 +65,7 @@
   Group:Perl
   License:  GPL/Artistic
   Version:  %{V_perl}
  -Release:  20090123
  +Release:  20090411
   
   #   package options
   %option   with_pcap   no
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


[CVS] OpenPKG: openpkg-src/perl-net/ perl-net.patch perl-net.spec

2008-04-20 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-src  Date:   20-Apr-2008 10:09:07
  Branch: HEAD Handle: 2008042009090700

  Modified files:
openpkg-src/perl-netperl-net.patch perl-net.spec

  Log:
modifying package: perl-net-5.10.0 20080305 - 20080420

  Summary:
RevisionChanges Path
1.32+3  -3  openpkg-src/perl-net/perl-net.patch
1.176   +2  -2  openpkg-src/perl-net/perl-net.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/perl-net/perl-net.patch
  
  $ cvs diff -u -r1.31 -r1.32 perl-net.patch
  --- openpkg-src/perl-net/perl-net.patch   1 Jan 2008 21:16:21 -   
1.31
  +++ openpkg-src/perl-net/perl-net.patch   20 Apr 2008 08:09:07 -  
1.32
  @@ -1,6 +1,6 @@
  -Index: Net-Packet-3.25/Makefile.PL
   Net-Packet-3.25/Makefile.PL.orig 2006-12-16 16:26:26 +0100
  -+++ Net-Packet-3.25/Makefile.PL  2008-01-01 22:05:18 +0100
  +Index: Net-Packet-3.26/Makefile.PL
  +--- Net-Packet-3.26/Makefile.PL.orig 2006-12-16 16:26:26 +0100
   Net-Packet-3.26/Makefile.PL  2008-01-01 22:05:18 +0100
   @@ -14,7 +14,6 @@
  Net::Libdnet  = 0,
  Time::HiRes   = 0,
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/perl-net/perl-net.spec
  
  $ cvs diff -u -r1.175 -r1.176 perl-net.spec
  --- openpkg-src/perl-net/perl-net.spec5 Mar 2008 16:53:51 -   
1.175
  +++ openpkg-src/perl-net/perl-net.spec20 Apr 2008 08:09:07 -  
1.176
  @@ -43,7 +43,7 @@
   %define   V_net_radius1.56
   %define   V_net_ip1.25
   %define   V_class_gomor   1.01
  -%define   V_net_packet3.25
  +%define   V_net_packet3.26
   %define   V_net_xmpp  1.02
   %define   V_net_jabber2.0
   %define   V_net_patricia  1.014
  @@ -65,7 +65,7 @@
   Group:Perl
   License:  GPL/Artistic
   Version:  %{V_perl}
  -Release:  20080305
  +Release:  20080420
   
   #   package options
   %option   with_pcap   no
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


[CVS] OpenPKG: openpkg-src/perl-net/ perl-net.patch perl-net.spec

2008-01-01 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-src  Date:   01-Jan-2008 22:16:23
  Branch: HEAD Handle: 2008010121162100

  Modified files:
openpkg-src/perl-netperl-net.patch perl-net.spec

  Log:
modifying package: perl-net-5.10.0 20080101 again

  Summary:
RevisionChanges Path
1.31+15 -15 openpkg-src/perl-net/perl-net.patch
1.173   +1  -1  openpkg-src/perl-net/perl-net.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/perl-net/perl-net.patch
  
  $ cvs diff -u -r1.30 -r1.31 perl-net.patch
  --- openpkg-src/perl-net/perl-net.patch   3 Dec 2007 06:48:28 -   
1.30
  +++ openpkg-src/perl-net/perl-net.patch   1 Jan 2008 21:16:21 -   
1.31
  @@ -1,6 +1,6 @@
   Index: Net-Packet-3.25/Makefile.PL
   --- Net-Packet-3.25/Makefile.PL.orig 2006-12-16 16:26:26 +0100
  -+++ Net-Packet-3.25/Makefile.PL  2006-12-17 10:23:45 +0100
   Net-Packet-3.25/Makefile.PL  2008-01-01 22:05:18 +0100
   @@ -14,7 +14,6 @@
  Net::Libdnet  = 0,
  Time::HiRes   = 0,
  @@ -11,7 +11,7 @@
   ABSTRACT_FROM = 'lib/Net/Packet.pm',
   Index: Net-Patricia-1.014/libpatricia/patricia.c
   --- Net-Patricia-1.014/libpatricia/patricia.c.orig   2005-12-07 21:55:39 
+0100
  -+++ Net-Patricia-1.014/libpatricia/patricia.c2006-12-17 10:23:09 
+0100
   Net-Patricia-1.014/libpatricia/patricia.c2008-01-01 22:05:18 
+0100
   @@ -38,24 +38,24 @@
/* prefix_tochar
 * convert prefix information to bytes
  @@ -121,7 +121,7 @@
assert (patricia);
   Index: Net-Patricia-1.014/libpatricia/patricia.h
   --- Net-Patricia-1.014/libpatricia/patricia.h.orig   2005-12-07 21:54:52 
+0100
  -+++ Net-Patricia-1.014/libpatricia/patricia.h2006-12-17 10:23:09 
+0100
   Net-Patricia-1.014/libpatricia/patricia.h2008-01-01 22:05:18 
+0100
   @@ -15,10 +15,10 @@
#ifndef _PATRICIA_H
#define _PATRICIA_H
  @@ -173,22 +173,22 @@
   int num_active_node; /* for debug purpose */
} patricia_tree_t;

  -Index: Net-Pcap-0.15/Makefile.PL
   Net-Pcap-0.15/Makefile.PL.orig   2006-08-30 18:38:04 +0200
  -+++ Net-Pcap-0.15/Makefile.PL2006-12-17 10:23:09 +0100
  -@@ -22,7 +22,8 @@
  - 
  - } else {
  - $options{CCFLAGS} = '-Wall' if $Config{cc} eq 'gcc' and $] = 5.006;
  +Index: Net-Pcap-0.16/Makefile.PL
  +--- Net-Pcap-0.16/Makefile.PL.orig   2007-12-24 00:06:15 +0100
   Net-Pcap-0.16/Makefile.PL2008-01-01 22:08:20 +0100
  +@@ -23,7 +23,8 @@
  + }
  + else {
  + $options{CCFLAGS} = '-Wall -Wwrite-strings' if $Config{ccname} eq 'gcc' 
and $] = 5.006;
   -$options{LIBS}= '-lpcap';
  -+$options{INC} = '-I/openpkg-dev/include';
  -+$options{LIBS}= '-L/openpkg-dev/lib -lpcap';
  ++$options{INC} = '[EMAIL PROTECTED]@/include';
  ++$options{LIBS}= '[EMAIL PROTECTED]@/lib -lpcap';
}

for my $arg (@ARGV) {
  -Index: Net-Pcap-0.15/Pcap.xs
   Net-Pcap-0.15/Pcap.xs.orig   2006-03-14 20:58:53 +0100
  -+++ Net-Pcap-0.15/Pcap.xs2006-12-17 10:23:09 +0100
  +Index: Net-Pcap-0.16/Pcap.xs
  +--- Net-Pcap-0.16/Pcap.xs.orig   2008-01-01 05:22:22 +0100
   Net-Pcap-0.16/Pcap.xs2008-01-01 22:05:18 +0100
   @@ -33,7 +33,7 @@
#define NEED_sv_2pv_nolen 1
#include ppport.h
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/perl-net/perl-net.spec
  
  $ cvs diff -u -r1.172 -r1.173 perl-net.spec
  --- openpkg-src/perl-net/perl-net.spec1 Jan 2008 15:02:07 -   
1.172
  +++ openpkg-src/perl-net/perl-net.spec1 Jan 2008 21:16:21 -   
1.173
  @@ -39,7 +39,7 @@
   %define   V_plrpc 0.2020
   %define   V_net_imap_simple   1.14
   %define   V_net_bgp   0.09
  -%define   V_net_pcap  0.15
  +%define   V_net_pcap  0.16
   %define   V_net_radius1.56
   %define   V_net_ip1.25
   %define   V_class_gomor   1.01
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


[CVS] OpenPKG: openpkg-src/perl-net/ perl-net.patch perl-net.spec

2007-12-02 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-src  Date:   03-Dec-2007 07:48:29
  Branch: HEAD Handle: 2007120306482800

  Modified files:
openpkg-src/perl-netperl-net.patch perl-net.spec

  Log:
modifying package: perl-net-5.8.8 20071109 - 20071203

  Summary:
RevisionChanges Path
1.30+6  -6  openpkg-src/perl-net/perl-net.patch
1.170   +2  -2  openpkg-src/perl-net/perl-net.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/perl-net/perl-net.patch
  
  $ cvs diff -u -r1.29 -r1.30 perl-net.patch
  --- openpkg-src/perl-net/perl-net.patch   10 Jul 2007 19:10:38 -  
1.29
  +++ openpkg-src/perl-net/perl-net.patch   3 Dec 2007 06:48:28 -   
1.30
  @@ -173,9 +173,9 @@
   int num_active_node; /* for debug purpose */
} patricia_tree_t;

  -Index: Net-Pcap-0.14/Makefile.PL
   Net-Pcap-0.14/Makefile.PL.orig   2006-08-30 18:38:04 +0200
  -+++ Net-Pcap-0.14/Makefile.PL2006-12-17 10:23:09 +0100
  +Index: Net-Pcap-0.15/Makefile.PL
  +--- Net-Pcap-0.15/Makefile.PL.orig   2006-08-30 18:38:04 +0200
   Net-Pcap-0.15/Makefile.PL2006-12-17 10:23:09 +0100
   @@ -22,7 +22,8 @@

} else {
  @@ -186,9 +186,9 @@
}

for my $arg (@ARGV) {
  -Index: Net-Pcap-0.14/Pcap.xs
   Net-Pcap-0.14/Pcap.xs.orig   2006-03-14 20:58:53 +0100
  -+++ Net-Pcap-0.14/Pcap.xs2006-12-17 10:23:09 +0100
  +Index: Net-Pcap-0.15/Pcap.xs
  +--- Net-Pcap-0.15/Pcap.xs.orig   2006-03-14 20:58:53 +0100
   Net-Pcap-0.15/Pcap.xs2006-12-17 10:23:09 +0100
   @@ -33,7 +33,7 @@
#define NEED_sv_2pv_nolen 1
#include ppport.h
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/perl-net/perl-net.spec
  
  $ cvs diff -u -r1.169 -r1.170 perl-net.spec
  --- openpkg-src/perl-net/perl-net.spec9 Nov 2007 07:31:45 -   
1.169
  +++ openpkg-src/perl-net/perl-net.spec3 Dec 2007 06:48:28 -   
1.170
  @@ -40,7 +40,7 @@
   %define   V_plrpc 0.2020
   %define   V_net_imap_simple   1.14
   %define   V_net_bgp   0.09
  -%define   V_net_pcap  0.14
  +%define   V_net_pcap  0.15
   %define   V_net_radius1.56
   %define   V_net_ip1.25
   %define   V_class_gomor   1.01
  @@ -66,7 +66,7 @@
   Group:Perl
   License:  GPL/Artistic
   Version:  %{V_perl}
  -Release:  20071109
  +Release:  20071203
   
   #   package options
   %option   with_pcap   no
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


[CVS] OpenPKG: openpkg-src/perl-net/ perl-net.patch perl-net.spec

2006-12-28 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-src  Date:   28-Dec-2006 19:52:16
  Branch: HEAD Handle: 2006122818521500

  Modified files:
openpkg-src/perl-netperl-net.patch perl-net.spec

  Log:
modifying package: perl-net-5.8.8 20061218 - 20061228

  Summary:
RevisionChanges Path
1.28+3  -3  openpkg-src/perl-net/perl-net.patch
1.143   +2  -2  openpkg-src/perl-net/perl-net.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/perl-net/perl-net.patch
  
  $ cvs diff -u -r1.27 -r1.28 perl-net.patch
  --- openpkg-src/perl-net/perl-net.patch   17 Dec 2006 09:27:04 -  
1.27
  +++ openpkg-src/perl-net/perl-net.patch   28 Dec 2006 18:52:15 -  
1.28
  @@ -1,6 +1,6 @@
  -Index: Net-Packet-3.24/Makefile.PL
   Net-Packet-3.24/Makefile.PL.orig 2006-12-16 16:26:26 +0100
  -+++ Net-Packet-3.24/Makefile.PL  2006-12-17 10:23:45 +0100
  +Index: Net-Packet-3.25/Makefile.PL
  +--- Net-Packet-3.25/Makefile.PL.orig 2006-12-16 16:26:26 +0100
   Net-Packet-3.25/Makefile.PL  2006-12-17 10:23:45 +0100
   @@ -14,7 +14,6 @@
  Net::Libdnet  = 0,
  Time::HiRes   = 0,
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/perl-net/perl-net.spec
  
  $ cvs diff -u -r1.142 -r1.143 perl-net.spec
  --- openpkg-src/perl-net/perl-net.spec18 Dec 2006 07:11:41 -  
1.142
  +++ openpkg-src/perl-net/perl-net.spec28 Dec 2006 18:52:15 -  
1.143
  @@ -45,7 +45,7 @@
   %define   V_net_radius1.51
   %define   V_net_ip1.25
   %define   V_class_gomor_hash  0.22
  -%define   V_net_packet3.24
  +%define   V_net_packet3.25
   %define   V_net_xmpp  1.0
   %define   V_net_jabber2.0
   %define   V_net_patricia  1.014
  @@ -63,7 +63,7 @@
   Group:Perl
   License:  GPL/Artistic
   Version:  %{V_perl}
  -Release:  20061218
  +Release:  20061228
   
   #   package options
   %option   with_curl   no
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


[CVS] OpenPKG: openpkg-src/perl-net/ perl-net.patch perl-net.spec

2006-12-17 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-src  Date:   17-Dec-2006 10:27:05
  Branch: HEAD Handle: 2006121709270400

  Modified files:
openpkg-src/perl-netperl-net.patch perl-net.spec

  Log:
modifying package: perl-net-5.8.8 20061216 - 20061217

  Summary:
RevisionChanges Path
1.27+11 -21 openpkg-src/perl-net/perl-net.patch
1.141   +2  -2  openpkg-src/perl-net/perl-net.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/perl-net/perl-net.patch
  
  $ cvs diff -u -r1.26 -r1.27 perl-net.patch
  --- openpkg-src/perl-net/perl-net.patch   24 Nov 2006 07:18:22 -  
1.26
  +++ openpkg-src/perl-net/perl-net.patch   17 Dec 2006 09:27:04 -  
1.27
  @@ -1,27 +1,17 @@
  -Index: Net-Packet-3.23/Makefile.PL
   Net-Packet-3.23/Makefile.PL.orig 2006-10-29 14:31:13 +0100
  -+++ Net-Packet-3.23/Makefile.PL  2006-10-30 08:10:22 +0100
  -@@ -3,9 +3,6 @@
  - #
  - use ExtUtils::MakeMaker;
  - 
  --die(*** Big endian architectures not supported yet\n)
  --   if unpack(h*, pack(s, 1)) =~ /01/;
  --
  - WriteMakefile(
  -NAME  = 'Net::Packet',
  -VERSION_FROM  = 'lib/Net/Packet.pm',
  -@@ -16,7 +13,6 @@
  +Index: Net-Packet-3.24/Makefile.PL
  +--- Net-Packet-3.24/Makefile.PL.orig 2006-12-16 16:26:26 +0100
   Net-Packet-3.24/Makefile.PL  2006-12-17 10:23:45 +0100
  +@@ -14,7 +14,6 @@
  Net::Libdnet  = 0,
  Time::HiRes   = 0,
  Net::IPv6Addr = 0,
   -  Socket6   = 0,
  Bit::Vector   = 0,
  -   Storable  = 0,
   },
  +ABSTRACT_FROM = 'lib/Net/Packet.pm',
   Index: Net-Patricia-1.014/libpatricia/patricia.c
   --- Net-Patricia-1.014/libpatricia/patricia.c.orig   2005-12-07 21:55:39 
+0100
  -+++ Net-Patricia-1.014/libpatricia/patricia.c2006-10-30 08:10:02 
+0100
   Net-Patricia-1.014/libpatricia/patricia.c2006-12-17 10:23:09 
+0100
   @@ -38,24 +38,24 @@
/* prefix_tochar
 * convert prefix information to bytes
  @@ -131,7 +121,7 @@
assert (patricia);
   Index: Net-Patricia-1.014/libpatricia/patricia.h
   --- Net-Patricia-1.014/libpatricia/patricia.h.orig   2005-12-07 21:54:52 
+0100
  -+++ Net-Patricia-1.014/libpatricia/patricia.h2006-10-30 08:10:02 
+0100
   Net-Patricia-1.014/libpatricia/patricia.h2006-12-17 10:23:09 
+0100
   @@ -15,10 +15,10 @@
#ifndef _PATRICIA_H
#define _PATRICIA_H
  @@ -185,14 +175,14 @@

   Index: Net-Pcap-0.14/Makefile.PL
   --- Net-Pcap-0.14/Makefile.PL.orig   2006-08-30 18:38:04 +0200
  -+++ Net-Pcap-0.14/Makefile.PL2006-10-30 08:10:02 +0100
   Net-Pcap-0.14/Makefile.PL2006-12-17 10:23:09 +0100
   @@ -22,7 +22,8 @@

} else {
$options{CCFLAGS} = '-Wall' if $Config{cc} eq 'gcc' and $] = 5.006;
   -$options{LIBS}= '-lpcap';
  -+$options{INC} = '[EMAIL PROTECTED]@/include';
  -+$options{LIBS}= '[EMAIL PROTECTED]@/lib -lpcap';
  ++$options{INC} = '-I/openpkg-dev/include';
  ++$options{LIBS}= '-L/openpkg-dev/lib -lpcap';
}

for my $arg (@ARGV) {
  @@ -207,7 +197,7 @@

   Index: Net-Pcap-0.14/Pcap.xs
   --- Net-Pcap-0.14/Pcap.xs.orig   2006-03-14 20:58:53 +0100
  -+++ Net-Pcap-0.14/Pcap.xs2006-10-30 08:10:02 +0100
   Net-Pcap-0.14/Pcap.xs2006-12-17 10:23:09 +0100
   @@ -33,7 +33,7 @@
#define NEED_sv_2pv_nolen 1
#include ppport.h
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/perl-net/perl-net.spec
  
  $ cvs diff -u -r1.140 -r1.141 perl-net.spec
  --- openpkg-src/perl-net/perl-net.spec15 Dec 2006 23:02:53 -  
1.140
  +++ openpkg-src/perl-net/perl-net.spec17 Dec 2006 09:27:04 -  
1.141
  @@ -45,7 +45,7 @@
   %define   V_net_radius1.51
   %define   V_net_ip1.25
   %define   V_class_gomor_hash  0.22
  -%define   V_net_packet3.23
  +%define   V_net_packet3.24
   %define   V_net_xmpp  1.0
   %define   V_net_jabber2.0
   %define   V_net_patricia  1.014
  @@ -63,7 +63,7 @@
   Group:Perl
   License:  GPL/Artistic
   Version:  %{V_perl}
  -Release:  20061216
  +Release:  20061217
   
   #   package options
   %option   with_curl   no
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository 

[CVS] OpenPKG: openpkg-src/perl-net/ perl-net.patch perl-net.spec

2006-11-23 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-src  Date:   24-Nov-2006 08:18:22
  Branch: HEAD Handle: 2006112407182200

  Modified files:
openpkg-src/perl-netperl-net.patch perl-net.spec

  Log:
modifying package: perl-net-5.8.8 20061119 - 20061124

  Summary:
RevisionChanges Path
1.26+3  -3  openpkg-src/perl-net/perl-net.patch
1.138   +2  -2  openpkg-src/perl-net/perl-net.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/perl-net/perl-net.patch
  
  $ cvs diff -u -r1.25 -r1.26 perl-net.patch
  --- openpkg-src/perl-net/perl-net.patch   19 Nov 2006 08:25:06 -  
1.25
  +++ openpkg-src/perl-net/perl-net.patch   24 Nov 2006 07:18:22 -  
1.26
  @@ -1,6 +1,6 @@
  -Index: Net-Packet-3.22/Makefile.PL
   Net-Packet-3.22/Makefile.PL.orig 2006-10-29 14:31:13 +0100
  -+++ Net-Packet-3.22/Makefile.PL  2006-10-30 08:10:22 +0100
  +Index: Net-Packet-3.23/Makefile.PL
  +--- Net-Packet-3.23/Makefile.PL.orig 2006-10-29 14:31:13 +0100
   Net-Packet-3.23/Makefile.PL  2006-10-30 08:10:22 +0100
   @@ -3,9 +3,6 @@
#
use ExtUtils::MakeMaker;
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/perl-net/perl-net.spec
  
  $ cvs diff -u -r1.137 -r1.138 perl-net.spec
  --- openpkg-src/perl-net/perl-net.spec19 Nov 2006 08:25:06 -  
1.137
  +++ openpkg-src/perl-net/perl-net.spec24 Nov 2006 07:18:22 -  
1.138
  @@ -45,7 +45,7 @@
   %define   V_net_radius1.50
   %define   V_net_ip1.25
   %define   V_class_gomor_hash  0.22
  -%define   V_net_packet3.22
  +%define   V_net_packet3.23
   %define   V_net_xmpp  1.0
   %define   V_net_jabber2.0
   %define   V_net_patricia  1.014
  @@ -63,7 +63,7 @@
   Group:Perl
   License:  GPL/Artistic
   Version:  %{V_perl}
  -Release:  20061119
  +Release:  20061124
   
   #   package options
   %option   with_curl   no
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


[CVS] OpenPKG: openpkg-src/perl-net/ perl-net.patch perl-net.spec

2006-11-19 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-src  Date:   19-Nov-2006 09:25:06
  Branch: HEAD Handle: 2006111908250600

  Modified files:
openpkg-src/perl-netperl-net.patch perl-net.spec

  Log:
modifying package: perl-net-5.8.8 20061116 - 20061119

  Summary:
RevisionChanges Path
1.25+3  -3  openpkg-src/perl-net/perl-net.patch
1.137   +2  -2  openpkg-src/perl-net/perl-net.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/perl-net/perl-net.patch
  
  $ cvs diff -u -r1.24 -r1.25 perl-net.patch
  --- openpkg-src/perl-net/perl-net.patch   16 Nov 2006 18:32:13 -  
1.24
  +++ openpkg-src/perl-net/perl-net.patch   19 Nov 2006 08:25:06 -  
1.25
  @@ -1,6 +1,6 @@
  -Index: Net-Packet-3.21/Makefile.PL
   Net-Packet-3.21/Makefile.PL.orig 2006-10-29 14:31:13 +0100
  -+++ Net-Packet-3.21/Makefile.PL  2006-10-30 08:10:22 +0100
  +Index: Net-Packet-3.22/Makefile.PL
  +--- Net-Packet-3.22/Makefile.PL.orig 2006-10-29 14:31:13 +0100
   Net-Packet-3.22/Makefile.PL  2006-10-30 08:10:22 +0100
   @@ -3,9 +3,6 @@
#
use ExtUtils::MakeMaker;
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/perl-net/perl-net.spec
  
  $ cvs diff -u -r1.136 -r1.137 perl-net.spec
  --- openpkg-src/perl-net/perl-net.spec16 Nov 2006 18:32:13 -  
1.136
  +++ openpkg-src/perl-net/perl-net.spec19 Nov 2006 08:25:06 -  
1.137
  @@ -45,7 +45,7 @@
   %define   V_net_radius1.50
   %define   V_net_ip1.25
   %define   V_class_gomor_hash  0.22
  -%define   V_net_packet3.21
  +%define   V_net_packet3.22
   %define   V_net_xmpp  1.0
   %define   V_net_jabber2.0
   %define   V_net_patricia  1.014
  @@ -63,7 +63,7 @@
   Group:Perl
   License:  GPL/Artistic
   Version:  %{V_perl}
  -Release:  20061116
  +Release:  20061119
   
   #   package options
   %option   with_curl   no
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


[CVS] OpenPKG: openpkg-src/perl-net/ perl-net.patch perl-net.spec

2006-11-16 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-src  Date:   16-Nov-2006 19:32:13
  Branch: HEAD Handle: 2006111618321300

  Modified files:
openpkg-src/perl-netperl-net.patch perl-net.spec

  Log:
modifying package: perl-net-5.8.8 20061113 - 20061116

  Summary:
RevisionChanges Path
1.24+3  -3  openpkg-src/perl-net/perl-net.patch
1.136   +2  -2  openpkg-src/perl-net/perl-net.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/perl-net/perl-net.patch
  
  $ cvs diff -u -r1.23 -r1.24 perl-net.patch
  --- openpkg-src/perl-net/perl-net.patch   13 Nov 2006 06:34:28 -  
1.23
  +++ openpkg-src/perl-net/perl-net.patch   16 Nov 2006 18:32:13 -  
1.24
  @@ -1,6 +1,6 @@
  -Index: Net-Packet-3.20/Makefile.PL
   Net-Packet-3.20/Makefile.PL.orig 2006-10-29 14:31:13 +0100
  -+++ Net-Packet-3.20/Makefile.PL  2006-10-30 08:10:22 +0100
  +Index: Net-Packet-3.21/Makefile.PL
  +--- Net-Packet-3.21/Makefile.PL.orig 2006-10-29 14:31:13 +0100
   Net-Packet-3.21/Makefile.PL  2006-10-30 08:10:22 +0100
   @@ -3,9 +3,6 @@
#
use ExtUtils::MakeMaker;
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/perl-net/perl-net.spec
  
  $ cvs diff -u -r1.135 -r1.136 perl-net.spec
  --- openpkg-src/perl-net/perl-net.spec13 Nov 2006 06:34:28 -  
1.135
  +++ openpkg-src/perl-net/perl-net.spec16 Nov 2006 18:32:13 -  
1.136
  @@ -45,7 +45,7 @@
   %define   V_net_radius1.50
   %define   V_net_ip1.25
   %define   V_class_gomor_hash  0.22
  -%define   V_net_packet3.20
  +%define   V_net_packet3.21
   %define   V_net_xmpp  1.0
   %define   V_net_jabber2.0
   %define   V_net_patricia  1.014
  @@ -63,7 +63,7 @@
   Group:Perl
   License:  GPL/Artistic
   Version:  %{V_perl}
  -Release:  20061113
  +Release:  20061116
   
   #   package options
   %option   with_curl   no
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


[CVS] OpenPKG: openpkg-src/perl-net/ perl-net.patch perl-net.spec

2006-11-12 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-src  Date:   13-Nov-2006 07:34:29
  Branch: HEAD Handle: 2006111306342800

  Modified files:
openpkg-src/perl-netperl-net.patch perl-net.spec

  Log:
modifying package: perl-net-5.8.8 20061106 - 20061113

  Summary:
RevisionChanges Path
1.23+3  -3  openpkg-src/perl-net/perl-net.patch
1.135   +2  -2  openpkg-src/perl-net/perl-net.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/perl-net/perl-net.patch
  
  $ cvs diff -u -r1.22 -r1.23 perl-net.patch
  --- openpkg-src/perl-net/perl-net.patch   6 Nov 2006 08:08:48 -   
1.22
  +++ openpkg-src/perl-net/perl-net.patch   13 Nov 2006 06:34:28 -  
1.23
  @@ -1,6 +1,6 @@
  -Index: Net-Packet-3.01/Makefile.PL
   Net-Packet-3.01/Makefile.PL.orig 2006-10-29 14:31:13 +0100
  -+++ Net-Packet-3.01/Makefile.PL  2006-10-30 08:10:22 +0100
  +Index: Net-Packet-3.20/Makefile.PL
  +--- Net-Packet-3.20/Makefile.PL.orig 2006-10-29 14:31:13 +0100
   Net-Packet-3.20/Makefile.PL  2006-10-30 08:10:22 +0100
   @@ -3,9 +3,6 @@
#
use ExtUtils::MakeMaker;
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/perl-net/perl-net.spec
  
  $ cvs diff -u -r1.134 -r1.135 perl-net.spec
  --- openpkg-src/perl-net/perl-net.spec6 Nov 2006 08:08:48 -   
1.134
  +++ openpkg-src/perl-net/perl-net.spec13 Nov 2006 06:34:28 -  
1.135
  @@ -45,7 +45,7 @@
   %define   V_net_radius1.50
   %define   V_net_ip1.25
   %define   V_class_gomor_hash  0.22
  -%define   V_net_packet3.01
  +%define   V_net_packet3.20
   %define   V_net_xmpp  1.0
   %define   V_net_jabber2.0
   %define   V_net_patricia  1.014
  @@ -63,7 +63,7 @@
   Group:Perl
   License:  GPL/Artistic
   Version:  %{V_perl}
  -Release:  20061106
  +Release:  20061113
   
   #   package options
   %option   with_curl   no
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


[CVS] OpenPKG: openpkg-src/perl-net/ perl-net.patch perl-net.spec

2006-11-06 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-src  Date:   06-Nov-2006 09:08:48
  Branch: HEAD Handle: 2006110608084800

  Modified files:
openpkg-src/perl-netperl-net.patch perl-net.spec

  Log:
modifying package: perl-net-5.8.8 20061030 - 20061106

  Summary:
RevisionChanges Path
1.22+3  -3  openpkg-src/perl-net/perl-net.patch
1.134   +2  -2  openpkg-src/perl-net/perl-net.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/perl-net/perl-net.patch
  
  $ cvs diff -u -r1.21 -r1.22 perl-net.patch
  --- openpkg-src/perl-net/perl-net.patch   30 Oct 2006 07:13:35 -  
1.21
  +++ openpkg-src/perl-net/perl-net.patch   6 Nov 2006 08:08:48 -   
1.22
  @@ -1,6 +1,6 @@
  -Index: Net-Packet-3.00/Makefile.PL
   Net-Packet-3.00/Makefile.PL.orig 2006-10-29 14:31:13 +0100
  -+++ Net-Packet-3.00/Makefile.PL  2006-10-30 08:10:22 +0100
  +Index: Net-Packet-3.01/Makefile.PL
  +--- Net-Packet-3.01/Makefile.PL.orig 2006-10-29 14:31:13 +0100
   Net-Packet-3.01/Makefile.PL  2006-10-30 08:10:22 +0100
   @@ -3,9 +3,6 @@
#
use ExtUtils::MakeMaker;
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/perl-net/perl-net.spec
  
  $ cvs diff -u -r1.133 -r1.134 perl-net.spec
  --- openpkg-src/perl-net/perl-net.spec30 Oct 2006 07:13:35 -  
1.133
  +++ openpkg-src/perl-net/perl-net.spec6 Nov 2006 08:08:48 -   
1.134
  @@ -45,7 +45,7 @@
   %define   V_net_radius1.50
   %define   V_net_ip1.25
   %define   V_class_gomor_hash  0.22
  -%define   V_net_packet3.00
  +%define   V_net_packet3.01
   %define   V_net_xmpp  1.0
   %define   V_net_jabber2.0
   %define   V_net_patricia  1.014
  @@ -63,7 +63,7 @@
   Group:Perl
   License:  GPL/Artistic
   Version:  %{V_perl}
  -Release:  20061030
  +Release:  20061106
   
   #   package options
   %option   with_curl   no
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


[CVS] OpenPKG: openpkg-src/perl-net/ perl-net.patch perl-net.spec

2006-10-29 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-src  Date:   30-Oct-2006 08:13:35
  Branch: HEAD Handle: 2006103007133500

  Modified files:
openpkg-src/perl-netperl-net.patch perl-net.spec

  Log:
modifying package: perl-net-5.8.8 20061024 - 20061030

  Summary:
RevisionChanges Path
1.21+15 -14 openpkg-src/perl-net/perl-net.patch
1.133   +2  -2  openpkg-src/perl-net/perl-net.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/perl-net/perl-net.patch
  
  $ cvs diff -u -r1.20 -r1.21 perl-net.patch
  --- openpkg-src/perl-net/perl-net.patch   6 Sep 2006 05:45:28 -   
1.20
  +++ openpkg-src/perl-net/perl-net.patch   30 Oct 2006 07:13:35 -  
1.21
  @@ -1,7 +1,8 @@
  -Index: Net-Packet-2.22/Makefile.PL
   Net-Packet-2.22/Makefile.PL.orig 2006-05-12 23:31:02 +0200
  -+++ Net-Packet-2.22/Makefile.PL  2006-08-29 19:46:51 +0200
  -@@ -1,8 +1,5 @@
  +Index: Net-Packet-3.00/Makefile.PL
  +--- Net-Packet-3.00/Makefile.PL.orig 2006-10-29 14:31:13 +0100
   Net-Packet-3.00/Makefile.PL  2006-10-30 08:10:22 +0100
  +@@ -3,9 +3,6 @@
  + #
use ExtUtils::MakeMaker;

   -die(*** Big endian architectures not supported yet\n)
  @@ -9,18 +10,18 @@
   -
WriteMakefile(
   NAME  = 'Net::Packet',
  -VERSION_FROM  = 'Packet.pm',
  -@@ -10,7 +7,6 @@
  +VERSION_FROM  = 'lib/Net/Packet.pm',
  +@@ -16,7 +13,6 @@
  +   Net::Libdnet  = 0,
  Time::HiRes   = 0,
  -   Net::Pcap = '0.12',
  Net::IPv6Addr = 0,
   -  Socket6   = 0,
  -   Class::Gomor  = 0,
  Bit::Vector   = 0,
  -   Net::Write= 0,
  +   Storable  = 0,
  +},
   Index: Net-Patricia-1.014/libpatricia/patricia.c
   --- Net-Patricia-1.014/libpatricia/patricia.c.orig   2005-12-07 21:55:39 
+0100
  -+++ Net-Patricia-1.014/libpatricia/patricia.c2006-08-29 19:46:51 
+0200
   Net-Patricia-1.014/libpatricia/patricia.c2006-10-30 08:10:02 
+0100
   @@ -38,24 +38,24 @@
/* prefix_tochar
 * convert prefix information to bytes
  @@ -130,7 +131,7 @@
assert (patricia);
   Index: Net-Patricia-1.014/libpatricia/patricia.h
   --- Net-Patricia-1.014/libpatricia/patricia.h.orig   2005-12-07 21:54:52 
+0100
  -+++ Net-Patricia-1.014/libpatricia/patricia.h2006-08-29 19:46:51 
+0200
   Net-Patricia-1.014/libpatricia/patricia.h2006-10-30 08:10:02 
+0100
   @@ -15,10 +15,10 @@
#ifndef _PATRICIA_H
#define _PATRICIA_H
  @@ -183,8 +184,8 @@
} patricia_tree_t;

   Index: Net-Pcap-0.14/Makefile.PL
   Net-Pcap-0.14/Makefile.PL.orig   2006-08-07 19:25:37 +0200
  -+++ Net-Pcap-0.14/Makefile.PL2006-08-29 19:47:29 +0200
  +--- Net-Pcap-0.14/Makefile.PL.orig   2006-08-30 18:38:04 +0200
   Net-Pcap-0.14/Makefile.PL2006-10-30 08:10:02 +0100
   @@ -22,7 +22,8 @@

} else {
  @@ -206,7 +207,7 @@

   Index: Net-Pcap-0.14/Pcap.xs
   --- Net-Pcap-0.14/Pcap.xs.orig   2006-03-14 20:58:53 +0100
  -+++ Net-Pcap-0.14/Pcap.xs2006-08-29 19:46:51 +0200
   Net-Pcap-0.14/Pcap.xs2006-10-30 08:10:02 +0100
   @@ -33,7 +33,7 @@
#define NEED_sv_2pv_nolen 1
#include ppport.h
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/perl-net/perl-net.spec
  
  $ cvs diff -u -r1.132 -r1.133 perl-net.spec
  --- openpkg-src/perl-net/perl-net.spec24 Oct 2006 16:14:58 -  
1.132
  +++ openpkg-src/perl-net/perl-net.spec30 Oct 2006 07:13:35 -  
1.133
  @@ -45,7 +45,7 @@
   %define   V_net_radius1.50
   %define   V_net_ip1.25
   %define   V_class_gomor_hash  0.22
  -%define   V_net_packet2.22
  +%define   V_net_packet3.00
   %define   V_net_xmpp  1.0
   %define   V_net_jabber2.0
   %define   V_net_patricia  1.014
  @@ -63,7 +63,7 @@
   Group:Perl
   License:  GPL/Artistic
   Version:  %{V_perl}
  -Release:  20061024
  +Release:  20061030
   
   #   package options
   %option   with_curl   no
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


[CVS] OpenPKG: openpkg-src/perl-net/ perl-net.patch perl-net.spec

2006-09-05 Thread Christoph Schug
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Christoph Schug
  Root:   /v/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-src  Date:   06-Sep-2006 07:45:28
  Branch: HEAD Handle: 2006090606452800

  Modified files:
openpkg-src/perl-netperl-net.patch perl-net.spec

  Log:
modifying package: perl-net-5.8.8 20060829 - 20060906

  Summary:
RevisionChanges Path
1.20+7  -7  openpkg-src/perl-net/perl-net.patch
1.126   +2  -2  openpkg-src/perl-net/perl-net.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/perl-net/perl-net.patch
  
  $ cvs diff -u -r1.19 -r1.20 perl-net.patch
  --- openpkg-src/perl-net/perl-net.patch   29 Aug 2006 17:50:01 -  
1.19
  +++ openpkg-src/perl-net/perl-net.patch   6 Sep 2006 05:45:28 -   
1.20
  @@ -182,9 +182,9 @@
   int num_active_node; /* for debug purpose */
} patricia_tree_t;

  -Index: Net-Pcap-0.13/Makefile.PL
   Net-Pcap-0.13/Makefile.PL.orig   2006-08-07 19:25:37 +0200
  -+++ Net-Pcap-0.13/Makefile.PL2006-08-29 19:47:29 +0200
  +Index: Net-Pcap-0.14/Makefile.PL
  +--- Net-Pcap-0.14/Makefile.PL.orig   2006-08-07 19:25:37 +0200
   Net-Pcap-0.14/Makefile.PL2006-08-29 19:47:29 +0200
   @@ -22,7 +22,8 @@

} else {
  @@ -198,15 +198,15 @@
   @@ -537,7 +538,7 @@
} else { # Unix and Cygwin
my %ppopts = ( default = '-o', gcc = '-o', cc_r = '' );
  - my $ppopt = $ppopts{ $Config{cc} || 'default' };
  + my $ppopt = $ppopts{ $Config{cc} } || $ppopts{default};
   -eval { xsystem($Config{cpprun} $options{INC} $options{DEFINE} 
$Config{cppflags} $header $ppopt $preprocessed) };
   +eval { xsystem($Config{cpprun} $options{INC} $options{DEFINE} 
$Config{cppflags} $header $ppopt $preprocessed) };
}
die \nerror: [EMAIL PROTECTED] if $@;

  -Index: Net-Pcap-0.13/Pcap.xs
   Net-Pcap-0.13/Pcap.xs.orig   2006-03-14 20:58:53 +0100
  -+++ Net-Pcap-0.13/Pcap.xs2006-08-29 19:46:51 +0200
  +Index: Net-Pcap-0.14/Pcap.xs
  +--- Net-Pcap-0.14/Pcap.xs.orig   2006-03-14 20:58:53 +0100
   Net-Pcap-0.14/Pcap.xs2006-08-29 19:46:51 +0200
   @@ -33,7 +33,7 @@
#define NEED_sv_2pv_nolen 1
#include ppport.h
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/perl-net/perl-net.spec
  
  $ cvs diff -u -r1.125 -r1.126 perl-net.spec
  --- openpkg-src/perl-net/perl-net.spec29 Aug 2006 17:50:01 -  
1.125
  +++ openpkg-src/perl-net/perl-net.spec6 Sep 2006 05:45:28 -   
1.126
  @@ -41,7 +41,7 @@
   %define   V_curl_easy 1.35
   %define   V_net_imap_simple   1.14
   %define   V_net_bgp   0.08
  -%define   V_net_pcap  0.13
  +%define   V_net_pcap  0.14
   %define   V_net_radius1.49
   %define   V_net_ip1.25
   %define   V_class_gomor_hash  0.22
  @@ -63,7 +63,7 @@
   Group:Language
   License:  GPL/Artistic
   Version:  %{V_perl}
  -Release:  20060829
  +Release:  20060906
   
   #   package options
   %option   with_curl   no
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


[CVS] OpenPKG: openpkg-src/perl-net/ perl-net.patch perl-net.spec

2006-08-29 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-src  Date:   29-Aug-2006 19:50:01
  Branch: HEAD Handle: 2006082918500100

  Modified files:
openpkg-src/perl-netperl-net.patch perl-net.spec

  Log:
modifying package: perl-net-5.8.8 20060810 - 20060829

  Summary:
RevisionChanges Path
1.19+22 -13 openpkg-src/perl-net/perl-net.patch
1.125   +2  -2  openpkg-src/perl-net/perl-net.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/perl-net/perl-net.patch
  
  $ cvs diff -u -r1.18 -r1.19 perl-net.patch
  --- openpkg-src/perl-net/perl-net.patch   13 May 2006 21:30:21 -  
1.18
  +++ openpkg-src/perl-net/perl-net.patch   29 Aug 2006 17:50:01 -  
1.19
  @@ -1,6 +1,6 @@
   Index: Net-Packet-2.22/Makefile.PL
   --- Net-Packet-2.22/Makefile.PL.orig 2006-05-12 23:31:02 +0200
  -+++ Net-Packet-2.22/Makefile.PL  2006-05-13 21:24:20 +0200
   Net-Packet-2.22/Makefile.PL  2006-08-29 19:46:51 +0200
   @@ -1,8 +1,5 @@
use ExtUtils::MakeMaker;

  @@ -20,7 +20,7 @@
  Net::Write= 0,
   Index: Net-Patricia-1.014/libpatricia/patricia.c
   --- Net-Patricia-1.014/libpatricia/patricia.c.orig   2005-12-07 21:55:39 
+0100
  -+++ Net-Patricia-1.014/libpatricia/patricia.c2006-05-13 21:21:45 
+0200
   Net-Patricia-1.014/libpatricia/patricia.c2006-08-29 19:46:51 
+0200
   @@ -38,24 +38,24 @@
/* prefix_tochar
 * convert prefix information to bytes
  @@ -130,7 +130,7 @@
assert (patricia);
   Index: Net-Patricia-1.014/libpatricia/patricia.h
   --- Net-Patricia-1.014/libpatricia/patricia.h.orig   2005-12-07 21:54:52 
+0100
  -+++ Net-Patricia-1.014/libpatricia/patricia.h2006-05-13 21:21:45 
+0200
   Net-Patricia-1.014/libpatricia/patricia.h2006-08-29 19:46:51 
+0200
   @@ -15,10 +15,10 @@
#ifndef _PATRICIA_H
#define _PATRICIA_H
  @@ -182,22 +182,31 @@
   int num_active_node; /* for debug purpose */
} patricia_tree_t;

  -Index: Net-Pcap-0.12/Makefile.PL
   Net-Pcap-0.12/Makefile.PL.orig   2006-03-14 20:33:13 +0100
  -+++ Net-Pcap-0.12/Makefile.PL2006-05-13 21:21:45 +0200
  -@@ -21,7 +21,8 @@
  +Index: Net-Pcap-0.13/Makefile.PL
  +--- Net-Pcap-0.13/Makefile.PL.orig   2006-08-07 19:25:37 +0200
   Net-Pcap-0.13/Makefile.PL2006-08-29 19:47:29 +0200
  +@@ -22,7 +22,8 @@

} else {
  - $options{CCFLAGS} = '-Wall' if $] = 5.006;
  + $options{CCFLAGS} = '-Wall' if $Config{cc} eq 'gcc' and $] = 5.006;
   -$options{LIBS}= '-lpcap';
  -+$options{INC} = '-I/openpkg-dev/include';
  -+$options{LIBS}= '-L/openpkg-dev/lib -lpcap';
  ++$options{INC} = '[EMAIL PROTECTED]@/include';
  ++$options{LIBS}= '[EMAIL PROTECTED]@/lib -lpcap';
}

for my $arg (@ARGV) {
  -Index: Net-Pcap-0.12/Pcap.xs
   Net-Pcap-0.12/Pcap.xs.orig   2006-03-14 20:58:53 +0100
  -+++ Net-Pcap-0.12/Pcap.xs2006-05-13 21:21:45 +0200
  +@@ -537,7 +538,7 @@
  + } else { # Unix and Cygwin
  + my %ppopts = ( default = '-o', gcc = '-o', cc_r = '' );
  + my $ppopt = $ppopts{ $Config{cc} || 'default' };
  +-eval { xsystem($Config{cpprun} $options{INC} $options{DEFINE} 
$Config{cppflags} $header $ppopt $preprocessed) };
  ++eval { xsystem($Config{cpprun} $options{INC} $options{DEFINE} 
$Config{cppflags} $header $ppopt $preprocessed) };
  + }
  + die \nerror: [EMAIL PROTECTED] if $@;
  + 
  +Index: Net-Pcap-0.13/Pcap.xs
  +--- Net-Pcap-0.13/Pcap.xs.orig   2006-03-14 20:58:53 +0100
   Net-Pcap-0.13/Pcap.xs2006-08-29 19:46:51 +0200
   @@ -33,7 +33,7 @@
#define NEED_sv_2pv_nolen 1
#include ppport.h
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/perl-net/perl-net.spec
  
  $ cvs diff -u -r1.124 -r1.125 perl-net.spec
  --- openpkg-src/perl-net/perl-net.spec10 Aug 2006 07:19:06 -  
1.124
  +++ openpkg-src/perl-net/perl-net.spec29 Aug 2006 17:50:01 -  
1.125
  @@ -41,7 +41,7 @@
   %define   V_curl_easy 1.35
   %define   V_net_imap_simple   1.14
   %define   V_net_bgp   0.08
  -%define   V_net_pcap  0.12
  +%define   V_net_pcap  0.13
   %define   V_net_radius1.49
   %define   V_net_ip1.25
   %define   V_class_gomor_hash  0.22
  @@ -63,7 +63,7 @@
   Group:Language
   License:  GPL/Artistic
   

[CVS] OpenPKG: openpkg-src/perl-net/ perl-net.patch perl-net.spec

2006-05-13 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-src  Date:   13-May-2006 23:30:22
  Branch: HEAD Handle: 2006051322302100

  Modified files:
openpkg-src/perl-netperl-net.patch perl-net.spec

  Log:
modifying package: perl-net-5.8.8 20060415 - 20060513

  Summary:
RevisionChanges Path
1.18+16 -16 openpkg-src/perl-net/perl-net.patch
1.119   +2  -2  openpkg-src/perl-net/perl-net.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/perl-net/perl-net.patch
  
  $ cvs diff -u -r1.17 -r1.18 perl-net.patch
  --- openpkg-src/perl-net/perl-net.patch   20 Mar 2006 13:59:08 -  
1.17
  +++ openpkg-src/perl-net/perl-net.patch   13 May 2006 21:30:21 -  
1.18
  @@ -1,6 +1,6 @@
  -Index: Net-Packet-2.20/Makefile.PL
   Net-Packet-2.20/Makefile.PL.orig 2006-03-20 14:39:00 +0100
  -+++ Net-Packet-2.20/Makefile.PL  2006-03-20 14:39:11 +0100
  +Index: Net-Packet-2.22/Makefile.PL
  +--- Net-Packet-2.22/Makefile.PL.orig 2006-05-12 23:31:02 +0200
   Net-Packet-2.22/Makefile.PL  2006-05-13 21:24:20 +0200
   @@ -1,8 +1,5 @@
use ExtUtils::MakeMaker;

  @@ -11,16 +11,16 @@
   NAME  = 'Net::Packet',
   VERSION_FROM  = 'Packet.pm',
   @@ -10,7 +7,6 @@
  -   Time::HiRes= 0,
  -   Net::Pcap  = '0.12',
  -   Net::IPv6Addr  = 0,
  --  Socket6= 0,
  -   Class::Gomor::Hash = '0.22',
  -   Bit::Vector= 0,
  -   Net::Write = 0,
  +   Time::HiRes   = 0,
  +   Net::Pcap = '0.12',
  +   Net::IPv6Addr = 0,
  +-  Socket6   = 0,
  +   Class::Gomor  = 0,
  +   Bit::Vector   = 0,
  +   Net::Write= 0,
   Index: Net-Patricia-1.014/libpatricia/patricia.c
   --- Net-Patricia-1.014/libpatricia/patricia.c.orig   2005-12-07 21:55:39 
+0100
  -+++ Net-Patricia-1.014/libpatricia/patricia.c2006-03-12 18:50:42 
+0100
   Net-Patricia-1.014/libpatricia/patricia.c2006-05-13 21:21:45 
+0200
   @@ -38,24 +38,24 @@
/* prefix_tochar
 * convert prefix information to bytes
  @@ -130,7 +130,7 @@
assert (patricia);
   Index: Net-Patricia-1.014/libpatricia/patricia.h
   --- Net-Patricia-1.014/libpatricia/patricia.h.orig   2005-12-07 21:54:52 
+0100
  -+++ Net-Patricia-1.014/libpatricia/patricia.h2006-03-12 18:50:42 
+0100
   Net-Patricia-1.014/libpatricia/patricia.h2006-05-13 21:21:45 
+0200
   @@ -15,10 +15,10 @@
#ifndef _PATRICIA_H
#define _PATRICIA_H
  @@ -183,8 +183,8 @@
} patricia_tree_t;

   Index: Net-Pcap-0.12/Makefile.PL
   Net-Pcap-0.12/Makefile.PL.orig   2005-12-27 18:33:55 +0100
  -+++ Net-Pcap-0.12/Makefile.PL2006-03-12 18:50:42 +0100
  +--- Net-Pcap-0.12/Makefile.PL.orig   2006-03-14 20:33:13 +0100
   Net-Pcap-0.12/Makefile.PL2006-05-13 21:21:45 +0200
   @@ -21,7 +21,8 @@

} else {
  @@ -196,8 +196,8 @@

for my $arg (@ARGV) {
   Index: Net-Pcap-0.12/Pcap.xs
   Net-Pcap-0.12/Pcap.xs.orig   2006-03-20 14:37:24 +0100
  -+++ Net-Pcap-0.12/Pcap.xs2006-03-20 14:37:33 +0100
  +--- Net-Pcap-0.12/Pcap.xs.orig   2006-03-14 20:58:53 +0100
   Net-Pcap-0.12/Pcap.xs2006-05-13 21:21:45 +0200
   @@ -33,7 +33,7 @@
#define NEED_sv_2pv_nolen 1
#include ppport.h
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/perl-net/perl-net.spec
  
  $ cvs diff -u -r1.118 -r1.119 perl-net.spec
  --- openpkg-src/perl-net/perl-net.spec15 Apr 2006 16:54:32 -  
1.118
  +++ openpkg-src/perl-net/perl-net.spec13 May 2006 21:30:21 -  
1.119
  @@ -45,7 +45,7 @@
   %define   V_net_radius1.44
   %define   V_net_ip1.24
   %define   V_class_gomor_hash  0.22
  -%define   V_net_packet2.20
  +%define   V_net_packet2.22
   %define   V_net_xmpp  1.0
   %define   V_net_jabber2.0
   %define   V_net_patricia  1.014
  @@ -63,7 +63,7 @@
   Group:Language
   License:  GPL/Artistic
   Version:  %{V_perl}
  -Release:  20060415
  +Release:  20060513
   
   #   package options
   %option   with_curl   no
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


[CVS] OpenPKG: openpkg-src/perl-net/ perl-net.patch perl-net.spec

2006-03-20 Thread Christoph Schug
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Christoph Schug
  Root:   /v/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-src  Date:   20-Mar-2006 14:59:09
  Branch: HEAD Handle: 2006032013590800

  Modified files:
openpkg-src/perl-netperl-net.patch perl-net.spec

  Log:
modifying package: perl-net-5.8.8 20060313 - 20060320

  Summary:
RevisionChanges Path
1.17+16 -41 openpkg-src/perl-net/perl-net.patch
1.114   +3  -3  openpkg-src/perl-net/perl-net.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/perl-net/perl-net.patch
  
  $ cvs diff -u -r1.16 -r1.17 perl-net.patch
  --- openpkg-src/perl-net/perl-net.patch   13 Mar 2006 20:27:10 -  
1.16
  +++ openpkg-src/perl-net/perl-net.patch   20 Mar 2006 13:59:08 -  
1.17
  @@ -1,48 +1,23 @@
  -Index: Net-Packet-2.06/Makefile.PL
   Net-Packet-2.06/Makefile.PL.orig 2006-03-11 20:16:42 +0100
  -+++ Net-Packet-2.06/Makefile.PL  2006-03-12 18:54:22 +0100
  -@@ -1,33 +1,5 @@
  +Index: Net-Packet-2.20/Makefile.PL
  +--- Net-Packet-2.20/Makefile.PL.orig 2006-03-20 14:39:00 +0100
   Net-Packet-2.20/Makefile.PL  2006-03-20 14:39:11 +0100
  +@@ -1,8 +1,5 @@
use ExtUtils::MakeMaker;

  --die(*** Microsoft Windows not supported\n)
  --   if $^O =~ /windows|win32/i;
   -die(*** Big endian architectures not supported yet\n)
   -   if unpack(h*, pack(s, 1)) =~ /01/;
   -
  --require DynaLoader;
  --
  --my $file = DynaLoader::dl_findfile('-lpcap')
  --   or die(*** Cannot find libpcap, try setting LD_LIBRARY_PATH\n);
  --
  --my ($lib) = $file =~ /^(.*)\//;
  --(my $inc  = $lib) =~ s/lib/include/;
  --
  --sub _getPcapHPath { (-d $inc/pcap) ? [$inc/pcap] : [$inc] }
  --
  --unless (-f $inc/pcap-int.h || -f $inc/pcap/pcap-int.h) {
  --   die(*** Cannot find pcap-int.h . Get it from your installed libpcap .
  --   source distribution and copy it to: . _getPcapHPath().
  --(near pcap.h)\n);
  --}
  --
  --$inc = -I$inc -I$inc/pcap;
  --$lib = -L$lib;
  --
  --print Found libpcap:[$file]\n;
  --print Will use lib: [$lib]\n;
  --print Will use include: [$inc]\n;
  --
WriteMakefile(
   NAME  = 'Net::Packet',
   VERSION_FROM  = 'Packet.pm',
  -@@ -36,7 +8,6 @@
  -   IO::Interface  = 0,
  -   Net::Pcap  = '0.04',
  +@@ -10,7 +7,6 @@
  +   Time::HiRes= 0,
  +   Net::Pcap  = '0.12',
  Net::IPv6Addr  = 0,
   -  Socket6= 0,
  Class::Gomor::Hash = '0.22',
  Bit::Vector= 0,
  -},
  +   Net::Write = 0,
   Index: Net-Patricia-1.014/libpatricia/patricia.c
   --- Net-Patricia-1.014/libpatricia/patricia.c.orig   2005-12-07 21:55:39 
+0100
   +++ Net-Patricia-1.014/libpatricia/patricia.c2006-03-12 18:50:42 
+0100
  @@ -207,9 +182,9 @@
   int num_active_node; /* for debug purpose */
} patricia_tree_t;

  -Index: Net-Pcap-0.11/Makefile.PL
   Net-Pcap-0.11/Makefile.PL.orig   2005-12-27 18:33:55 +0100
  -+++ Net-Pcap-0.11/Makefile.PL2006-03-12 18:50:42 +0100
  +Index: Net-Pcap-0.12/Makefile.PL
  +--- Net-Pcap-0.12/Makefile.PL.orig   2005-12-27 18:33:55 +0100
   Net-Pcap-0.12/Makefile.PL2006-03-12 18:50:42 +0100
   @@ -21,7 +21,8 @@

} else {
  @@ -220,15 +195,15 @@
}

for my $arg (@ARGV) {
  -Index: Net-Pcap-0.11/Pcap.xs
   Net-Pcap-0.11/Pcap.xs.orig   2005-11-23 00:49:27 +0100
  -+++ Net-Pcap-0.11/Pcap.xs2006-03-12 18:50:42 +0100
  -@@ -31,7 +31,7 @@
  +Index: Net-Pcap-0.12/Pcap.xs
  +--- Net-Pcap-0.12/Pcap.xs.orig   2006-03-20 14:37:24 +0100
   Net-Pcap-0.12/Pcap.xs2006-03-20 14:37:33 +0100
  +@@ -33,7 +33,7 @@
#define NEED_sv_2pv_nolen 1
#include ppport.h

   -#include pcap.h
   +#include pcap.h

  - #ifdef _WINPCAP
  + #ifdef _CYGWIN
#include Win32-Extensions.h
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/perl-net/perl-net.spec
  
  $ cvs diff -u -r1.113 -r1.114 perl-net.spec
  --- openpkg-src/perl-net/perl-net.spec13 Mar 2006 20:27:10 -  
1.113
  +++ openpkg-src/perl-net/perl-net.spec20 Mar 2006 13:59:08 -  
1.114
  @@ -41,11 +41,11 @@
   %define   V_curl_easy 1.35
   %define   V_net_imap_simple   1.14
   %define   V_net_bgp   0.08
  -%define   V_net_pcap  0.11
  +%define   V_net_pcap  0.12
   %define   V_net_radius1.44
   %define   V_net_ip1.24
   %define   

[CVS] OpenPKG: openpkg-src/perl-net/ perl-net.patch perl-net.spec

2006-03-13 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-src  Date:   13-Mar-2006 21:27:11
  Branch: HEAD Handle: 2006031320271000

  Modified files:
openpkg-src/perl-netperl-net.patch perl-net.spec

  Log:
modifying package: perl-net-5.8.8 20060313 again

  Summary:
RevisionChanges Path
1.16+3  -3  openpkg-src/perl-net/perl-net.patch
1.113   +1  -1  openpkg-src/perl-net/perl-net.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/perl-net/perl-net.patch
  
  $ cvs diff -u -r1.15 -r1.16 perl-net.patch
  --- openpkg-src/perl-net/perl-net.patch   12 Mar 2006 18:36:03 -  
1.15
  +++ openpkg-src/perl-net/perl-net.patch   13 Mar 2006 20:27:10 -  
1.16
  @@ -1,6 +1,6 @@
  -Index: Net-Packet-2.05/Makefile.PL
   Net-Packet-2.05/Makefile.PL.orig 2006-03-11 20:16:42 +0100
  -+++ Net-Packet-2.05/Makefile.PL  2006-03-12 18:54:22 +0100
  +Index: Net-Packet-2.06/Makefile.PL
  +--- Net-Packet-2.06/Makefile.PL.orig 2006-03-11 20:16:42 +0100
   Net-Packet-2.06/Makefile.PL  2006-03-12 18:54:22 +0100
   @@ -1,33 +1,5 @@
use ExtUtils::MakeMaker;

  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/perl-net/perl-net.spec
  
  $ cvs diff -u -r1.112 -r1.113 perl-net.spec
  --- openpkg-src/perl-net/perl-net.spec13 Mar 2006 20:22:15 -  
1.112
  +++ openpkg-src/perl-net/perl-net.spec13 Mar 2006 20:27:10 -  
1.113
  @@ -45,7 +45,7 @@
   %define   V_net_radius1.44
   %define   V_net_ip1.24
   %define   V_class_gomor_hash  0.22
  -%define   V_net_packet2.05
  +%define   V_net_packet2.06
   %define   V_net_xmpp  1.0
   %define   V_net_jabber2.0
   %define   V_net_patricia  1.014
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


[CVS] OpenPKG: openpkg-src/perl-net/ perl-net.patch perl-net.spec

2005-12-28 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-src  Date:   28-Dec-2005 19:54:07
  Branch: HEAD Handle: 2005122818540700

  Modified files:
openpkg-src/perl-netperl-net.patch perl-net.spec

  Log:
modifying package: perl-net-5.8.7 20051227 - 20051228

  Summary:
RevisionChanges Path
1.14+6  -6  openpkg-src/perl-net/perl-net.patch
1.105   +2  -2  openpkg-src/perl-net/perl-net.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/perl-net/perl-net.patch
  
  $ cvs diff -u -r1.13 -r1.14 perl-net.patch
  --- openpkg-src/perl-net/perl-net.patch   27 Dec 2005 18:33:37 -  
1.13
  +++ openpkg-src/perl-net/perl-net.patch   28 Dec 2005 18:54:07 -  
1.14
  @@ -207,9 +207,9 @@
   int num_active_node; /* for debug purpose */
} patricia_tree_t;

  -Index: Net-Pcap-0.10/Makefile.PL
   Net-Pcap-0.10/Makefile.PL.orig   2005-10-30 23:43:52 +0100
  -+++ Net-Pcap-0.10/Makefile.PL2005-12-27 19:29:33 +0100
  +Index: Net-Pcap-0.11/Makefile.PL
  +--- Net-Pcap-0.11/Makefile.PL.orig   2005-10-30 23:43:52 +0100
   Net-Pcap-0.11/Makefile.PL2005-12-27 19:29:33 +0100
   @@ -15,7 +15,8 @@

} else {
  @@ -220,9 +220,9 @@
}

for my $arg (@ARGV) {
  -Index: Net-Pcap-0.10/Pcap.xs
   Net-Pcap-0.10/Pcap.xs.orig   2005-10-30 12:20:35 +0100
  -+++ Net-Pcap-0.10/Pcap.xs2005-12-27 19:29:33 +0100
  +Index: Net-Pcap-0.11/Pcap.xs
  +--- Net-Pcap-0.11/Pcap.xs.orig   2005-10-30 12:20:35 +0100
   Net-Pcap-0.11/Pcap.xs2005-12-27 19:29:33 +0100
   @@ -31,7 +31,7 @@
#define NEED_sv_2pv_nolen 1
#include ppport.h
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/perl-net/perl-net.spec
  
  $ cvs diff -u -r1.104 -r1.105 perl-net.spec
  --- openpkg-src/perl-net/perl-net.spec27 Dec 2005 18:33:37 -  
1.104
  +++ openpkg-src/perl-net/perl-net.spec28 Dec 2005 18:54:07 -  
1.105
  @@ -41,7 +41,7 @@
   %define   V_curl_easy 1.35
   %define   V_net_imap_simple   1.14
   %define   V_net_bgp   0.08
  -%define   V_net_pcap  0.10
  +%define   V_net_pcap  0.11
   %define   V_net_radius1.44
   %define   V_net_ip1.24
   %define   V_class_gomor_hash  0.22
  @@ -62,7 +62,7 @@
   Group:Language
   License:  GPL/Artistic
   Version:  %{V_perl}
  -Release:  20051227
  +Release:  20051228
   
   #   package options
   %option   with_curl   no
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


[CVS] OpenPKG: openpkg-src/perl-net/ perl-net.patch perl-net.spec

2005-12-27 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-src  Date:   27-Dec-2005 19:33:37
  Branch: HEAD Handle: 2005122718333700

  Modified files:
openpkg-src/perl-netperl-net.patch perl-net.spec

  Log:
modifying package: perl-net-5.8.7 20051207 - 20051227

  Summary:
RevisionChanges Path
1.13+21 -21 openpkg-src/perl-net/perl-net.patch
1.104   +3  -3  openpkg-src/perl-net/perl-net.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/perl-net/perl-net.patch
  
  $ cvs diff -u -r1.12 -r1.13 perl-net.patch
  --- openpkg-src/perl-net/perl-net.patch   1 Dec 2005 07:51:50 -   
1.12
  +++ openpkg-src/perl-net/perl-net.patch   27 Dec 2005 18:33:37 -  
1.13
  @@ -1,6 +1,6 @@
   Index: Net-Packet-2.04/Makefile.PL
   --- Net-Packet-2.04/Makefile.PL.orig 2005-05-22 21:08:20 +0200
  -+++ Net-Packet-2.04/Makefile.PL  2005-11-02 11:37:05 +0100
   Net-Packet-2.04/Makefile.PL  2005-12-27 19:29:14 +0100
   @@ -1,33 +1,5 @@
use ExtUtils::MakeMaker;

  @@ -43,10 +43,10 @@
  Class::Gomor::Hash = '0.20',
   },
   ABSTRACT_FROM = 'Packet.pm',
  -Index: Net-Patricia-1.010/libpatricia/patricia.c
   Net-Patricia-1.010/libpatricia/patricia.c.orig   2000-10-04 22:41:35 
+0200
  -+++ Net-Patricia-1.010/libpatricia/patricia.c2005-11-02 11:37:05 
+0100
  -@@ -35,24 +35,24 @@
  +Index: Net-Patricia-1.014/libpatricia/patricia.c
  +--- Net-Patricia-1.014/libpatricia/patricia.c.orig   2005-12-07 21:55:39 
+0100
   Net-Patricia-1.014/libpatricia/patricia.c2005-12-27 19:29:14 
+0100
  +@@ -38,24 +38,24 @@
/* prefix_tochar
 * convert prefix information to bytes
 */
  @@ -75,7 +75,7 @@
return (1);
}
return (0);
  -@@ -67,7 +67,7 @@
  +@@ -70,7 +70,7 @@
int
inet_pton (int af, const char *src, void *dst)
{
  @@ -84,7 +84,7 @@

if (af == AF_INET) {
result = inet_addr(src);
  -@@ -101,7 +101,7 @@
  +@@ -104,7 +104,7 @@
{
if (af == AF_INET) {
int i, c, val;
  @@ -93,7 +93,7 @@

for (i = 0; ; i++) {
c = *src++;
  -@@ -150,7 +150,7 @@
  +@@ -153,7 +153,7 @@

struct buffer {
char buffs[16][48+5];
  @@ -102,7 +102,7 @@
} *buffp;

#if 0
  -@@ -169,7 +169,7 @@
  +@@ -172,7 +172,7 @@
buff = buffp-buffs[buffp-i++%16];
}
if (prefix-family == AF_INET) {
  @@ -111,7 +111,7 @@
assert (prefix-bitlen = 32);
a = prefix_touchar (prefix);
if (with_len) {
  -@@ -269,7 +269,7 @@
  +@@ -272,7 +272,7 @@
prefix_t *
ascii2prefix (int family, char *string)
{
  @@ -120,7 +120,7 @@
char *cp;
struct in_addr sin;
#ifdef HAVE_IPV6
  -@@ -466,8 +466,8 @@
  +@@ -491,8 +491,8 @@
patricia_search_exact (patricia_tree_t *patricia, prefix_t *prefix)
{
patricia_node_t *node;
  @@ -131,7 +131,7 @@

assert (patricia);
assert (prefix);
  -@@ -538,8 +538,8 @@
  +@@ -563,8 +563,8 @@
{
patricia_node_t *node;
patricia_node_t *stack[PATRICIA_MAXBITS + 1];
  @@ -142,7 +142,7 @@
int cnt = 0;

assert (patricia);
  -@@ -637,8 +637,8 @@
  +@@ -662,8 +662,8 @@
patricia_lookup (patricia_tree_t *patricia, prefix_t *prefix)
{
patricia_node_t *node, *new_node, *parent, *glue;
  @@ -153,9 +153,9 @@
int i, j, r;

assert (patricia);
  -Index: Net-Patricia-1.010/libpatricia/patricia.h
   Net-Patricia-1.010/libpatricia/patricia.h.orig   2000-09-29 21:28:26 
+0200
  -+++ Net-Patricia-1.010/libpatricia/patricia.h2005-11-02 11:37:05 
+0100
  +Index: Net-Patricia-1.014/libpatricia/patricia.h
  +--- Net-Patricia-1.014/libpatricia/patricia.h.orig   2005-12-07 21:54:52 
+0100
   Net-Patricia-1.014/libpatricia/patricia.h2005-12-27 19:29:33 
+0100
   @@ -15,10 +15,10 @@
#ifndef _PATRICIA_H
#define _PATRICIA_H
  @@ -169,7 +169,7 @@
#define MAXLINE 1024
#define BIT_TEST(f, b)  ((f)  (b))
/* } */
  -@@ -32,15 +32,15 @@
  +@@ -40,15 +40,15 @@
/* { from mrt.h */

typedef struct _prefix4_t {
  @@ -189,7 +189,7 @@
int ref_count;  /* reference count */
union {
struct in_addr sin;
  -@@ -53,7 +53,7 @@
  +@@ -61,7 +61,7 @@
/* } */

typedef struct _patricia_node_t {
  @@ -198,7 +198,7 @@
   prefix_t *prefix;/* who we are in patricia tree */
   struct _patricia_node_t *l, *r;  

[CVS] OpenPKG: openpkg-src/perl-net/ perl-net.patch perl-net.spec

2005-11-30 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-src  Date:   01-Dec-2005 08:51:50
  Branch: HEAD Handle: 2005120107515000

  Modified files:
openpkg-src/perl-netperl-net.patch perl-net.spec

  Log:
modifying package: perl-net-5.8.7 20051102 - 20051201

  Summary:
RevisionChanges Path
1.12+0  -12 openpkg-src/perl-net/perl-net.patch
1.102   +2  -2  openpkg-src/perl-net/perl-net.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/perl-net/perl-net.patch
  
  $ cvs diff -u -r1.11 -r1.12 perl-net.patch
  --- openpkg-src/perl-net/perl-net.patch   2 Nov 2005 10:45:16 -   
1.11
  +++ openpkg-src/perl-net/perl-net.patch   1 Dec 2005 07:51:50 -   
1.12
  @@ -232,15 +232,3 @@

#ifdef _WINPCAP
#include Win32-Extensions.h
  -Index: Net-Server-0.88/lib/Net/Server.pm
   Net-Server-0.88/lib/Net/Server.pm.orig   2005-06-21 23:16:03 +0200
  -+++ Net-Server-0.88/lib/Net/Server.pm2005-11-02 11:37:05 +0100
  -@@ -423,7 +423,7 @@
  - $self-log(1,User Not Defined.  Defaulting to EUID '$'\n);
  - $prop-{user}  = $;
  -   }else{
  --if( $prop-{user} =~ /^(\w+)$/ ){
  -+if( $prop-{user} =~ /^([\w-]+)$/ ){
  -   $prop-{user} = eval{ get_uid( $1 ) };
  -   $self-fatal( $@ ) if $@;
  - }else{
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/perl-net/perl-net.spec
  
  $ cvs diff -u -r1.101 -r1.102 perl-net.spec
  --- openpkg-src/perl-net/perl-net.spec2 Nov 2005 10:45:17 -   
1.101
  +++ openpkg-src/perl-net/perl-net.spec1 Dec 2005 07:51:50 -   
1.102
  @@ -28,7 +28,7 @@
   %define   V_net_ipv4addr  0.10
   %define   V_net_ipv6addr  0.2
   %define   V_net_daemon0.38
  -%define   V_net_server0.88
  +%define   V_net_server0.89
   %define   V_net_ext   1.011
   %define   V_libnet1.19
   %define   V_net_netmask   1.9012
  @@ -62,7 +62,7 @@
   Group:Language
   License:  GPL/Artistic
   Version:  %{V_perl}
  -Release:  20051102
  +Release:  20051201
   
   #   package options
   %option   with_curl   no
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


[CVS] OpenPKG: openpkg-src/perl-net/ perl-net.patch perl-net.spec

2005-11-02 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-src  Date:   02-Nov-2005 11:45:17
  Branch: HEAD Handle: 2005110210451601

  Modified files:
openpkg-src/perl-netperl-net.patch perl-net.spec

  Log:
modifying package: perl-net-5.8.7 20051031 - 20051102

  Summary:
RevisionChanges Path
1.11+14 -14 openpkg-src/perl-net/perl-net.patch
1.101   +2  -2  openpkg-src/perl-net/perl-net.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/perl-net/perl-net.patch
  
  $ cvs diff -u -r1.10 -r1.11 perl-net.patch
  --- openpkg-src/perl-net/perl-net.patch   31 Oct 2005 19:11:08 -  
1.10
  +++ openpkg-src/perl-net/perl-net.patch   2 Nov 2005 10:45:16 -   
1.11
  @@ -1,6 +1,6 @@
   Index: Net-Packet-2.04/Makefile.PL
   --- Net-Packet-2.04/Makefile.PL.orig 2005-05-22 21:08:20 +0200
  -+++ Net-Packet-2.04/Makefile.PL  2005-10-31 20:06:29 +0100
   Net-Packet-2.04/Makefile.PL  2005-11-02 11:37:05 +0100
   @@ -1,33 +1,5 @@
use ExtUtils::MakeMaker;

  @@ -45,7 +45,7 @@
   ABSTRACT_FROM = 'Packet.pm',
   Index: Net-Patricia-1.010/libpatricia/patricia.c
   --- Net-Patricia-1.010/libpatricia/patricia.c.orig   2000-10-04 22:41:35 
+0200
  -+++ Net-Patricia-1.010/libpatricia/patricia.c2005-10-31 20:06:29 
+0100
   Net-Patricia-1.010/libpatricia/patricia.c2005-11-02 11:37:05 
+0100
   @@ -35,24 +35,24 @@
/* prefix_tochar
 * convert prefix information to bytes
  @@ -155,7 +155,7 @@
assert (patricia);
   Index: Net-Patricia-1.010/libpatricia/patricia.h
   --- Net-Patricia-1.010/libpatricia/patricia.h.orig   2000-09-29 21:28:26 
+0200
  -+++ Net-Patricia-1.010/libpatricia/patricia.h2005-10-31 20:06:29 
+0100
   Net-Patricia-1.010/libpatricia/patricia.h2005-11-02 11:37:05 
+0100
   @@ -15,10 +15,10 @@
#ifndef _PATRICIA_H
#define _PATRICIA_H
  @@ -207,22 +207,22 @@
   int num_active_node; /* for debug purpose */
} patricia_tree_t;

  -Index: Net-Pcap-0.09/Makefile.PL
   Net-Pcap-0.09/Makefile.PL.orig   2005-10-26 23:39:53 +0200
  -+++ Net-Pcap-0.09/Makefile.PL2005-10-31 20:07:32 +0100
  +Index: Net-Pcap-0.10/Makefile.PL
  +--- Net-Pcap-0.10/Makefile.PL.orig   2005-10-30 23:43:52 +0100
   Net-Pcap-0.10/Makefile.PL2005-11-02 11:37:35 +0100
   @@ -15,7 +15,8 @@

} else {
  - $config{CCFLAGS} = '-Wall';
  --$config{LIBS}= '-lpcap';
  -+$config{INC} = '[EMAIL PROTECTED]@/include';
  -+$config{LIBS}= '[EMAIL PROTECTED]@/lib -lpcap';
  + $options{CCFLAGS} = '-Wall' if $] = 5.006;
  +-$options{LIBS}= '-lpcap';
  ++$options{INC} = '[EMAIL PROTECTED]@/include';
  ++$options{LIBS}= '[EMAIL PROTECTED]@/lib -lpcap';
}

for my $arg (@ARGV) {
  -Index: Net-Pcap-0.09/Pcap.xs
   Net-Pcap-0.09/Pcap.xs.orig   2005-10-26 13:52:19 +0200
  -+++ Net-Pcap-0.09/Pcap.xs2005-10-31 20:06:45 +0100
  +Index: Net-Pcap-0.10/Pcap.xs
  +--- Net-Pcap-0.10/Pcap.xs.orig   2005-10-30 12:20:35 +0100
   Net-Pcap-0.10/Pcap.xs2005-11-02 11:37:05 +0100
   @@ -31,7 +31,7 @@
#define NEED_sv_2pv_nolen 1
#include ppport.h
  @@ -234,7 +234,7 @@
#include Win32-Extensions.h
   Index: Net-Server-0.88/lib/Net/Server.pm
   --- Net-Server-0.88/lib/Net/Server.pm.orig   2005-06-21 23:16:03 +0200
  -+++ Net-Server-0.88/lib/Net/Server.pm2005-10-31 20:06:29 +0100
   Net-Server-0.88/lib/Net/Server.pm2005-11-02 11:37:05 +0100
   @@ -423,7 +423,7 @@
$self-log(1,User Not Defined.  Defaulting to EUID '$'\n);
$prop-{user}  = $;
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/perl-net/perl-net.spec
  
  $ cvs diff -u -r1.100 -r1.101 perl-net.spec
  --- openpkg-src/perl-net/perl-net.spec31 Oct 2005 19:11:08 -  
1.100
  +++ openpkg-src/perl-net/perl-net.spec2 Nov 2005 10:45:17 -   
1.101
  @@ -41,7 +41,7 @@
   %define   V_curl_easy 1.35
   %define   V_net_imap_simple   0.93
   %define   V_net_bgp   0.08
  -%define   V_net_pcap  0.09
  +%define   V_net_pcap  0.10
   %define   V_net_radius1.44
   %define   V_net_ip1.24
   %define   V_class_gomor_hash  0.22
  @@ -62,7 +62,7 @@
   Group:Language
   License:  GPL/Artistic
   Version:  %{V_perl}
  -Release:  20051031
  +Release:  20051102

[CVS] OpenPKG: openpkg-src/perl-net/ perl-net.patch perl-net.spec

2005-10-31 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-src  Date:   31-Oct-2005 20:11:08
  Branch: HEAD Handle: 2005103119110800

  Modified files:
openpkg-src/perl-netperl-net.patch perl-net.spec

  Log:
upgrade Net::Pcap module and cleanup some parts of the packaging

  Summary:
RevisionChanges Path
1.10+26 -26 openpkg-src/perl-net/perl-net.patch
1.100   +5  -5  openpkg-src/perl-net/perl-net.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/perl-net/perl-net.patch
  
  $ cvs diff -u -r1.9 -r1.10 perl-net.patch
  --- openpkg-src/perl-net/perl-net.patch   25 Jun 2005 11:51:09 -  
1.9
  +++ openpkg-src/perl-net/perl-net.patch   31 Oct 2005 19:11:08 -  
1.10
  @@ -1,6 +1,6 @@
   Index: Net-Packet-2.04/Makefile.PL
   --- Net-Packet-2.04/Makefile.PL.orig 2005-05-22 21:08:20 +0200
  -+++ Net-Packet-2.04/Makefile.PL  2005-06-25 13:38:45 +0200
   Net-Packet-2.04/Makefile.PL  2005-10-31 20:06:29 +0100
   @@ -1,33 +1,5 @@
use ExtUtils::MakeMaker;

  @@ -45,7 +45,7 @@
   ABSTRACT_FROM = 'Packet.pm',
   Index: Net-Patricia-1.010/libpatricia/patricia.c
   --- Net-Patricia-1.010/libpatricia/patricia.c.orig   2000-10-04 22:41:35 
+0200
  -+++ Net-Patricia-1.010/libpatricia/patricia.c2005-06-25 13:38:45 
+0200
   Net-Patricia-1.010/libpatricia/patricia.c2005-10-31 20:06:29 
+0100
   @@ -35,24 +35,24 @@
/* prefix_tochar
 * convert prefix information to bytes
  @@ -155,7 +155,7 @@
assert (patricia);
   Index: Net-Patricia-1.010/libpatricia/patricia.h
   --- Net-Patricia-1.010/libpatricia/patricia.h.orig   2000-09-29 21:28:26 
+0200
  -+++ Net-Patricia-1.010/libpatricia/patricia.h2005-06-25 13:38:45 
+0200
   Net-Patricia-1.010/libpatricia/patricia.h2005-10-31 20:06:29 
+0100
   @@ -15,10 +15,10 @@
#ifndef _PATRICIA_H
#define _PATRICIA_H
  @@ -207,34 +207,34 @@
   int num_active_node; /* for debug purpose */
} patricia_tree_t;

  -Index: Net-Pcap-0.05/Makefile.PL
   Net-Pcap-0.05/Makefile.PL.orig   1999-03-12 00:34:01 +0100
  -+++ Net-Pcap-0.05/Makefile.PL2005-06-25 13:38:45 +0200
  -@@ -10,7 +10,8 @@
  - 'NAME' = 'Net::Pcap',
  - 'DISTNAME' = 'Net-Pcap',
  - 'VERSION_FROM' = 'Pcap.pm',
  --'LIBS' = ['-lpcap'], 
  -+'INC'  = '[EMAIL PROTECTED]@/include', 
  -+'LIBS' = ['[EMAIL PROTECTED]@/lib -lpcap'], 
  - dist = {
  - 'COMPRESS' = gzip -9f,
  - 'SUFFIX'   = gz
  -Index: Net-Pcap-0.05/Pcap.xs
   Net-Pcap-0.05/Pcap.xs.orig   2003-06-14 14:15:18 +0200
  -+++ Net-Pcap-0.05/Pcap.xs2005-06-25 13:38:45 +0200
  -@@ -18,7 +18,7 @@
  - #include EXTERN.h
  - #include perl.h
  - #include XSUB.h
  +Index: Net-Pcap-0.09/Makefile.PL
  +--- Net-Pcap-0.09/Makefile.PL.orig   2005-10-26 23:39:53 +0200
   Net-Pcap-0.09/Makefile.PL2005-10-31 20:07:32 +0100
  +@@ -15,7 +15,8 @@
  + 
  + } else {
  + $config{CCFLAGS} = '-Wall';
  +-$config{LIBS}= '-lpcap';
  ++$config{INC} = '[EMAIL PROTECTED]@/include';
  ++$config{LIBS}= '[EMAIL PROTECTED]@/lib -lpcap';
  + }
  + 
  + for my $arg (@ARGV) {
  +Index: Net-Pcap-0.09/Pcap.xs
  +--- Net-Pcap-0.09/Pcap.xs.orig   2005-10-26 13:52:19 +0200
   Net-Pcap-0.09/Pcap.xs2005-10-31 20:06:45 +0100
  +@@ -31,7 +31,7 @@
  + #define NEED_sv_2pv_nolen 1
  + #include ppport.h
  + 
   -#include pcap.h
   +#include pcap.h

  - #ifdef __cplusplus
  - }
  + #ifdef _WINPCAP
  + #include Win32-Extensions.h
   Index: Net-Server-0.88/lib/Net/Server.pm
   --- Net-Server-0.88/lib/Net/Server.pm.orig   2005-06-21 23:16:03 +0200
  -+++ Net-Server-0.88/lib/Net/Server.pm2005-06-25 13:39:52 +0200
   Net-Server-0.88/lib/Net/Server.pm2005-10-31 20:06:29 +0100
   @@ -423,7 +423,7 @@
$self-log(1,User Not Defined.  Defaulting to EUID '$'\n);
$prop-{user}  = $;
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/perl-net/perl-net.spec
  
  $ cvs diff -u -r1.99 -r1.100 perl-net.spec
  --- openpkg-src/perl-net/perl-net.spec22 Oct 2005 10:34:45 -  
1.99
  +++ openpkg-src/perl-net/perl-net.spec31 Oct 2005 19:11:08 -  
1.100
  @@ -41,7 +41,7 @@
   %define   V_curl_easy 1.35
   %define   V_net_imap_simple   0.93
   %define   V_net_bgp   0.08
  -%define   V_net_pcap  0.05
  

[CVS] OpenPKG: openpkg-src/perl-net/ perl-net.patch perl-net.spec

2005-02-10 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /e/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-src  Date:   10-Feb-2005 12:41:32
  Branch: HEAD Handle: 2005021011413200

  Modified files:
openpkg-src/perl-netperl-net.patch perl-net.spec

  Log:
modifying package: perl-net-5.8.6 20050129 - 20050210

  Summary:
RevisionChanges Path
1.7 +46 -0  openpkg-src/perl-net/perl-net.patch
1.82+62 -31 openpkg-src/perl-net/perl-net.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/perl-net/perl-net.patch
  
  $ cvs diff -u -r1.6 -r1.7 perl-net.patch
  --- openpkg-src/perl-net/perl-net.patch   17 Dec 2004 22:47:53 -  
1.6
  +++ openpkg-src/perl-net/perl-net.patch   10 Feb 2005 11:41:32 -  
1.7
  @@ -207,3 +207,49 @@
   int num_active_node; /* for debug purpose */
} patricia_tree_t;

  +Index: Net-Packet-2.03/Makefile.PL
  +--- Net-Packet-2.03/Makefile.PL.orig 2005-01-16 18:02:02 +0100
   Net-Packet-2.03/Makefile.PL  2005-02-10 12:30:38 +0100
  +@@ -3,34 +3,6 @@
  + 
  + use ExtUtils::MakeMaker;
  + 
  +-die(*** Microsoft Windows not supported\n)
  +-   if $^O =~ /win/i;
  +-die(*** Big endian architectures not supported yet\n)
  +-   if unpack(h*, pack(s, 1)) =~ /01/;
  +-
  +-require DynaLoader;
  +-
  +-my $file = DynaLoader::dl_findfile('-lpcap')
  +-   or die(*** Cannot find libpcap, try setting LD_LIBRARY_PATH\n);
  +-
  +-my ($lib) = $file =~ /^(.*)\//;
  +-(my $inc  = $lib) =~ s/lib/include/;
  +-
  +-sub _getPcapHPath { (-d $inc/pcap) ? [$inc/pcap] : [$inc] }
  +-
  +-unless (-f $inc/pcap-int.h || -f $inc/pcap/pcap-int.h) {
  +-   die(*** Cannot find pcap-int.h . Get it from your installed libpcap .
  +-   source distribution and copy it to: . _getPcapHPath().
  +-(near pcap.h)\n);
  +-}
  +-
  +-$inc = -I$inc -I$inc/pcap;
  +-$lib = -L$lib;
  +-
  +-print Found libpcap:[$file]\n;
  +-print Will use lib: [$lib]\n;
  +-print Will use include: [$inc]\n;
  +-
  + WriteMakefile(
  +NAME  = 'Net::Packet',
  +VERSION_FROM  = 'Packet.pm',
  +@@ -40,7 +12,6 @@
  +   IO::Interface  = 0,
  +   Net::Pcap  = '0.04',
  +   Net::IPv6Addr  = 0,
  +-  Socket6= 0,
  +   Class::Gomor::Hash = '0.20',
  +},
  +ABSTRACT_FROM = 'Packet.pm',
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/perl-net/perl-net.spec
  
  $ cvs diff -u -r1.81 -r1.82 perl-net.spec
  --- openpkg-src/perl-net/perl-net.spec29 Jan 2005 09:55:40 -  
1.81
  +++ openpkg-src/perl-net/perl-net.spec10 Feb 2005 11:41:32 -  
1.82
  @@ -25,6 +25,9 @@
   
   #   versions of individual parts
   %define   V_perl  5.8.6
  +%define   V_math_base85   0.2
  +%define   V_net_ipv4addr  0.10
  +%define   V_net_ipv6addr  0.2
   %define   V_net_daemon0.38
   %define   V_net_server0.87
   %define   V_net_ext   1.011
  @@ -42,7 +45,7 @@
   %define   V_net_pcap  0.05
   %define   V_net_radius1.44
   %define   V_net_ip1.21
  -%define   V_net_packet1.28
  +%define   V_net_packet2.03
   %define   V_net_xmpp  1.0
   %define   V_net_jabber2.0
   %define   V_net_patricia  1.010
  @@ -58,34 +61,37 @@
   Group:Language
   License:  GPL/Artistic
   Version:  %{V_perl}
  -Release:  20050129
  +Release:  20050210
   
   #   package options
   %option   with_curl   no
   %option   with_pcap   no
   
   #   list of sources
  -Source0:  
http://www.cpan.org/modules/by-module/Net/Net-Daemon-%{V_net_daemon}.tar.gz
  -Source1:  
http://www.cpan.org/modules/by-module/Net/Net-Server-%{V_net_server}.tar.gz
  -Source2:  
http://www.cpan.org/modules/by-module/Net/Net-ext-%{V_net_ext}.tar.gz
  -Source3:  
http://www.cpan.org/modules/by-module/Net/libnet-%{V_libnet}.tar.gz
  -Source4:  
http://www.cpan.org/modules/by-module/Net/Net-Netmask-%{V_net_netmask}.tar.gz
  -Source5:  
http://www.cpan.org/modules/by-module/Net/Net-FTP-Common-%{V_net_ftp_common}.tar.gz
  -Source6:  
http://www.cpan.org/modules/by-module/Net/Net-SNMP-%{V_net_snmp}.tar.gz
  -Source7:  
http://www.cpan.org/modules/by-module/Net/Net-TFTP-%{V_net_tftp}.tar.gz
  -Source8:  
http://www.cpan.org/modules/by-module/Net/Net-Telnet-%{V_net_telnet}.tar.gz
  

[CVS] OpenPKG: openpkg-src/perl-net/ perl-net.patch perl-net.spec

2004-12-17 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /e/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-src  Date:   17-Dec-2004 23:47:53
  Branch: HEAD Handle: 2004121722475300

  Modified files:
openpkg-src/perl-netperl-net.patch perl-net.spec

  Log:
add prereq for forthcoming flowscan

  Summary:
RevisionChanges Path
1.6 +164 -0 openpkg-src/perl-net/perl-net.patch
1.78+11 -1  openpkg-src/perl-net/perl-net.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/perl-net/perl-net.patch
  
  $ cvs diff -u -r1.5 -r1.6 perl-net.patch
  --- openpkg-src/perl-net/perl-net.patch   28 Jul 2004 10:50:01 -  
1.5
  +++ openpkg-src/perl-net/perl-net.patch   17 Dec 2004 22:47:53 -  
1.6
  @@ -43,3 +43,167 @@

#ifdef __cplusplus
}
  +Index: Net-Patricia-1.010/libpatricia/patricia.c
  +--- Net-Patricia-1.010/libpatricia/patricia.c.orig   2000-10-04 22:41:35 
+0200
   Net-Patricia-1.010/libpatricia/patricia.c2004-12-17 23:45:00 
+0100
  +@@ -35,24 +35,24 @@
  + /* prefix_tochar
  +  * convert prefix information to bytes
  +  */
  +-u_char *
  ++unsigned char *
  + prefix_tochar (prefix_t * prefix)
  + {
  + if (prefix == NULL)
  + return (NULL);
  + 
  +-return ((u_char *)  prefix-add.sin);
  ++return ((unsigned char *)  prefix-add.sin);
  + }
  + 
  + int 
  +-comp_with_mask (void *addr, void *dest, u_int mask)
  ++comp_with_mask (void *addr, void *dest, unsigned int mask)
  + {
  + 
  + if ( /* mask/8 == 0 || */ memcmp (addr, dest, mask / 8) == 0) {
  + int n = mask / 8;
  + int m = ((-1)  (8 - (mask % 8)));
  + 
  +-if (mask % 8 == 0 || (((u_char *)addr)[n]  m) == (((u_char *)dest)[n] 
 m))
  ++if (mask % 8 == 0 || (((unsigned char *)addr)[n]  m) == (((unsigned 
char *)dest)[n]  m))
  + return (1);
  + }
  + return (0);
  +@@ -67,7 +67,7 @@
  + int
  + inet_pton (int af, const char *src, void *dst)
  + {
  +-u_long result;  
  ++unsigned long result;  
  + 
  + if (af == AF_INET) {
  + result = inet_addr(src);
  +@@ -101,7 +101,7 @@
  + {
  + if (af == AF_INET) {
  + int i, c, val;
  +-u_char xp[4] = {0, 0, 0, 0};
  ++unsigned char xp[4] = {0, 0, 0, 0};
  + 
  + for (i = 0; ; i++) {
  + c = *src++;
  +@@ -150,7 +150,7 @@
  + 
  + struct buffer {
  + char buffs[16][48+5];
  +-u_int i;
  ++unsigned int i;
  + } *buffp;
  + 
  + #if 0
  +@@ -169,7 +169,7 @@
  + buff = buffp-buffs[buffp-i++%16];
  + }
  + if (prefix-family == AF_INET) {
  +-u_char *a;
  ++unsigned char *a;
  + assert (prefix-bitlen = 32);
  + a = prefix_touchar (prefix);
  + if (with_len) {
  +@@ -269,7 +269,7 @@
  + prefix_t *
  + ascii2prefix (int family, char *string)
  + {
  +-u_long bitlen, maxbitlen = 0;
  ++unsigned long bitlen, maxbitlen = 0;
  + char *cp;
  + struct in_addr sin;
  + #ifdef HAVE_IPV6
  +@@ -466,8 +466,8 @@
  + patricia_search_exact (patricia_tree_t *patricia, prefix_t *prefix)
  + {
  + patricia_node_t *node;
  +-u_char *addr;
  +-u_int bitlen;
  ++unsigned char *addr;
  ++unsigned int bitlen;
  + 
  + assert (patricia);
  + assert (prefix);
  +@@ -538,8 +538,8 @@
  + {
  + patricia_node_t *node;
  + patricia_node_t *stack[PATRICIA_MAXBITS + 1];
  +-u_char *addr;
  +-u_int bitlen;
  ++unsigned char *addr;
  ++unsigned int bitlen;
  + int cnt = 0;
  + 
  + assert (patricia);
  +@@ -637,8 +637,8 @@
  + patricia_lookup (patricia_tree_t *patricia, prefix_t *prefix)
  + {
  + patricia_node_t *node, *new_node, *parent, *glue;
  +-u_char *addr, *test_addr;
  +-u_int bitlen, check_bit, differ_bit;
  ++unsigned char *addr, *test_addr;
  ++unsigned int bitlen, check_bit, differ_bit;
  + int i, j, r;
  + 
  + assert (patricia);
  +Index: Net-Patricia-1.010/libpatricia/patricia.h
  +--- Net-Patricia-1.010/libpatricia/patricia.h.orig   2000-09-29 21:28:26 
+0200
   Net-Patricia-1.010/libpatricia/patricia.h2004-12-17 23:44:39 
+0100
  +@@ -15,10 +15,10 @@
  + #ifndef _PATRICIA_H
  + #define _PATRICIA_H
  + 
  +-/* typedef unsigned int u_int; */
  ++/* typedef unsigned int unsigned int; */
  + typedef void (*void_fn_t)();
  + /* { from defs.h */
  +-#define prefix_touchar(prefix) ((u_char *)(prefix)-add.sin)
  ++#define prefix_touchar(prefix) ((unsigned char *)(prefix)-add.sin)
  + #define MAXLINE 1024
  + #define BIT_TEST(f, b)  ((f)  (b))
  + /* } */
  +@@ 

[CVS] OpenPKG: openpkg-src/perl-net/ perl-net.patch perl-net.spec

2004-07-28 Thread Michael Schloh
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Michael Schloh
  Root:   /e/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-src  Date:   28-Jul-2004 12:50:02
  Branch: HEAD Handle: 2004072811500100

  Modified files:
openpkg-src/perl-netperl-net.patch perl-net.spec

  Log:
modifying package: perl-net-5.8.5 20040721 - 20040728

  Summary:
RevisionChanges Path
1.5 +2  -2  openpkg-src/perl-net/perl-net.patch
1.68+2  -2  openpkg-src/perl-net/perl-net.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/perl-net/perl-net.patch
  
  $ cvs diff -u -r1.4 -r1.5 perl-net.patch
  --- openpkg-src/perl-net/perl-net.patch   28 Feb 2004 22:50:32 -  1.4
  +++ openpkg-src/perl-net/perl-net.patch   28 Jul 2004 10:50:01 -  1.5
  @@ -1,6 +1,6 @@
   --- Net-Server-0.87/lib/Net/Server.pm.dist   Tue Apr 22 14:38:13 2003
   +++ Net-Server-0.87/lib/Net/Server.pmTue Apr 22 14:39:16 2003
  -@@ -402,7 +402,7 @@
  +@@ -404,7 +404,7 @@
$self-log(1,Group Not Defined.  Defaulting to EGID '$)'\n);
$prop-{group}  = $);
  }else{
  @@ -9,7 +9,7 @@
  $prop-{group} = eval{ get_gid( $1 ) };
  $self-fatal( $@ ) if $@;
}else{
  -@@ -416,7 +416,7 @@
  +@@ -418,7 +418,7 @@
$self-log(1,User Not Defined.  Defaulting to EUID '$'\n);
$prop-{user}  = $;
  }else{
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/perl-net/perl-net.spec
  
  $ cvs diff -u -r1.67 -r1.68 perl-net.spec
  --- openpkg-src/perl-net/perl-net.spec21 Jul 2004 17:46:06 -  1.67
  +++ openpkg-src/perl-net/perl-net.spec28 Jul 2004 10:50:01 -  1.68
  @@ -35,7 +35,7 @@
   %define   V_net_tftp  0.16
   %define   V_net_telnet3.03
   %define   V_net_telnet_cisco  1.10
  -%define   V_plrpc 0.2017
  +%define   V_plrpc 0.2018
   %define   V_curl_easy 1.35
   %define   V_net_imap_simple   0.93
   %define   V_net_bgp   0.07
  @@ -54,7 +54,7 @@
   Group:Language
   License:  GPL/Artistic
   Version:  %{V_perl}
  -Release:  20040721
  +Release:  20040728
   
   #   package options
   %option   with_curl   no
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List [EMAIL PROTECTED]