Remove packages seemingly abandoned and no longer in production use on any host.

Tue, 28 Aug 2012 18:55:20 +0200

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Tue, 28 Aug 2012 18:55:20 +0200
changeset 622
e35cb8425f97
parent 621
3e3f0a094486
child 623
1a897ff6f07a

Remove packages seemingly abandoned and no longer in production use on any host.

perl-net/perl-net.patch file | annotate | diff | comparison | revisions
perl-net/perl-net.spec file | annotate | diff | comparison | revisions
perl-parse/perl-parse.spec file | annotate | diff | comparison | revisions
perl-sys/perl-sys.patch file | annotate | diff | comparison | revisions
perl-sys/perl-sys.spec file | annotate | diff | comparison | revisions
     1.1 --- a/perl-net/perl-net.patch	Tue Aug 28 18:55:10 2012 +0200
     1.2 +++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.3 @@ -1,303 +0,0 @@
     1.4 -Index: Net-IRC-0.79/Makefile.PL
     1.5 ---- Net-IRC-0.79/Makefile.PL.orig	2009-12-23 18:05:52.000000000 +0100
     1.6 -+++ Net-IRC-0.79/Makefile.PL	2010-12-19 13:16:21.000000000 +0100
     1.7 -@@ -4,29 +4,6 @@
     1.8 - # the contents of the Makefile that is written.
     1.9 - 
    1.10 - exit 0 if $ENV{AUTOMATED_TESTING};
    1.11 --my $ok = 'I acknowledge that Net::IRC is unsupported and I wish to proceed.';
    1.12 --my $warning = <<WILLROBINSON;
    1.13 ----------------------------------------------------------------------------------
    1.14 --********************************************************************************
    1.15 --DANGER, WILL ROBINSON! DANGER!
    1.16 --
    1.17 --This module has been deprecated, abandoned, and is no longer supported. It has
    1.18 --not seen active development in five years, and its original author has moved on.
    1.19 --We *STRONGLY* recommend you port your code to either Bot::BasicBot or
    1.20 --POE::Component::IRC. Please feel free to stop by irc.freenode.net/#perl for help
    1.21 --making this transition. Or, if you insist on proceeding, please type the
    1.22 --following line exactly as is and then press Enter:
    1.23 --
    1.24 --$ok
    1.25 --********************************************************************************
    1.26 ----------------------------------------------------------------------------------
    1.27 --WILLROBINSON
    1.28 --
    1.29 ---t STDIN or die $warning;
    1.30 --warn $warning;
    1.31 --chomp(my $acceptance = <STDIN>);
    1.32 --die "Refusing to install due to lack of confirmation" unless $acceptance eq $ok;
    1.33 --
    1.34 - 
    1.35 - WriteMakefile(
    1.36 - 	      'NAME'  => 'Net::IRC',
    1.37 -Index: Net-Packet-3.27/Makefile.PL
    1.38 ---- Net-Packet-3.27/Makefile.PL.orig	2009-11-09 18:58:29.000000000 +0100
    1.39 -+++ Net-Packet-3.27/Makefile.PL	2010-12-19 13:15:40.000000000 +0100
    1.40 -@@ -15,7 +15,6 @@
    1.41 -       Time::HiRes   => 0,
    1.42 -       Net::IPv6Addr => 0,
    1.43 -       Net::IPv4Addr => 0,
    1.44 --      Socket6       => 0,
    1.45 -       Bit::Vector   => 0,
    1.46 -    },
    1.47 -    ABSTRACT_FROM => 'lib/Net/Packet.pm',
    1.48 -Index: Net-Patricia-1.15/libpatricia/patricia.c
    1.49 ---- Net-Patricia-1.15/libpatricia/patricia.c.orig	2009-04-19 06:28:15.000000000 +0200
    1.50 -+++ Net-Patricia-1.15/libpatricia/patricia.c	2010-12-19 13:15:40.000000000 +0100
    1.51 -@@ -38,24 +38,24 @@
    1.52 - /* prefix_tochar
    1.53 -  * convert prefix information to bytes
    1.54 -  */
    1.55 --u_char *
    1.56 -+unsigned char *
    1.57 - prefix_tochar (prefix_t * prefix)
    1.58 - {
    1.59 -     if (prefix == NULL)
    1.60 - 	return (NULL);
    1.61 - 
    1.62 --    return ((u_char *) & prefix->add.sin);
    1.63 -+    return ((unsigned char *) & prefix->add.sin);
    1.64 - }
    1.65 - 
    1.66 - int 
    1.67 --comp_with_mask (void *addr, void *dest, u_int mask)
    1.68 -+comp_with_mask (void *addr, void *dest, unsigned int mask)
    1.69 - {
    1.70 - 
    1.71 -     if ( /* mask/8 == 0 || */ memcmp (addr, dest, mask / 8) == 0) {
    1.72 - 	int n = mask / 8;
    1.73 - 	int m = ((-1) << (8 - (mask % 8)));
    1.74 - 
    1.75 --	if (mask % 8 == 0 || (((u_char *)addr)[n] & m) == (((u_char *)dest)[n] & m))
    1.76 -+	if (mask % 8 == 0 || (((unsigned char *)addr)[n] & m) == (((unsigned char *)dest)[n] & m))
    1.77 - 	    return (1);
    1.78 -     }
    1.79 -     return (0);
    1.80 -@@ -70,7 +70,7 @@
    1.81 - int
    1.82 - inet_pton (int af, const char *src, void *dst)
    1.83 - {
    1.84 --    u_long result;  
    1.85 -+    unsigned long result;  
    1.86 - 
    1.87 -     if (af == AF_INET) {
    1.88 - 	result = inet_addr(src);
    1.89 -@@ -104,7 +104,7 @@
    1.90 - {
    1.91 -     if (af == AF_INET) {
    1.92 -         int i, c, val;
    1.93 --        u_char xp[4] = {0, 0, 0, 0};
    1.94 -+        unsigned char xp[4] = {0, 0, 0, 0};
    1.95 - 
    1.96 -         for (i = 0; ; i++) {
    1.97 - 	    c = *src++;
    1.98 -@@ -153,7 +153,7 @@
    1.99 - 
   1.100 -         struct buffer {
   1.101 -             char buffs[16][48+5];
   1.102 --            u_int i;
   1.103 -+            unsigned int i;
   1.104 -         } *buffp;
   1.105 - 
   1.106 - #    if 0
   1.107 -@@ -172,7 +172,7 @@
   1.108 - 	buff = buffp->buffs[buffp->i++%16];
   1.109 -     }
   1.110 -     if (prefix->family == AF_INET) {
   1.111 --	u_char *a;
   1.112 -+	unsigned char *a;
   1.113 - 	assert (prefix->bitlen <= 32);
   1.114 - 	a = prefix_touchar (prefix);
   1.115 - 	if (with_len) {
   1.116 -@@ -272,7 +272,7 @@
   1.117 - prefix_t *
   1.118 - ascii2prefix (int family, char *string)
   1.119 - {
   1.120 --    u_long bitlen, maxbitlen = 0;
   1.121 -+    unsigned long bitlen, maxbitlen = 0;
   1.122 -     char *cp;
   1.123 -     struct in_addr sin;
   1.124 - #ifdef HAVE_IPV6
   1.125 -@@ -491,8 +491,8 @@
   1.126 - patricia_search_exact (patricia_tree_t *patricia, prefix_t *prefix)
   1.127 - {
   1.128 -     patricia_node_t *node;
   1.129 --    u_char *addr;
   1.130 --    u_int bitlen;
   1.131 -+    unsigned char *addr;
   1.132 -+    unsigned int bitlen;
   1.133 - 
   1.134 -     assert (patricia);
   1.135 -     assert (prefix);
   1.136 -@@ -563,8 +563,8 @@
   1.137 - {
   1.138 -     patricia_node_t *node;
   1.139 -     patricia_node_t *stack[PATRICIA_MAXBITS + 1];
   1.140 --    u_char *addr;
   1.141 --    u_int bitlen;
   1.142 -+    unsigned char *addr;
   1.143 -+    unsigned int bitlen;
   1.144 -     int cnt = 0;
   1.145 - 
   1.146 -     assert (patricia);
   1.147 -@@ -662,8 +662,8 @@
   1.148 - patricia_lookup (patricia_tree_t *patricia, prefix_t *prefix)
   1.149 - {
   1.150 -     patricia_node_t *node, *new_node, *parent, *glue;
   1.151 --    u_char *addr, *test_addr;
   1.152 --    u_int bitlen, check_bit, differ_bit;
   1.153 -+    unsigned char *addr, *test_addr;
   1.154 -+    unsigned int bitlen, check_bit, differ_bit;
   1.155 -     int i, j, r;
   1.156 - 
   1.157 -     assert (patricia);
   1.158 -Index: Net-Patricia-1.15/libpatricia/patricia.h
   1.159 ---- Net-Patricia-1.15/libpatricia/patricia.h.orig	2009-04-19 06:28:15.000000000 +0200
   1.160 -+++ Net-Patricia-1.15/libpatricia/patricia.h	2010-12-19 13:15:40.000000000 +0100
   1.161 -@@ -15,10 +15,10 @@
   1.162 - #ifndef _PATRICIA_H
   1.163 - #define _PATRICIA_H
   1.164 - 
   1.165 --/* typedef unsigned int u_int; */
   1.166 -+/* typedef unsigned int unsigned int; */
   1.167 - typedef void (*void_fn_t)();
   1.168 - /* { from defs.h */
   1.169 --#define prefix_touchar(prefix) ((u_char *)&(prefix)->add.sin)
   1.170 -+#define prefix_touchar(prefix) ((unsigned char *)&(prefix)->add.sin)
   1.171 - #define MAXLINE 1024
   1.172 - #define BIT_TEST(f, b)  ((f) & (b))
   1.173 - /* } */
   1.174 -@@ -40,15 +40,15 @@
   1.175 - /* { from mrt.h */
   1.176 - 
   1.177 - typedef struct _prefix4_t {
   1.178 --    u_short family;		/* AF_INET | AF_INET6 */
   1.179 --    u_short bitlen;		/* same as mask? */
   1.180 -+    unsigned short family;		/* AF_INET | AF_INET6 */
   1.181 -+    unsigned short bitlen;		/* same as mask? */
   1.182 -     int ref_count;		/* reference count */
   1.183 -     struct in_addr sin;
   1.184 - } prefix4_t;
   1.185 - 
   1.186 - typedef struct _prefix_t {
   1.187 --    u_short family;		/* AF_INET | AF_INET6 */
   1.188 --    u_short bitlen;		/* same as mask? */
   1.189 -+    unsigned short family;		/* AF_INET | AF_INET6 */
   1.190 -+    unsigned short bitlen;		/* same as mask? */
   1.191 -     int ref_count;		/* reference count */
   1.192 -     union {
   1.193 - 		struct in_addr sin;
   1.194 -@@ -61,7 +61,7 @@
   1.195 - /* } */
   1.196 - 
   1.197 - typedef struct _patricia_node_t {
   1.198 --   u_int bit;			/* flag if this node used */
   1.199 -+   unsigned int bit;			/* flag if this node used */
   1.200 -    prefix_t *prefix;		/* who we are in patricia tree */
   1.201 -    struct _patricia_node_t *l, *r;	/* left and right children */
   1.202 -    struct _patricia_node_t *parent;/* may be used */
   1.203 -@@ -71,7 +71,7 @@
   1.204 - 
   1.205 - typedef struct _patricia_tree_t {
   1.206 -    patricia_node_t 	*head;
   1.207 --   u_int		maxbits;	/* for IP, 32 bit addresses */
   1.208 -+   unsigned int		maxbits;	/* for IP, 32 bit addresses */
   1.209 -    int num_active_node;		/* for debug purpose */
   1.210 - } patricia_tree_t;
   1.211 - 
   1.212 -Index: Net-Pcap-0.16/Makefile.PL
   1.213 ---- Net-Pcap-0.16/Makefile.PL.orig	2007-12-24 00:06:15.000000000 +0100
   1.214 -+++ Net-Pcap-0.16/Makefile.PL	2010-12-19 13:15:40.000000000 +0100
   1.215 -@@ -23,7 +23,8 @@
   1.216 - }
   1.217 - else {
   1.218 -     $options{CCFLAGS} = '-Wall -Wwrite-strings' if $Config{ccname} eq 'gcc' and $] >= 5.006;
   1.219 --    $options{LIBS}    = '-lpcap';
   1.220 -+    $options{INC}     = '-I/openpkg/include';
   1.221 -+    $options{LIBS}    = '-L/openpkg/lib -lpcap';
   1.222 - }
   1.223 - 
   1.224 - for my $arg (@ARGV) {
   1.225 -Index: Net-Pcap-0.16/Pcap.xs
   1.226 ---- Net-Pcap-0.16/Pcap.xs.orig	2008-01-01 05:22:22.000000000 +0100
   1.227 -+++ Net-Pcap-0.16/Pcap.xs	2010-12-19 13:15:40.000000000 +0100
   1.228 -@@ -33,7 +33,7 @@
   1.229 - #define NEED_sv_2pv_nolen 1
   1.230 - #include "ppport.h"
   1.231 - 
   1.232 --#include <pcap.h>
   1.233 -+#include "pcap.h"
   1.234 - 
   1.235 - #ifdef _CYGWIN
   1.236 - #include <Win32-Extensions.h>
   1.237 -Index: Net-RabbitMQ-0.0.4/Makefile.PL
   1.238 ---- Net-RabbitMQ-0.0.4/Makefile.PL.orig	2009-11-12 21:15:45.000000000 +0100
   1.239 -+++ Net-RabbitMQ-0.0.4/Makefile.PL	2010-12-19 13:15:40.000000000 +0100
   1.240 -@@ -2,12 +2,16 @@
   1.241 - use ExtUtils::MakeMaker 5.16 ;
   1.242 - use Config ;
   1.243 - 
   1.244 --my @parts = qw/api connection debug framing mem socket table/;
   1.245 --my $cfiles = join(' ', map { "librabbitmq/amqp_$_.c" } @parts);
   1.246 --
   1.247 - WriteMakefile(
   1.248 -         NAME            => 'Net::RabbitMQ',
   1.249 -         VERSION_FROM    => 'RabbitMQ.pm',
   1.250 --	OBJECT          => "RabbitMQ.o $cfiles",
   1.251 -+	'MYEXTLIB'	=> 'librabbitmq/librabbitmq$(LIB_EXT)',
   1.252 -+	OBJECT          => "RabbitMQ.o",
   1.253 -         );
   1.254 - 
   1.255 -+sub MY::postamble {
   1.256 -+'
   1.257 -+$(MYEXTLIB): librabbitmq/Makefile
   1.258 -+	cd librabbitmq && $(MAKE) $(PASTHRU)
   1.259 -+';
   1.260 -+}
   1.261 -Index: Net-RabbitMQ-0.0.4/librabbitmq/Makefile.PL
   1.262 ---- Net-RabbitMQ-0.0.4/librabbitmq/Makefile.PL.orig	2010-12-19 13:15:40.000000000 +0100
   1.263 -+++ Net-RabbitMQ-0.0.4/librabbitmq/Makefile.PL	2010-12-19 13:15:40.000000000 +0100
   1.264 -@@ -0,0 +1,22 @@
   1.265 -+
   1.266 -+use ExtUtils::MakeMaker;
   1.267 -+
   1.268 -+$Verbose = 1;
   1.269 -+
   1.270 -+WriteMakefile(
   1.271 -+    NAME  => 'Net::RabbitMQ::librabbitmq',
   1.272 -+    SKIP  => [ qw(all static static_lib dynamic dynamic_lib test) ],
   1.273 -+    clean => { 'FILES' => 'librabbitmq$(LIB_EXT)' },
   1.274 -+);
   1.275 -+
   1.276 -+sub MY::top_targets {
   1.277 -+'
   1.278 -+all :: static
   1.279 -+test ::
   1.280 -+static :: librabbitmq$(LIB_EXT)
   1.281 -+librabbitmq$(LIB_EXT): $(O_FILES)
   1.282 -+	$(AR) cr librabbitmq$(LIB_EXT) $(O_FILES)
   1.283 -+	$(RANLIB) librabbitmq$(LIB_EXT)
   1.284 -+
   1.285 -+';
   1.286 -+}
   1.287 -Index: Net-RabbitMQ-0.0.4/librabbitmq/amqp.h
   1.288 ---- Net-RabbitMQ-0.0.4/librabbitmq/amqp.h.orig	2009-12-19 08:59:44.000000000 +0100
   1.289 -+++ Net-RabbitMQ-0.0.4/librabbitmq/amqp.h	2010-12-19 13:15:40.000000000 +0100
   1.290 -@@ -5,6 +5,9 @@
   1.291 - extern "C" {
   1.292 - #endif
   1.293 - 
   1.294 -+#include <sys/types.h>
   1.295 -+#include <unistd.h>
   1.296 -+
   1.297 - typedef int amqp_boolean_t;
   1.298 - typedef uint32_t amqp_method_number_t;
   1.299 - typedef uint32_t amqp_flags_t;
   1.300 -Index: Net-RabbitMQ-0.0.4/librabbitmq/amqp_config.h
   1.301 ---- Net-RabbitMQ-0.0.4/librabbitmq/amqp_config.h.orig	2009-11-12 21:15:45.000000000 +0100
   1.302 -+++ Net-RabbitMQ-0.0.4/librabbitmq/amqp_config.h	2010-12-19 13:15:40.000000000 +0100
   1.303 -@@ -1,2 +1,3 @@
   1.304 -+#undef VERSION
   1.305 - #define VERSION "0.0.1"
   1.306 - 
     2.1 --- a/perl-net/perl-net.spec	Tue Aug 28 18:55:10 2012 +0200
     2.2 +++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.3 @@ -1,461 +0,0 @@
     2.4 -##
     2.5 -##  perl-net.spec -- OpenPKG RPM Package Specification
     2.6 -##  Copyright (c) 2000-2011 OpenPKG Foundation e.V. <http://openpkg.net/>
     2.7 -##
     2.8 -##  Permission to use, copy, modify, and distribute this software for
     2.9 -##  any purpose with or without fee is hereby granted, provided that
    2.10 -##  the above copyright notice and this permission notice appear in all
    2.11 -##  copies.
    2.12 -##
    2.13 -##  THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
    2.14 -##  WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
    2.15 -##  MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
    2.16 -##  IN NO EVENT SHALL THE AUTHORS AND COPYRIGHT HOLDERS AND THEIR
    2.17 -##  CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
    2.18 -##  SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
    2.19 -##  LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
    2.20 -##  USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
    2.21 -##  ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
    2.22 -##  OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
    2.23 -##  OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
    2.24 -##  SUCH DAMAGE.
    2.25 -##
    2.26 -
    2.27 -#   versions of individual parts
    2.28 -%define       V_perl                  5.14
    2.29 -%define       V_math_base85           0.2
    2.30 -%define       V_net_ipv4addr          0.10
    2.31 -%define       V_net_ipv6addr          0.2
    2.32 -%define       V_net_daemon            0.48
    2.33 -%define       V_net_server            0.99
    2.34 -%define       V_net_ext               1.011
    2.35 -%define       V_libnet                1.22_01
    2.36 -%define       V_net_netmask           1.9016
    2.37 -%define       V_net_ftp_common        7.0.d
    2.38 -%define       V_net_snmp              5.2.0
    2.39 -%define       V_net_tftp              0.19
    2.40 -%define       V_net_telnet            3.03
    2.41 -%define       V_net_telnet_cisco      1.10
    2.42 -%define       V_plrpc                 0.2020
    2.43 -%define       V_net_imap_simple       1.2025
    2.44 -%define       V_net_bgp               0.14
    2.45 -%define       V_net_pcap              0.16
    2.46 -%define       V_net_radius            2.103
    2.47 -%define       V_net_ip                1.25
    2.48 -%define       V_class_gomor           1.02
    2.49 -%define       V_net_packet            3.27
    2.50 -%define       V_net_xmpp              1.02
    2.51 -%define       V_net_jabber            2.0
    2.52 -%define       V_net_patricia          1.15
    2.53 -%define       V_net_irc               0.79
    2.54 -%define       V_ip_country            2.27
    2.55 -%define       V_io_socket_multicast   1.12
    2.56 -%define       V_net_growlclient       0.02
    2.57 -%define       V_net_dhcp              0.67_1
    2.58 -%define       V_net_proxy             0.12
    2.59 -%define       V_net_stomp             0.42
    2.60 -%define       V_net_stomp_receipt     0.36
    2.61 -%define       V_net_rabbitmq          0.0.4
    2.62 -%define       V_netaddr_ip            4.044
    2.63 -%define       V_net_http              6.01
    2.64 -%define       V_net_netxap            0.02
    2.65 -
    2.66 -#   package information
    2.67 -Name:         perl-net
    2.68 -Summary:      Perl Modules for use with networks
    2.69 -URL:          http://www.cpan.org/
    2.70 -Vendor:       Perl Community
    2.71 -Packager:     OpenPKG Foundation e.V.
    2.72 -Distribution: OpenPKG Community
    2.73 -Class:        BASE
    2.74 -Group:        Perl
    2.75 -License:      GPL/Artistic
    2.76 -Version:      %{V_perl}
    2.77 -Release:      20110914
    2.78 -
    2.79 -#   package options
    2.80 -%option       with_pcap   no
    2.81 -
    2.82 -#   list of sources
    2.83 -Source0:      http://www.cpan.org/authors/id/T/TM/TMONROE/Math-Base85-%{V_math_base85}.tar.gz
    2.84 -Source1:      http://www.cpan.org/authors/id/F/FR/FRAJULAC/Net-IPv4Addr-%{V_net_ipv4addr}.tar.gz
    2.85 -Source2:      http://www.cpan.org/authors/id/T/TM/TMONROE/Net-IPv6Addr-%{V_net_ipv6addr}.tar.gz
    2.86 -Source3:      http://www.cpan.org/modules/by-module/Net/Net-Daemon-%{V_net_daemon}.tar.gz
    2.87 -Source4:      http://www.cpan.org/authors/id/R/RH/RHANDOM/Net-Server-%{V_net_server}.tar.gz
    2.88 -Source5:      http://www.cpan.org/authors/id/S/SP/SPIDB/Net-ext-%{V_net_ext}.tar.gz
    2.89 -Source6:      http://www.cpan.org/authors/id/G/GB/GBARR/libnet-%{V_libnet}.tar.gz
    2.90 -Source7:      http://www.cpan.org/modules/by-module/Net/Net-Netmask-%{V_net_netmask}.tar.gz
    2.91 -Source8:      http://www.cpan.org/modules/by-module/Net/Net-FTP-Common-%{V_net_ftp_common}.tar.gz
    2.92 -Source9:      http://www.cpan.org/modules/by-module/Net/Net-SNMP-%{V_net_snmp}.tar.gz
    2.93 -Source10:     http://www.cpan.org/authors/id/G/GB/GBARR/Net-TFTP-%{V_net_tftp}.tar.gz
    2.94 -Source11:     http://www.cpan.org/authors/id/J/JR/JROGERS/Net-Telnet-%{V_net_telnet}.tar.gz
    2.95 -Source12:     http://www.cpan.org/authors/id/J/JO/JOSHUA/Net-Telnet-Cisco-%{V_net_telnet_cisco}.tar.gz
    2.96 -Source13:     http://www.cpan.org/authors/id/L/LU/LUISMUNOZ/Net-Radius-%{V_net_radius}.tar.gz
    2.97 -Source14:     http://www.cpan.org/modules/by-module/RPC/PlRPC-%{V_plrpc}.tar.gz
    2.98 -Source15:     http://www.cpan.org/authors/id/J/JE/JETTERO/Net-IMAP-Simple-%{V_net_imap_simple}.tar.gz
    2.99 -Source16:     http://www.cpan.org/authors/id/K/KB/KBRINT/Net-BGP-%{V_net_bgp}.tar.gz
   2.100 -Source17:     http://www.cpan.org/authors/id/S/SA/SAPER/Net-Pcap-%{V_net_pcap}.tar.gz
   2.101 -Source18:     http://www.cpan.org/authors/id/G/GO/GOMOR/Class-Gomor-%{V_class_gomor}.tar.gz
   2.102 -Source19:     http://www.cpan.org/authors/id/G/GO/GOMOR/Net-Packet-%{V_net_packet}.tar.gz
   2.103 -Source20:     http://www.cpan.org/authors/id/M/MA/MANU/Net-IP-%{V_net_ip}.tar.gz
   2.104 -Source21:     http://www.cpan.org/authors/id/H/HA/HACKER/Net-XMPP-%{V_net_xmpp}.tar.gz
   2.105 -Source22:     http://www.cpan.org/authors/id/R/RE/REATMON/Net-Jabber-%{V_net_jabber}.tar.gz
   2.106 -Source23:     http://www.cpan.org/authors/id/P/PH/PHILIPP/Net-Patricia-%{V_net_patricia}.tar.gz
   2.107 -Source24:     http://www.cpan.org/authors/id/A/AP/APEIRON/Net-IRC-%{V_net_irc}.tar.gz
   2.108 -Source25:     http://www.cpan.org/authors/id/N/NW/NWETTERS/IP-Country-%{V_ip_country}.tar.gz
   2.109 -Source26:     http://www.cpan.org/authors/id/B/BR/BRAMBLE/IO-Socket-Multicast-%{V_io_socket_multicast}.tar.gz
   2.110 -Source27:     http://www.cpan.org/authors/id/C/CA/CASTOR/Net-GrowlClient-%{V_net_growlclient}.tar.gz
   2.111 -Source28:     http://www.cpan.org/authors/id/D/DJ/DJZORT/Net-DHCP-%{V_net_dhcp}.tar.gz
   2.112 -Source29:     http://www.cpan.org/authors/id/B/BO/BOOK/Net-Proxy-%{V_net_proxy}.tar.gz
   2.113 -Source30:     http://www.cpan.org/authors/id/A/AS/ASH/Net-Stomp-%{V_net_stomp}.tar.gz
   2.114 -Source31:     http://www.cpan.org/authors/id/H/HU/HUGUEI/Net-Stomp-Receipt-%{V_net_stomp_receipt}.tar.gz
   2.115 -Source32:     http://www.cpan.org/authors/id/J/JE/JESUS/Net-RabbitMQ-%{V_net_rabbitmq}.tar.gz
   2.116 -Source33:     http://www.cpan.org/authors/id/M/MI/MIKER/NetAddr-IP-%{V_netaddr_ip}.tar.gz
   2.117 -Source34:     http://www.cpan.org/authors/id/G/GA/GAAS/Net-HTTP-%{V_net_http}.tar.gz
   2.118 -Source35:     http://www.cpan.org/modules/by-module/Net/NetxAP-%{V_net_netxap}.tar.gz
   2.119 -Patch0:       perl-net.patch
   2.120 -
   2.121 -#   build information
   2.122 -Prefix:       %{l_prefix}
   2.123 -BuildRoot:    %{l_buildroot}
   2.124 -BuildPreReq:  OpenPKG, openpkg >= 20060823, perl >= %{V_perl}, perl-openpkg >= %{V_perl}-20040126
   2.125 -PreReq:       OpenPKG, openpkg >= 20060823, perl >= %{V_perl}
   2.126 -BuildPreReq:  perl-crypto, perl-sys, perl-time, perl-xml, perl-util >= %{V_perl}-20040210
   2.127 -PreReq:       perl-crypto, perl-sys, perl-time, perl-xml, perl-util >= %{V_perl}-20040210
   2.128 -%if "%{with_pcap}" == "yes"
   2.129 -BuildPreReq:  libpcap
   2.130 -PreReq:       libpcap
   2.131 -%endif
   2.132 -AutoReq:      no
   2.133 -AutoReqProv:  no
   2.134 -
   2.135 -%description
   2.136 -    Perl modules for use with networks:
   2.137 -    - Net::Daemon (%{V_net_daemon})
   2.138 -    - Net::FTP (%{V_libnet})
   2.139 -    - Net::NNTP
   2.140 -    - Net::POP3
   2.141 -    - Net::SMTP
   2.142 -    - Net::SNPP
   2.143 -    - Net::Time
   2.144 -    - Net::FTP::Common (%{V_net_ftp_common})
   2.145 -    - Net::Gen (%{V_net_ext})
   2.146 -    - Net::Inet
   2.147 -    - Net::TCP
   2.148 -    - Net::TCP::Server
   2.149 -    - Net::UDP
   2.150 -    - Net::UNIX
   2.151 -    - Net::UNIX::Server
   2.152 -    - Net::Netmask (%{V_net_netmask})
   2.153 -    - Net::SNMP (%{V_net_snmp})
   2.154 -    - Net::Server (%{V_net_server})
   2.155 -    - Net::TFTP (%{V_net_tftp})
   2.156 -    - Net::Telnet (%{V_net_telnet})
   2.157 -    - Net::Telnet::Cisco (%{V_net_telnet_cisco})
   2.158 -    - Net::Radius (%{V_net_radius})
   2.159 -    - RPC::PlServer, RPC::PlClient (%{V_plrpc})
   2.160 -    - Net::IP (%{V_net_ip})
   2.161 -    - Net::IMAP::Simple (%{V_net_imap_simple})
   2.162 -    - Net::BGP (%{V_net_bgp})
   2.163 -%if "%{with_pcap}" == "yes"
   2.164 -    - Net::Pcap (%{V_net_pcap})
   2.165 -    - Net::Packet (%{V_net_packet})
   2.166 -    - Class::Gomor (%{V_class_gomor})
   2.167 -%endif
   2.168 -    - Net::XMPP (%{V_net_xmpp})
   2.169 -    - Net::Jabber (%{V_net_jabber})
   2.170 -    - Net::Patricia (%{V_net_patricia})
   2.171 -    - Net::IPv4Addr (%{V_net_ipv4addr})
   2.172 -    - Net::IPv6Addr (%{V_net_ipv6addr})
   2.173 -    - Net::IRC (%{V_net_irc})
   2.174 -    - IP::Country (%{V_ip_country})
   2.175 -    - IO::Socket::Multicast (%{V_io_socket_multicast})
   2.176 -    - Net::GrowlClient (%{V_net_growlclient})
   2.177 -    - Net::DHCP (%{V_net_dhcp})
   2.178 -    - Net::Proxy (%{V_net_proxy})
   2.179 -    - Net::Stomp (%{V_net_stomp})
   2.180 -    - Net::Stomp::Receipt (%{V_net_stomp_receipt})
   2.181 -    - Net::RabbitMQ (%{V_net_rabbitmq})
   2.182 -    - NetAddr::IP (%{V_netaddr_ip})
   2.183 -    - Net::HTTP (%{V_net_http})
   2.184 -    - Net::NetxAP (%V_net_netxap})
   2.185 -
   2.186 -%track
   2.187 -    prog perl-net:Net-Netmask = {
   2.188 -        version   = %{V_net_netmask}
   2.189 -        url       = http://www.cpan.org/modules/by-module/Net/
   2.190 -        regex     = Net-Netmask-(__VER__)\.tar\.gz
   2.191 -    }
   2.192 -    prog perl-net:Net-Ftp-Common = {
   2.193 -        version   = %{V_net_ftp_common}
   2.194 -        url       = http://www.cpan.org/modules/by-module/Net/
   2.195 -        regex     = Net-FTP-Common-(__VER__)\.tar\.gz
   2.196 -    }
   2.197 -    prog perl-net:libnet = {
   2.198 -        version   = %{V_libnet}
   2.199 -        url       = http://www.cpan.org/authors/id/G/GB/GBARR/
   2.200 -        regex     = libnet-(__VER__)\.tar\.gz
   2.201 -    }
   2.202 -    prog perl-net:Net-BGP = {
   2.203 -        version   = %{V_net_bgp}
   2.204 -        url       = http://www.cpan.org/authors/id/K/KB/KBRINT/
   2.205 -        regex     = Net-BGP-(__VER__)\.tar\.gz
   2.206 -    }
   2.207 -    prog perl-net:Net-Daemon = {
   2.208 -        version   = %{V_net_daemon}
   2.209 -        url       = http://www.cpan.org/modules/by-module/Net/
   2.210 -        regex     = Net-Daemon-(__VER__)\.tar\.gz
   2.211 -    }
   2.212 -    prog perl-net:Net-ext = {
   2.213 -        version   = %{V_net_ext}
   2.214 -        url       = http://www.cpan.org/authors/id/S/SP/SPIDB/
   2.215 -        regex     = Net-ext-(__VER__)\.tar\.gz
   2.216 -    }
   2.217 -    prog perl-net:Net-Imap-Simple = {
   2.218 -        version   = %{V_net_imap_simple}
   2.219 -        url       = http://www.cpan.org/authors/id/J/JE/JETTERO/
   2.220 -        regex     = Net-IMAP-Simple-(__VER__)\.tar\.gz
   2.221 -    }
   2.222 -    prog perl-net:Net-Server = {
   2.223 -        version   = %{V_net_server}
   2.224 -        url       = http://www.cpan.org/authors/id/R/RH/RHANDOM/
   2.225 -        regex     = Net-Server-(__VER__)\.tar\.gz
   2.226 -    }
   2.227 -    prog perl-net:Net-SNMP = {
   2.228 -        version   = %{V_net_snmp}
   2.229 -        url       = http://www.cpan.org/modules/by-module/Net/
   2.230 -        regex     = Net-SNMP-(__VER__)\.tar\.gz
   2.231 -    }
   2.232 -    prog perl-net:Net-Telnet = {
   2.233 -        version   = %{V_net_telnet}
   2.234 -        url       = http://www.cpan.org/authors/id/J/JR/JROGERS/
   2.235 -        regex     = Net-Telnet-(__VER__)\.tar\.gz
   2.236 -    }
   2.237 -    prog perl-net:Net-Telnet-Cisco = {
   2.238 -        version   = %{V_net_telnet_cisco}
   2.239 -        url       = http://www.cpan.org/authors/id/J/JO/JOSHUA/
   2.240 -        regex     = Net-Telnet-Cisco-(__VER__)\.tar\.gz
   2.241 -    }
   2.242 -    prog perl-net:Net-TFTP = {
   2.243 -        version   = %{V_net_tftp}
   2.244 -        url       = http://www.cpan.org/authors/id/G/GB/GBARR/
   2.245 -        regex     = Net-TFTP-(__VER__)\.tar\.gz
   2.246 -    }
   2.247 -    prog perl-net:PlRPC = {
   2.248 -        version   = %{V_plrpc}
   2.249 -        url       = http://www.cpan.org/modules/by-module/RPC/
   2.250 -        regex     = PlRPC-(__VER__)\.tar\.gz
   2.251 -    }
   2.252 -    prog perl-net:Net-Pcap = {
   2.253 -        version   = %{V_net_pcap}
   2.254 -        url       = http://www.cpan.org/authors/id/S/SA/SAPER/
   2.255 -        regex     = Net-Pcap-(__VER__)\.tar\.gz
   2.256 -    }
   2.257 -    prog perl-net:Net-Radius = {
   2.258 -        version   = %{V_net_radius}
   2.259 -        url       = http://www.cpan.org/authors/id/L/LU/LUISMUNOZ/
   2.260 -        regex     = Net-Radius-(__VER__)\.tar\.gz
   2.261 -    }
   2.262 -    prog perl-net:Net-IP = {
   2.263 -        version   = %{V_net_ip}
   2.264 -        url       = http://www.cpan.org/authors/id/M/MA/MANU/
   2.265 -        regex     = Net-IP-(__VER__)\.tar\.gz
   2.266 -    }
   2.267 -    prog perl-net:Net-Packet = {
   2.268 -        version   = %{V_net_packet}
   2.269 -        url       = http://www.cpan.org/authors/id/G/GO/GOMOR/
   2.270 -        regex     = Net-Packet-(__VER__)\.tar\.gz
   2.271 -    }
   2.272 -    prog perl-net:Class-Gomor = {
   2.273 -        version   = %{V_class_gomor}
   2.274 -        url       = http://www.cpan.org/authors/id/G/GO/GOMOR/
   2.275 -        regex     = Class-Gomor-(__VER__)\.tar\.gz
   2.276 -    }
   2.277 -    prog perl-net:Net-XMPP = {
   2.278 -        version   = %{V_net_xmpp}
   2.279 -        url       = http://www.cpan.org/authors/id/H/HA/HACKER/
   2.280 -        regex     = Net-XMPP-(__VER__)\.tar\.gz
   2.281 -    }
   2.282 -    prog perl-net:Net-Jabber = {
   2.283 -        version   = %{V_net_jabber}
   2.284 -        url       = http://www.cpan.org/authors/id/R/RE/REATMON/
   2.285 -        regex     = Net-Jabber-(__VER__)\.tar\.gz
   2.286 -    }
   2.287 -    prog perl-net:Net-Patricia = {
   2.288 -        version   = %{V_net_patricia}
   2.289 -        url       = http://www.cpan.org/authors/id/P/PH/PHILIPP/
   2.290 -        regex     = Net-Patricia-(__VER__)\.tar\.gz
   2.291 -    }
   2.292 -    prog perl-net:Net-IPv4Addr = {
   2.293 -        version   = %{V_net_ipv4addr}
   2.294 -        url       = http://www.cpan.org/authors/id/F/FR/FRAJULAC/
   2.295 -        regex     = Net-IPv4Addr-(__VER__)\.tar\.gz
   2.296 -    }
   2.297 -    prog perl-net:Net-IPv6Addr = {
   2.298 -        version   = %{V_net_ipv6addr}
   2.299 -        url       = http://www.cpan.org/authors/id/T/TM/TMONROE/
   2.300 -        regex     = Net-IPv6Addr-(__VER__)\.tar\.gz
   2.301 -    }
   2.302 -    prog perl-net:Math-Base85 = {
   2.303 -        version   = %{V_math_base85}
   2.304 -        url       = http://www.cpan.org/authors/id/T/TM/TMONROE/
   2.305 -        regex     = Math-Base85-(__VER__)\.tar\.gz
   2.306 -    }
   2.307 -    prog perl-net:Net-IRC = {
   2.308 -        disabled
   2.309 -        comment   = "rse: version >= 0.76 no longer supported by author"
   2.310 -        version   = %{V_net_irc}
   2.311 -        url       = http://www.cpan.org/authors/id/A/AP/APEIRON/
   2.312 -        regex     = Net-IRC-(__VER__)\.tar\.gz
   2.313 -    }
   2.314 -    prog perl-net:IP-Country = {
   2.315 -        version   = %{V_ip_country}
   2.316 -        url       = http://www.cpan.org/authors/id/N/NW/NWETTERS/
   2.317 -        regex     = IP-Country-(__VER__)\.tar\.gz
   2.318 -    }
   2.319 -    prog perl-net:IO-Socket-Multicast = {
   2.320 -        version   = %{V_io_socket_multicast}
   2.321 -        url       = http://www.cpan.org/authors/id/B/BR/BRAMBLE/
   2.322 -        regex     = IO-Socket-Multicast-(__VER__)\.tar\.gz
   2.323 -    }
   2.324 -    prog perl-net:Net-GrowlClient = {
   2.325 -        version   = %{V_net_growlclient}
   2.326 -        url       = http://www.cpan.org/authors/id/C/CA/CASTOR/
   2.327 -        regex     = Net-GrowlClient-(__VER__)\.tar\.gz
   2.328 -    }
   2.329 -    prog perl-net:Net-DHCP = {
   2.330 -        version   = %{V_net_dhcp}
   2.331 -        url       = http://www.cpan.org/authors/id/D/DJ/DJZORT/
   2.332 -        regex     = Net-DHCP-(__VER__)\.tar\.gz
   2.333 -    }
   2.334 -    prog perl-net:Net-Proxy = {
   2.335 -        version   = %{V_net_proxy}
   2.336 -        url       = http://www.cpan.org/authors/id/B/BO/BOOK/
   2.337 -        regex     = Net-Proxy-(__VER__)\.tar\.gz
   2.338 -    }
   2.339 -    prog perl-net:Net-Stomp = {
   2.340 -        version   = %{V_net_stomp}
   2.341 -        url       = http://www.cpan.org/authors/id/A/AS/ASH/
   2.342 -        regex     = Net-Stomp-(__VER__)\.tar\.gz
   2.343 -    }
   2.344 -    prog perl-net:Net-Stomp-Receipt = {
   2.345 -        version   = %{V_net_stomp_receipt}
   2.346 -        url       = http://www.cpan.org/authors/id/H/HU/HUGUEI/
   2.347 -        regex     = Net-Stomp-Receipt-(__VER__)\.tar\.gz
   2.348 -    }
   2.349 -    prog perl-net:Net-RabbitMQ = {
   2.350 -        version   = %{V_net_rabbitmq}
   2.351 -        url       = http://www.cpan.org/modules/by-module/Net/
   2.352 -        regex     = Net-RabbitMQ-(__VER__)\.tar\.gz
   2.353 -    }
   2.354 -    prog perl-net:NetAddr-IP = {
   2.355 -        version   = %{V_netaddr_ip}
   2.356 -        url       = http://www.cpan.org/authors/id/M/MI/MIKER/
   2.357 -        regex     = NetAddr-IP-(__VER__)\.tar\.gz
   2.358 -    }
   2.359 -    prog perl-net:Net-HTTP = {
   2.360 -        version   = %{V_net_http}
   2.361 -        url       = http://www.cpan.org/authors/id/G/GA/GAAS/
   2.362 -        regex     = Net-HTTP-(__VER__)\.tar\.gz
   2.363 -    }
   2.364 -    prog perl-net:NetxAP = {
   2.365 -        version   = %{V_net_netxap}
   2.366 -        url       = http://www.cpan.org/modules/by-module/Net/
   2.367 -        regex     = NetxAP-(__VER__)\.tar\.gz
   2.368 -    }
   2.369 -
   2.370 -%prep
   2.371 -    %setup -q -c
   2.372 -    %setup -q -T -D -a 1
   2.373 -    %setup -q -T -D -a 2
   2.374 -    %setup -q -T -D -a 3
   2.375 -    %setup -q -T -D -a 4
   2.376 -    %setup -q -T -D -a 5
   2.377 -    %setup -q -T -D -a 6
   2.378 -    %setup -q -T -D -a 7
   2.379 -    %setup -q -T -D -a 8
   2.380 -    %setup -q -T -D -a 9
   2.381 -    %setup -q -T -D -a 10
   2.382 -    %setup -q -T -D -a 11
   2.383 -    %setup -q -T -D -a 12
   2.384 -    %setup -q -T -D -a 13
   2.385 -    %setup -q -T -D -a 14
   2.386 -    %setup -q -T -D -a 15
   2.387 -    %setup -q -T -D -a 16
   2.388 -    %setup -q -T -D -a 17
   2.389 -    %setup -q -T -D -a 18
   2.390 -    %setup -q -T -D -a 19
   2.391 -    %setup -q -T -D -a 20
   2.392 -    %setup -q -T -D -a 21
   2.393 -    %setup -q -T -D -a 22
   2.394 -    %setup -q -T -D -a 23
   2.395 -    %setup -q -T -D -a 24
   2.396 -    %setup -q -T -D -a 25
   2.397 -    %setup -q -T -D -a 26
   2.398 -    %setup -q -T -D -a 27
   2.399 -    (
   2.400 -    %setup -q -T -D -a 28
   2.401 -    ) || true
   2.402 -    %setup -q -T -D -a 29
   2.403 -    %setup -q -T -D -a 30
   2.404 -    %setup -q -T -D -a 31
   2.405 -    %setup -q -T -D -a 32
   2.406 -    %setup -q -T -D -a 33
   2.407 -    %setup -q -T -D -a 34
   2.408 -    %setup -q -T -D -a 35
   2.409 -    sed <%{PATCH0} -e 's;@l_prefix@;%{l_prefix};g' | %{l_patch} -p0 -b
   2.410 -
   2.411 -%build
   2.412 -
   2.413 -%install
   2.414 -    rm -rf $RPM_BUILD_ROOT
   2.415 -    %{l_prefix}/bin/perl-openpkg prepare
   2.416 -    %{l_prefix}/bin/perl-openpkg -d %{SOURCE0}  configure build install
   2.417 -    %{l_prefix}/bin/perl-openpkg -d %{SOURCE1}  configure build install
   2.418 -    %{l_prefix}/bin/perl-openpkg -d %{SOURCE2}  configure build install
   2.419 -    %{l_prefix}/bin/perl-openpkg -d %{SOURCE3}  configure build install
   2.420 -    %{l_prefix}/bin/perl-openpkg -d %{SOURCE4}  configure build install
   2.421 -    %{l_prefix}/bin/perl-openpkg -d %{SOURCE5}  configure build install
   2.422 -    %{l_prefix}/bin/perl-openpkg -d %{SOURCE6}  configure build install
   2.423 -    %{l_prefix}/bin/perl-openpkg -d %{SOURCE7}  configure build install
   2.424 -    %{l_prefix}/bin/perl-openpkg -d %{SOURCE8}  configure build install
   2.425 -    %{l_prefix}/bin/perl-openpkg -d %{SOURCE9}  configure build install
   2.426 -    %{l_prefix}/bin/perl-openpkg -d %{SOURCE10} configure build install
   2.427 -    %{l_prefix}/bin/perl-openpkg -d %{SOURCE11} configure build install
   2.428 -    %{l_prefix}/bin/perl-openpkg -d %{SOURCE12} configure build install
   2.429 -    %{l_prefix}/bin/perl-openpkg -d %{SOURCE13} configure build install
   2.430 -    %{l_prefix}/bin/perl-openpkg -d %{SOURCE14} configure build install
   2.431 -    %{l_prefix}/bin/perl-openpkg -d %{SOURCE15} configure build install
   2.432 -    %{l_prefix}/bin/perl-openpkg -d %{SOURCE16} configure build install
   2.433 -%if "%{with_pcap}" == "yes"
   2.434 -    %{l_prefix}/bin/perl-openpkg -d %{SOURCE17} configure build install
   2.435 -    %{l_prefix}/bin/perl-openpkg -d %{SOURCE18} configure build install
   2.436 -    %{l_prefix}/bin/perl-openpkg -d %{SOURCE19} \
   2.437 -        -A "INC='-I. %{l_cppflags}'" \
   2.438 -        -A "LIBS='%{l_ldflags} -lpcap'" \
   2.439 -        configure build install
   2.440 -%endif
   2.441 -    %{l_prefix}/bin/perl-openpkg -d %{SOURCE20} configure build install
   2.442 -    %{l_prefix}/bin/perl-openpkg -d %{SOURCE21} configure build install
   2.443 -    %{l_prefix}/bin/perl-openpkg -d %{SOURCE22} configure build install
   2.444 -    %{l_prefix}/bin/perl-openpkg -d %{SOURCE23} configure build install
   2.445 -    %{l_prefix}/bin/perl-openpkg -d %{SOURCE24} configure build install
   2.446 -    %{l_prefix}/bin/perl-openpkg -d %{SOURCE25} configure build install
   2.447 -    %{l_prefix}/bin/perl-openpkg -d %{SOURCE26} configure build install
   2.448 -    %{l_prefix}/bin/perl-openpkg -d %{SOURCE27} configure build install
   2.449 -    %{l_prefix}/bin/perl-openpkg -d %{SOURCE28} configure build install
   2.450 -    %{l_prefix}/bin/perl-openpkg -d %{SOURCE29} configure build install
   2.451 -    %{l_prefix}/bin/perl-openpkg -d %{SOURCE30} configure build install
   2.452 -    %{l_prefix}/bin/perl-openpkg -d %{SOURCE31} configure build install
   2.453 -    %{l_prefix}/bin/perl-openpkg -d %{SOURCE32} configure build install
   2.454 -    %{l_prefix}/bin/perl-openpkg -d %{SOURCE33} configure build install
   2.455 -    %{l_prefix}/bin/perl-openpkg -d %{SOURCE34} configure build install
   2.456 -    %{l_prefix}/bin/perl-openpkg -d %{SOURCE35} configure build install
   2.457 -    %{l_prefix}/bin/perl-openpkg -F perl-openpkg-files fixate cleanup
   2.458 -    %{l_rpmtool} files -v -ofiles -r$RPM_BUILD_ROOT %{l_files_std} `cat perl-openpkg-files`
   2.459 -
   2.460 -%files -f files
   2.461 -
   2.462 -%clean
   2.463 -    rm -rf $RPM_BUILD_ROOT
   2.464 -
     3.1 --- a/perl-parse/perl-parse.spec	Tue Aug 28 18:55:10 2012 +0200
     3.2 +++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
     3.3 @@ -1,365 +0,0 @@
     3.4 -##
     3.5 -##  perl-parse.spec -- OpenPKG RPM Package Specification
     3.6 -##  Copyright (c) 2000-2011 OpenPKG Foundation e.V. <http://openpkg.net/>
     3.7 -##
     3.8 -##  Permission to use, copy, modify, and distribute this software for
     3.9 -##  any purpose with or without fee is hereby granted, provided that
    3.10 -##  the above copyright notice and this permission notice appear in all
    3.11 -##  copies.
    3.12 -##
    3.13 -##  THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
    3.14 -##  WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
    3.15 -##  MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
    3.16 -##  IN NO EVENT SHALL THE AUTHORS AND COPYRIGHT HOLDERS AND THEIR
    3.17 -##  CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
    3.18 -##  SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
    3.19 -##  LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
    3.20 -##  USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
    3.21 -##  ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
    3.22 -##  OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
    3.23 -##  OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
    3.24 -##  SUCH DAMAGE.
    3.25 -##
    3.26 -
    3.27 -#   versions of individual parts
    3.28 -%define       V_perl                      5.14
    3.29 -%define       V_config_inifiles           2.68
    3.30 -%define       V_config_general            2.50
    3.31 -%define       V_config_simple             4.59
    3.32 -%define       V_config_context            0.10
    3.33 -%define       V_config_scoped             0.13
    3.34 -%define       V_string_tokenizer          0.05
    3.35 -%define       V_parse_recdescent          1.962.2
    3.36 -%define       V_parse_recdescent_faq      7.5
    3.37 -%define       V_parse_recdescent_deparse  1.00
    3.38 -%define       V_parse_recdescent_consumer 1.03
    3.39 -%define       V_parse_recdescent_topiary  0.05
    3.40 -%define       V_parse_yapp                1.05
    3.41 -%define       V_parse_eyapp               1.181
    3.42 -%define       V_parse_earley              0.15
    3.43 -%define       V_parse_lex                 2.20
    3.44 -%define       V_parse_flex                0.12
    3.45 -%define       V_c_scan                    0.74
    3.46 -%define       V_appconfig                 1.66
    3.47 -%define       V_appconfig_std             1.07
    3.48 -%define       V_ogdl                      20041124
    3.49 -%define       V_text_csv_pp               1.06
    3.50 -%define       V_text_csv_xs               0.85
    3.51 -%define       V_text_csv_simple           1.00
    3.52 -%define       V_getopt_long               2.38_02
    3.53 -%define       V_getopt_attribute          2.101700
    3.54 -%define       V_getopt_argvfile           1.11
    3.55 -%define       V_getopt_fancy              0.06
    3.56 -%define       V_getopt_ll                 1.0.0
    3.57 -%define       V_getopt_flex               1.07
    3.58 -
    3.59 -#   package information
    3.60 -Name:         perl-parse
    3.61 -Summary:      Perl Modules for use with parsing algorythms
    3.62 -URL:          http://www.cpan.org/
    3.63 -Vendor:       Perl Community
    3.64 -Packager:     OpenPKG Foundation e.V.
    3.65 -Distribution: OpenPKG Community
    3.66 -Class:        BASE
    3.67 -Group:        Perl
    3.68 -License:      GPL/Artistic
    3.69 -Version:      %{V_perl}
    3.70 -Release:      20110914
    3.71 -
    3.72 -#   list of sources
    3.73 -Source0:      http://www.cpan.org/authors/id/S/SH/SHLOMIF/Config-IniFiles-%{V_config_inifiles}.tar.gz
    3.74 -Source1:      http://www.cpan.org/authors/id/T/TL/TLINDEN/Config-General-%{V_config_general}.tar.gz
    3.75 -Source2:      http://www.cpan.org/authors/id/S/SH/SHERZODR/Config-Simple-%{V_config_simple}.tar.gz
    3.76 -Source3:      http://www.cpan.org/authors/id/D/DC/DCONWAY/Parse-RecDescent-%{V_parse_recdescent}.tar.gz
    3.77 -Source4:      http://www.cpan.org/authors/id/T/TB/TBONE/Parse-RecDescent-FAQ-%{V_parse_recdescent_faq}.tar.gz
    3.78 -Source5:      http://www.cpan.org/authors/id/S/SI/SIMON/Parse-RecDescent-Deparse-%{V_parse_recdescent_deparse}.tar.gz
    3.79 -Source6:      http://www.cpan.org/authors/id/T/TB/TBONE/Parse-RecDescent-Consumer-%{V_parse_recdescent_consumer}.tar.gz
    3.80 -Source7:      http://www.cpan.org/authors/id/F/FD/FDESAR/Parse-Yapp-%{V_parse_yapp}.tar.gz
    3.81 -Source8:      http://www.cpan.org/authors/id/L/LP/LPALMER/Parse-Earley-%{V_parse_earley}.tar.gz
    3.82 -Source9:      http://www.cpan.org/authors/id/P/PS/PSCUST/ParseLex-%{V_parse_lex}.tar.gz
    3.83 -Source10:     http://www.cpan.org/authors/id/H/HV/HVDS/C-Scan-%{V_c_scan}.tar.gz
    3.84 -Source11:     http://www.cpan.org/authors/id/A/AB/ABW/AppConfig-%{V_appconfig}.tar.gz
    3.85 -Source12:     http://www.cpan.org/authors/id/N/NE/NEILB/AppConfig-Std-%{V_appconfig_std}.tar.gz
    3.86 -Source13:     http://switch.dl.sourceforge.net/ogdl/ogdlutils-%{V_ogdl}.tgz
    3.87 -Source14:     http://www.cpan.org/authors/id/S/ST/STEVAN/String-Tokenizer-%{V_string_tokenizer}.tar.gz
    3.88 -Source15:     http://www.cpan.org/authors/id/M/MG/MGRAHAM/Config-Context-%{V_config_context}.tar.gz
    3.89 -Source16:     http://www.cpan.org/authors/id/G/GA/GAISSMAI/Config-Scoped-%{V_config_scoped}.tar.gz
    3.90 -Source17:     http://www.cpan.org/modules/by-module/Text/Text-CSV_PP-%{V_text_csv_pp}.tar.gz
    3.91 -Source18:     http://www.cpan.org/modules/by-module/Text/Text-CSV_XS-%{V_text_csv_xs}.tgz
    3.92 -Source19:     http://www.cpan.org/authors/id/T/TM/TMTM/Text-CSV-Simple-%{V_text_csv_simple}.tar.gz
    3.93 -Source20:     http://www.cpan.org/authors/id/J/JV/JV/Getopt-Long-%{V_getopt_long}.tar.gz
    3.94 -Source21:     http://www.cpan.org/authors/id/M/MA/MARCEL/Getopt-Attribute-%{V_getopt_attribute}.tar.gz
    3.95 -Source22:     http://www.cpan.org/authors/id/J/JS/JSTENZEL/Getopt-ArgvFile-%{V_getopt_argvfile}.tar.gz
    3.96 -Source23:     http://www.cpan.org/authors/id/B/BA/BATMAN/Getopt-Fancy-%{V_getopt_fancy}.tar.gz
    3.97 -Source24:     http://www.cpan.org/authors/id/A/AS/ASKSH/Getopt-LL-%{V_getopt_ll}.tar.gz
    3.98 -Source25:     http://www.cpan.org/authors/id/I/IV/IVORW/Parse-RecDescent-Topiary-%{V_parse_recdescent_topiary}.tar.gz
    3.99 -Source26:     http://www.cpan.org/authors/id/I/IO/IOANNIS/Parse-Flex-%{V_parse_flex}.tar.gz
   3.100 -Source27:     http://www.cpan.org/authors/id/C/CA/CASIANO/Parse-Eyapp-%{V_parse_eyapp}.tar.gz
   3.101 -Source28:     http://www.cpan.org/authors/id/R/RP/RPKELLY/Getopt-Flex-%{V_getopt_flex}.tar.gz
   3.102 -
   3.103 -#   build information
   3.104 -Prefix:       %{l_prefix}
   3.105 -BuildRoot:    %{l_buildroot}
   3.106 -BuildPreReq:  OpenPKG, openpkg >= 20060823, perl >= %{V_perl}, perl-openpkg >= %{V_perl}-20051031
   3.107 -PreReq:       OpenPKG, openpkg >= 20060823, perl >= %{V_perl}
   3.108 -BuildPreReq:  perl-util, perl-module, flex
   3.109 -PreReq:       perl-util, perl-module, flex
   3.110 -AutoReq:      no
   3.111 -AutoReqProv:  no
   3.112 -
   3.113 -%description
   3.114 -    Perl modules for use with parsing algorythms:
   3.115 -    - Config::IniFiles (%{V_config_inifiles})
   3.116 -    - Config::General (%{V_config_general})
   3.117 -    - Config::Simple (%{V_config_simple})
   3.118 -    - Config::Context (%{V_config_context})
   3.119 -    - Config::Scoped (%{V_config_scoped})
   3.120 -    - String::Tokenizer (%{V_string_tokenizer})
   3.121 -    - Parse::RecDescent (%{V_parse_recdescent})
   3.122 -    - Parse::RecDescent::FAQ (%{V_parse_recdescent_faq})
   3.123 -    - Parse::RecDescent::Deparse (%{V_parse_recdescent_deparse})
   3.124 -    - Parse::RecDescent::Consumer (%{V_parse_recdescent_consumer})
   3.125 -    - Parse::RecDescent::Topiary (%{V_parse_recdescent_topiary})
   3.126 -    - Parse::Yapp (%{V_parse_yapp})
   3.127 -    - Parse::Eyapp (%{V_parse_eyapp})
   3.128 -    - Parse::Earley (%{V_parse_earley})
   3.129 -    - Parse::Lex (%{V_parse_lex})
   3.130 -    - Parse::Flex (%{V_parse_flex})
   3.131 -    - C::Scan (%{V_c_scan})
   3.132 -    - AppConfig (%{V_appconfig})
   3.133 -    - AppConfig::Std (%{V_appconfig_std})
   3.134 -    - OGDL (%{V_ogdl})
   3.135 -    - Text::CSV_PP (%{V_text_csv_pp})
   3.136 -    - Text::CSV_XS (%{V_text_csv_xs})
   3.137 -    - Text::CSV::Simple (%{V_text_csv_simple})
   3.138 -    - Getopt::Long (%{V_getopt_long})
   3.139 -    - Getopt::Attribute (%{V_getopt_attribute})
   3.140 -    - Getopt::ArgvFile (%{V_getopt_argvfile})
   3.141 -    - Getopt::Fancy (%{V_getopt_fancy})
   3.142 -    - Getopt::LL (%{V_getopt_ll})
   3.143 -    - Getopt::Flex (%{V_getopt_flex})
   3.144 -
   3.145 -%track
   3.146 -    prog perl-parse:Config-General = {
   3.147 -        version   = %{V_config_general}
   3.148 -        url       = http://www.cpan.org/authors/id/T/TL/TLINDEN/
   3.149 -        regex     = Config-General-(__VER__)\.tar\.gz
   3.150 -    }
   3.151 -    prog perl-parse:Config-IniFiles = {
   3.152 -        version   = %{V_config_inifiles}
   3.153 -        url       = http://www.cpan.org/authors/id/S/SH/SHLOMIF/
   3.154 -        regex     = Config-IniFiles-(__VER__)\.tar\.gz
   3.155 -    }
   3.156 -    prog perl-parse:Config-Simple = {
   3.157 -        version   = %{V_config_simple}
   3.158 -        url       = http://www.cpan.org/authors/id/S/SH/SHERZODR/
   3.159 -        regex     = Config-Simple-(__VER__)\.tar\.gz
   3.160 -    }
   3.161 -    prog perl-parse:Parse-RecDescent = {
   3.162 -        version   = %{V_parse_recdescent}
   3.163 -        url       = http://www.cpan.org/authors/id/D/DC/DCONWAY/
   3.164 -        regex     = Parse-RecDescent-v(__VER__)\.tar\.gz
   3.165 -    }
   3.166 -    prog perl-parse:Parse-RecDescent-Consumer = {
   3.167 -        version   = %{V_parse_recdescent_consumer}
   3.168 -        url       = http://www.cpan.org/authors/id/T/TB/TBONE/
   3.169 -        regex     = Parse-RecDescent-Consumer-(__VER__)\.tar\.gz
   3.170 -    }
   3.171 -    prog perl-parse:Parse-RecDescent-Deparse = {
   3.172 -        version   = %{V_parse_recdescent_deparse}
   3.173 -        url       = http://www.cpan.org/authors/id/S/SI/SIMON/
   3.174 -        regex     = Parse-RecDescent-Deparse-(__VER__)\.tar\.gz
   3.175 -    }
   3.176 -    prog perl-parse:Parse-RecDescent-FAQ = {
   3.177 -        version   = %{V_parse_recdescent_faq}
   3.178 -        url       = http://www.cpan.org/authors/id/T/TB/TBONE/
   3.179 -        regex     = Parse-RecDescent-FAQ-(__VER__)\.tar\.gz
   3.180 -    }
   3.181 -    prog perl-parse:Parse-RecDescent-Topiary = {
   3.182 -        version   = %{V_parse_recdescent_topiary}
   3.183 -        url       = http://www.cpan.org/authors/id/I/IV/IVORW/
   3.184 -        regex     = Parse-RecDescent-Topiary-(__VER__)\.tar\.gz
   3.185 -    }
   3.186 -    prog perl-parse:Parse-Yapp = {
   3.187 -        version   = %{V_parse_yapp}
   3.188 -        url       = http://www.cpan.org/authors/id/F/FD/FDESAR/
   3.189 -        regex     = Parse-Yapp-(__VER__)\.tar\.gz
   3.190 -    }
   3.191 -    prog perl-parse:Parse-Eyapp = {
   3.192 -        version   = %{V_parse_eyapp}
   3.193 -        url       = http://www.cpan.org/authors/id/C/CA/CASIANO/
   3.194 -        regex     = Parse-Eyapp-(__VER__)\.tar\.gz
   3.195 -    }
   3.196 -    prog perl-parse:Parse-Earley = {
   3.197 -        version   = %{V_parse_earley}
   3.198 -        url       = http://www.cpan.org/authors/id/L/LP/LPALMER/
   3.199 -        regex     = Parse-Earley-(__VER__)\.tar\.gz
   3.200 -    }
   3.201 -    prog perl-parse:Parse-Lex = {
   3.202 -        version   = %{V_parse_lex}
   3.203 -        url       = http://www.cpan.org/authors/id/P/PS/PSCUST/
   3.204 -        regex     = ParseLex-(__VER__)\.tar\.gz
   3.205 -    }
   3.206 -    prog perl-parse:Parse-Flex = {
   3.207 -        version   = %{V_parse_flex}
   3.208 -        url       = http://www.cpan.org/authors/id/I/IO/IOANNIS/
   3.209 -        regex     = Parse-Flex-(__VER__)\.tar\.gz
   3.210 -    }
   3.211 -    prog perl-parse:C-Scan = {
   3.212 -        version   = %{V_c_scan}
   3.213 -        url       = http://www.cpan.org/authors/id/H/HV/HVDS/
   3.214 -        regex     = C-Scan-(__VER__)\.tar\.gz
   3.215 -    }
   3.216 -    prog perl-parse:AppConfig = {
   3.217 -        version   = %{V_appconfig}
   3.218 -        url       = http://www.cpan.org/authors/id/A/AB/ABW/
   3.219 -        regex     = AppConfig-(__VER__)\.tar\.gz
   3.220 -    }
   3.221 -    prog perl-parse:AppConfig-Std = {
   3.222 -        version   = %{V_appconfig_std}
   3.223 -        url       = http://www.cpan.org/authors/id/N/NE/NEILB/
   3.224 -        regex     = AppConfig-Std-(__VER__)\.tar\.gz
   3.225 -    }
   3.226 -    prog perl-parse:OGDL = {
   3.227 -        version   = %{V_ogdl}
   3.228 -        url       = http://sourceforge.net/projects/ogdl/files/
   3.229 -        regex     = ogdlutils-(__VER__)\.tgz
   3.230 -    }
   3.231 -    prog perl-parse:String-Tokenizer = {
   3.232 -        version   = %{V_string_tokenizer}
   3.233 -        url       = http://www.cpan.org/authors/id/S/ST/STEVAN/
   3.234 -        regex     = String-Tokenizer-(__VER__)\.tar\.gz
   3.235 -    }
   3.236 -    prog perl-parse:Config-Context = {
   3.237 -        version   = %{V_config_context}
   3.238 -        url       = http://www.cpan.org/authors/id/M/MG/MGRAHAM/
   3.239 -        regex     = Config-Context-(__VER__)\.tar\.gz
   3.240 -    }
   3.241 -    prog perl-parse:Config-Scoped = {
   3.242 -        version   = %{V_config_scoped}
   3.243 -        url       = http://www.cpan.org/authors/id/G/GA/GAISSMAI/
   3.244 -        regex     = Config-Scoped-(__VER__)\.tar\.gz
   3.245 -    }
   3.246 -    prog perl-parse:Text-CSV_PP = {
   3.247 -        version   = %{V_text_csv_pp}
   3.248 -        url       = http://www.cpan.org/modules/by-module/Text/
   3.249 -        regex     = Text-CSV_PP-(__VER__)\.tar\.gz
   3.250 -    }
   3.251 -    prog perl-parse:Text-CSV_XS = {
   3.252 -        version   = %{V_text_csv_xs}
   3.253 -        url       = http://www.cpan.org/modules/by-module/Text/
   3.254 -        regex     = Text-CSV_XS-(__VER__)\.t(ar\.)?gz
   3.255 -    }
   3.256 -    prog perl-parse:Text-CSV-Simple = {
   3.257 -        version   = %{V_text_csv_simple}
   3.258 -        url       = http://www.cpan.org/authors/id/T/TM/TMTM/
   3.259 -        regex     = Text-CSV-Simple-(__VER__)\.tar\.gz
   3.260 -    }
   3.261 -    prog perl-parse:Getopt-Long = {
   3.262 -        version   = %{V_getopt_long}
   3.263 -        url       = http://www.cpan.org/authors/id/J/JV/JV/
   3.264 -        regex     = Getopt-Long-(__VER__)\.tar\.gz
   3.265 -    }
   3.266 -    prog perl-parse:Getopt-Attribute = {
   3.267 -        version   = %{V_getopt_attribute}
   3.268 -        url       = http://www.cpan.org/authors/id/M/MA/MARCEL/
   3.269 -        regex     = Getopt-Attribute-(__VER__)\.tar\.gz
   3.270 -    }
   3.271 -    prog perl-parse:Getopt-ArgvFile = {
   3.272 -        version   = %{V_getopt_argvfile}
   3.273 -        url       = http://www.cpan.org/authors/id/J/JS/JSTENZEL/
   3.274 -        regex     = Getopt-ArgvFile-(__VER__)\.tar\.gz
   3.275 -    }
   3.276 -    prog perl-parse:Getopt-Fancy = {
   3.277 -        version   = %{V_getopt_fancy}
   3.278 -        url       = http://www.cpan.org/authors/id/B/BA/BATMAN/
   3.279 -        regex     = Getopt-Fancy-(__VER__)\.tar\.gz
   3.280 -    }
   3.281 -    prog perl-parse:Getopt-LL = {
   3.282 -        version   = %{V_getopt_ll}
   3.283 -        url       = http://www.cpan.org/authors/id/A/AS/ASKSH/
   3.284 -        regex     = Getopt-LL-(__VER__)\.tar\.gz
   3.285 -    }
   3.286 -    prog perl-parse:Getopt-Flex = {
   3.287 -        version   = %{V_getopt_flex}
   3.288 -        url       = http://www.cpan.org/authors/id/R/RP/RPKELLY/
   3.289 -        regex     = Getopt-Flex-(__VER__)\.tar\.gz
   3.290 -    }
   3.291 -
   3.292 -%prep
   3.293 -    %setup -q -c
   3.294 -    %setup -q -T -D -a 1
   3.295 -    %setup -q -T -D -a 2
   3.296 -    %setup -q -T -D -a 3
   3.297 -    %setup -q -T -D -a 4
   3.298 -    %setup -q -T -D -a 5
   3.299 -    %setup -q -T -D -a 6
   3.300 -    %setup -q -T -D -a 7
   3.301 -    %setup -q -T -D -a 8
   3.302 -    %setup -q -T -D -a 9
   3.303 -    %setup -q -T -D -a 10
   3.304 -    %setup -q -T -D -a 11
   3.305 -    %setup -q -T -D -a 12
   3.306 -    %setup -q -T -D -a 13
   3.307 -    %setup -q -T -D -a 14
   3.308 -    %setup -q -T -D -a 15
   3.309 -    %setup -q -T -D -a 16
   3.310 -    %setup -q -T -D -a 17
   3.311 -    %setup -q -T -D -a 18
   3.312 -    %setup -q -T -D -a 19
   3.313 -    %setup -q -T -D -a 20
   3.314 -    %setup -q -T -D -a 21
   3.315 -    %setup -q -T -D -a 22
   3.316 -    %setup -q -T -D -a 23
   3.317 -    %setup -q -T -D -a 24
   3.318 -    %setup -q -T -D -a 25
   3.319 -    %setup -q -T -D -a 26
   3.320 -    %setup -q -T -D -a 27
   3.321 -    %setup -q -T -D -a 28
   3.322 -
   3.323 -%build
   3.324 -
   3.325 -%install
   3.326 -    rm -rf $RPM_BUILD_ROOT
   3.327 -    %{l_prefix}/bin/perl-openpkg prepare
   3.328 -    %{l_prefix}/bin/perl-openpkg -d %{SOURCE0}  configure build install
   3.329 -    %{l_prefix}/bin/perl-openpkg -d %{SOURCE1}  configure build install
   3.330 -    %{l_prefix}/bin/perl-openpkg -d %{SOURCE2}  configure build install
   3.331 -    %{l_prefix}/bin/perl-openpkg -d %{SOURCE3}  configure build install
   3.332 -    %{l_prefix}/bin/perl-openpkg -d %{SOURCE4}  configure build install
   3.333 -    %{l_prefix}/bin/perl-openpkg -d %{SOURCE5}  configure build install
   3.334 -    %{l_prefix}/bin/perl-openpkg -d %{SOURCE6}  configure build install
   3.335 -    %{l_prefix}/bin/perl-openpkg -d %{SOURCE7}  configure build install
   3.336 -    %{l_prefix}/bin/perl-openpkg -d %{SOURCE8}  configure build install
   3.337 -    %{l_prefix}/bin/perl-openpkg -d %{SOURCE9}  configure build install
   3.338 -    %{l_prefix}/bin/perl-openpkg -d %{SOURCE10} configure build install
   3.339 -    %{l_prefix}/bin/perl-openpkg -d %{SOURCE11} configure build install
   3.340 -    %{l_prefix}/bin/perl-openpkg -d %{SOURCE12} configure build install
   3.341 -    ( cd ogdlutils-%{V_ogdl}/c
   3.342 -      %{l_cc} %{l_cflags} -c ogdlparser.c graph.c path.c ogdllog.c
   3.343 -      ar cr libogdl.a ogdlparser.o graph.o path.o ogdllog.o
   3.344 -    ) || exit $?
   3.345 -    %{l_prefix}/bin/perl-openpkg -d ogdlutils-%{V_ogdl}/perl configure build install
   3.346 -    %{l_prefix}/bin/perl-openpkg -d %{SOURCE14} configure build install
   3.347 -    %{l_prefix}/bin/perl-openpkg -d %{SOURCE15} configure build install
   3.348 -    %{l_prefix}/bin/perl-openpkg -A TAR=%{l_tar} -d %{SOURCE16} configure build install
   3.349 -    %{l_prefix}/bin/perl-openpkg -d %{SOURCE17} configure build install
   3.350 -    %{l_prefix}/bin/perl-openpkg -d %{SOURCE18} configure build install
   3.351 -    %{l_prefix}/bin/perl-openpkg -d %{SOURCE19} configure build install
   3.352 -    %{l_prefix}/bin/perl-openpkg -d %{SOURCE20} configure build install
   3.353 -    %{l_prefix}/bin/perl-openpkg -d %{SOURCE21} configure build install
   3.354 -    %{l_prefix}/bin/perl-openpkg -d %{SOURCE22} configure build install
   3.355 -    %{l_prefix}/bin/perl-openpkg -d %{SOURCE23} configure build install
   3.356 -    %{l_prefix}/bin/perl-openpkg -d %{SOURCE24} configure build install
   3.357 -    %{l_prefix}/bin/perl-openpkg -d %{SOURCE25} configure build install
   3.358 -    %{l_prefix}/bin/perl-openpkg -d %{SOURCE26} configure build install
   3.359 -    %{l_prefix}/bin/perl-openpkg -d %{SOURCE27} configure build install
   3.360 -    %{l_prefix}/bin/perl-openpkg -d %{SOURCE28} configure build install
   3.361 -    %{l_prefix}/bin/perl-openpkg -F perl-openpkg-files fixate cleanup
   3.362 -    %{l_rpmtool} files -v -ofiles -r$RPM_BUILD_ROOT %{l_files_std} `cat perl-openpkg-files`
   3.363 -
   3.364 -%files -f files
   3.365 -
   3.366 -%clean
   3.367 -    rm -rf $RPM_BUILD_ROOT
   3.368 -
     4.1 --- a/perl-sys/perl-sys.patch	Tue Aug 28 18:55:10 2012 +0200
     4.2 +++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
     4.3 @@ -1,16 +0,0 @@
     4.4 -Index: IPC-ShareLite-0.17/Makefile.PL
     4.5 ---- IPC-ShareLite-0.17/Makefile.PL.orig	2011-06-19 23:39:44.000000000 +0200
     4.6 -+++ IPC-ShareLite-0.17/Makefile.PL	2011-06-19 23:52:49.000000000 +0200
     4.7 -@@ -55,11 +55,10 @@
     4.8 - 
     4.9 -   my @exclude = qw( Devel::CheckLib IO::CaptureOutput );
    4.10 -   my $pad     = ' ' x 4;
    4.11 --  die "Can't parse Makefile fragment"
    4.12 --   unless $lines[-2] =~ /^([^"']*(["'])).*?(\2[^"']*)$/;
    4.13 -   splice @lines, -1, 0, map { "$1$_$3" } (
    4.14 -     'no_index:', "${pad}package:", map { "${pad}${pad}- $_" } @exclude
    4.15 -   );
    4.16 - 
    4.17 -   return join "\n", @lines;
    4.18 - }
    4.19 -+
     5.1 --- a/perl-sys/perl-sys.spec	Tue Aug 28 18:55:10 2012 +0200
     5.2 +++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
     5.3 @@ -1,470 +0,0 @@
     5.4 -##
     5.5 -##  perl-sys.spec -- OpenPKG RPM Package Specification
     5.6 -##  Copyright (c) 2000-2011 OpenPKG Foundation e.V. <http://openpkg.net/>
     5.7 -##
     5.8 -##  Permission to use, copy, modify, and distribute this software for
     5.9 -##  any purpose with or without fee is hereby granted, provided that
    5.10 -##  the above copyright notice and this permission notice appear in all
    5.11 -##  copies.
    5.12 -##
    5.13 -##  THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
    5.14 -##  WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
    5.15 -##  MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
    5.16 -##  IN NO EVENT SHALL THE AUTHORS AND COPYRIGHT HOLDERS AND THEIR
    5.17 -##  CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
    5.18 -##  SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
    5.19 -##  LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
    5.20 -##  USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
    5.21 -##  ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
    5.22 -##  OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
    5.23 -##  OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
    5.24 -##  SUCH DAMAGE.
    5.25 -##
    5.26 -
    5.27 -#   versions of individual parts
    5.28 -%define       V_perl                5.14
    5.29 -%define       V_unix_syslog         1.1
    5.30 -%define       V_archive_tar         1.78
    5.31 -%define       V_archive_zip         1.31_03
    5.32 -%define       V_archive_cpio        0.09
    5.33 -%define       V_expect              1.21
    5.34 -%define       V_storable            2.30
    5.35 -%define       V_ipc_sharelite       0.17
    5.36 -%define       V_ipc_shareable       0.60
    5.37 -%define       V_ipc_sharedcache     1.3
    5.38 -%define       V_ipc_run             0.90_03
    5.39 -%define       V_ipc_run3            0.044
    5.40 -%define       V_ipc_signal          1.00
    5.41 -%define       V_ipc_filter          0.004
    5.42 -%define       V_file_tail           0.99.3
    5.43 -%define       V_file_temp           0.22
    5.44 -%define       V_file_remove         1.50
    5.45 -%define       V_file_rename         0.05
    5.46 -%define       V_freezethaw          0.5001
    5.47 -%define       V_authen_sasl         2.15
    5.48 -%define       V_authen_pam          0.16
    5.49 -%define       V_weakref             0.01
    5.50 -%define       V_filehandle_deluxe   0.92
    5.51 -%define       V_filehandle_rollback 1.06
    5.52 -%define       V_filehandle_unget    0.1623
    5.53 -%define       V_spiffy              0.30
    5.54 -%define       V_io                  1.25
    5.55 -%define       V_io_all              0.41
    5.56 -%define       V_io_multiplex        1.10
    5.57 -%define       V_io_interface        1.06
    5.58 -%define       V_io_util             1.5
    5.59 -%define       V_io_mux              0.08
    5.60 -%define       V_boulder             1.30
    5.61 -%define       V_error               0.17016
    5.62 -%define       V_file_fnmatch        0.02
    5.63 -%define       V_user                1.9
    5.64 -%define       V_file_rsync          0.43
    5.65 -%define       V_storable_amf        1.00
    5.66 -%define       V_file_next           1.06
    5.67 -
    5.68 -#   package information
    5.69 -Name:         perl-sys
    5.70 -Summary:      Perl Modules for use with the system
    5.71 -URL:          http://www.cpan.org/
    5.72 -Vendor:       Perl Community
    5.73 -Packager:     OpenPKG Foundation e.V.
    5.74 -Distribution: OpenPKG Community
    5.75 -Class:        BASE
    5.76 -Group:        Perl
    5.77 -License:      GPL/Artistic
    5.78 -Version:      %{V_perl}
    5.79 -Release:      20110914
    5.80 -
    5.81 -#   package options
    5.82 -%option       with_pam   no
    5.83 -
    5.84 -#   list of sources
    5.85 -Source0:      http://www.cpan.org/authors/id/M/MH/MHARNISCH/Unix-Syslog-%{V_unix_syslog}.tar.gz
    5.86 -Source1:      http://www.cpan.org/authors/id/B/BI/BINGOS/Archive-Tar-%{V_archive_tar}.tar.gz
    5.87 -Source2:      http://www.cpan.org/authors/id/A/AD/ADAMK/Archive-Zip-%{V_archive_zip}.tar.gz
    5.88 -Source3:      http://www.cpan.org/authors/id/R/RG/RGIERSIG/Expect-%{V_expect}.tar.gz
    5.89 -Source4:      http://www.cpan.org/authors/id/A/AM/AMS/Storable-%{V_storable}.tar.gz
    5.90 -Source5:      http://www.cpan.org/authors/id/B/BS/BSUGARS/IPC-Shareable-%{V_ipc_shareable}.tar.gz
    5.91 -Source6:      http://www.cpan.org/authors/id/M/MG/MGRABNAR/File-Tail-%{V_file_tail}.tar.gz
    5.92 -Source7:      http://www.cpan.org/modules/by-module/FreezeThaw/FreezeThaw-%{V_freezethaw}.tar.gz
    5.93 -Source8:      http://www.cpan.org/authors/id/G/GB/GBARR/Authen-SASL-%{V_authen_sasl}.tar.gz
    5.94 -Source9:      http://www.cpan.org/authors/id/L/LU/LUKKA/WeakRef-%{V_weakref}.tar.gz
    5.95 -Source10:     http://www.cpan.org/modules/by-module/FileHandle/FileHandle-Deluxe-%{V_filehandle_deluxe}.tar.gz
    5.96 -Source11:     http://www.cpan.org/modules/by-module/FileHandle/FileHandle-Rollback-%{V_filehandle_rollback}.tar.gz
    5.97 -Source12:     http://www.cpan.org/authors/id/D/DC/DCOPPIT/FileHandle-Unget-%{V_filehandle_unget}.tar.gz
    5.98 -Source13:     http://www.cpan.org/authors/id/A/AN/ANDYA/IPC-ShareLite-%{V_ipc_sharelite}.tar.gz
    5.99 -Source14:     http://www.cpan.org/authors/id/S/SA/SAMTREGAR/IPC-SharedCache-%{V_ipc_sharedcache}.tar.gz
   5.100 -Source15:     http://www.cpan.org/authors/id/T/TO/TODDR/IPC-Run-%{V_ipc_run}.tar.gz
   5.101 -Source16:     http://www.cpan.org/authors/id/R/RO/ROSCH/IPC-Signal-%{V_ipc_signal}.tar.gz
   5.102 -Source17:     http://www.cpan.org/authors/id/Z/ZE/ZEFRAM/IPC-Filter-%{V_ipc_filter}.tar.gz
   5.103 -Source18:     http://www.cpan.org/authors/id/I/IN/INGY/Spiffy-%{V_spiffy}.tar.gz
   5.104 -Source19:     http://www.cpan.org/authors/id/G/GB/GBARR/IO-%{V_io}.tar.gz
   5.105 -Source20:     http://www.cpan.org/authors/id/I/IN/INGY/IO-All-%{V_io_all}.tar.gz
   5.106 -Source21:     http://www.cpan.org/authors/id/B/BB/BBB/IO-Multiplex-%{V_io_multiplex}.tar.gz
   5.107 -Source22:     http://www.cpan.org/authors/id/L/LD/LDS/IO-Interface-%{V_io_interface}.tar.gz
   5.108 -Source23:     http://www.cpan.org/authors/id/D/DO/DOMIZIO/IO-Util-%{V_io_util}.tar.gz
   5.109 -Source24:     http://www.cpan.org/authors/id/L/LD/LDS/Boulder-%{V_boulder}.tar.gz
   5.110 -Source25:     http://www.cpan.org/authors/id/S/SH/SHLOMIF/Error-%{V_error}.tar.gz
   5.111 -Source26:     http://www.cpan.org/authors/id/R/RJ/RJBS/IPC-Run3-%{V_ipc_run3}.tar.gz
   5.112 -Source27:     http://www.cpan.org/authors/id/P/PA/PATL/IO-Mux-%{V_io_mux}.tar.gz
   5.113 -Source28:     http://www.cpan.org/authors/id/M/MJ/MJP/File-FnMatch-%{V_file_fnmatch}.tar.gz
   5.114 -Source29:     http://www.cpan.org/authors/id/N/NI/NIKIP/Authen-PAM-%{V_authen_pam}.tar.gz
   5.115 -Source30:     http://www.cpan.org/authors/id/P/PI/PIXEL/Archive-Cpio-%{V_archive_cpio}.tar.gz
   5.116 -Source31:     http://www.cpan.org/authors/id/T/TB/TBONE/User-%{V_user}.tar.gz
   5.117 -Source32:     http://www.cpan.org/authors/id/T/TJ/TJENNESS/File-Temp-%{V_file_temp}.tar.gz
   5.118 -Source33:     http://www.cpan.org/authors/id/A/AD/ADAMK/File-Remove-%{V_file_remove}.tar.gz
   5.119 -Source34:     http://www.cpan.org/authors/id/R/RM/RMBARKER/File-Rename-%{V_file_rename}.tar.gz
   5.120 -Source35:     http://www.cpan.org/authors/id/L/LE/LEAKIN/File-Rsync-%{V_file_rsync}.tar.gz
   5.121 -Source36:     http://www.cpan.org/authors/id/G/GR/GRIAN/Storable-AMF-%{V_storable_amf}.tar.gz
   5.122 -Source37:     http://www.cpan.org/authors/id/P/PE/PETDANCE/File-Next-%{V_file_next}.tar.gz
   5.123 -Patch0:       perl-sys.patch
   5.124 -
   5.125 -#   build information
   5.126 -Prefix:       %{l_prefix}
   5.127 -BuildRoot:    %{l_buildroot}
   5.128 -BuildPreReq:  OpenPKG, openpkg >= 20060823, perl >= %{V_perl}, perl-openpkg >= %{V_perl}-20040126
   5.129 -PreReq:       OpenPKG, openpkg >= 20060823, perl >= %{V_perl}
   5.130 -BuildPreReq:  perl-util, perl-time, perl-term
   5.131 -PreReq:       perl-util, perl-time, perl-term
   5.132 -%if "%{with_pam}" == "yes"
   5.133 -BuildPreReq:  PAM
   5.134 -PreReq:       PAM
   5.135 -%endif
   5.136 -AutoReq:      no
   5.137 -AutoReqProv:  no
   5.138 -
   5.139 -%description
   5.140 -    Perl modules for use with the system:
   5.141 -    - Unix::Syslog (%{V_unix_syslog})
   5.142 -    - Archive::Tar (%{V_archive_tar})
   5.143 -    - Expect (%{V_expect})
   5.144 -    - Storable (%{V_storable})
   5.145 -    - IPC::ShareLite (%{V_ipc_sharelite})
   5.146 -    - IPC::Shareable (%{V_ipc_shareable})
   5.147 -    - IPC::SharedCache (%{V_ipc_sharedcache})
   5.148 -    - IPC::Run (%{V_ipc_run})
   5.149 -    - IPC::Run3 (%{V_ipc_run3})
   5.150 -    - IPC::Signal (%{V_ipc_signal})
   5.151 -    - IPC::Filter (%{V_ipc_filter})
   5.152 -    - File::Tail (%{V_file_tail})
   5.153 -    - FreezeThaw (%{V_freezethaw})
   5.154 -    - Authen::SASL (%{V_authen_sasl})
   5.155 -    - Authen::PAM (%{V_authen_pam}) [with_pam=yes]
   5.156 -    - Archive::Zip (%{V_archive_zip})
   5.157 -    - WeakRef (%{V_weakref})
   5.158 -    - FileHandle::Deluxe (%{V_filehandle_deluxe})
   5.159 -    - FileHandle::Rollback (%{V_filehandle_rollback})
   5.160 -    - FileHandle::Unget (%{V_filehandle_unget})
   5.161 -    - Spiffy (%{V_spiffy})
   5.162 -    - IO (%{V_io})
   5.163 -    - IO::All (%{V_io_all})
   5.164 -    - IO::Multiplex (%{V_io_multiplex})
   5.165 -    - IO::Interface (%{V_io_interface})
   5.166 -    - IO::Util (%{V_io_util})
   5.167 -    - IO::Mux (%{V_io_mux})
   5.168 -    - Boulder (%{V_boulder})
   5.169 -    - Error (%{V_error})
   5.170 -    - File::FnMatch (%{V_file_fnmatch})
   5.171 -    - Archive::Cpio (%{V_archive_cpio})
   5.172 -    - User (%{V_user})
   5.173 -    - File::Temp (%{V_file_temp})
   5.174 -    - File::Remove (%{V_file_remove})
   5.175 -    - File::Rename (%{V_file_rename})
   5.176 -    - File::Rsync (%{V_file_rsync})
   5.177 -    - Storable::AMF (%{V_storable_amf})
   5.178 -    - File::Next (%{V_file_next})
   5.179 -
   5.180 -%track
   5.181 -    prog perl-sys:Archive-Tar = {
   5.182 -        version   = %{V_archive_tar}
   5.183 -        url       = http://www.cpan.org/authors/id/B/BI/BINGOS/
   5.184 -        regex     = Archive-Tar-(__VER__)\.tar\.gz
   5.185 -    }
   5.186 -    prog perl-sys:Archive-Zip = {
   5.187 -        version   = %{V_archive_zip}
   5.188 -        url       = http://www.cpan.org/authors/id/A/AD/ADAMK/
   5.189 -        regex     = Archive-Zip-(__VER__)\.tar\.gz
   5.190 -    }
   5.191 -    prog perl-sys:Authen-SASL = {
   5.192 -        version   = %{V_authen_sasl}
   5.193 -        url       = http://www.cpan.org/authors/id/G/GB/GBARR/
   5.194 -        regex     = Authen-SASL-(__VER__)\.tar\.gz
   5.195 -    }
   5.196 -    prog perl-sys:Expect = {
   5.197 -        version   = %{V_expect}
   5.198 -        url       = http://www.cpan.org/authors/id/R/RG/RGIERSIG/
   5.199 -        regex     = Expect-(__VER__)\.tar\.gz
   5.200 -    }
   5.201 -    prog perl-sys:File-Tail = {
   5.202 -        version   = %{V_file_tail}
   5.203 -        url       = http://www.cpan.org/authors/id/M/MG/MGRABNAR/
   5.204 -        regex     = File-Tail-(__VER__)\.tar\.gz
   5.205 -    }
   5.206 -    prog perl-sys:FileHandle-Deluxe = {
   5.207 -        version   = %{V_filehandle_deluxe}
   5.208 -        url       = http://www.cpan.org/modules/by-module/FileHandle/
   5.209 -        regex     = FileHandle-Deluxe-(__VER__)\.tar\.gz
   5.210 -    }
   5.211 -    prog perl-sys:FileHandle-Rollback = {
   5.212 -        version   = %{V_filehandle_rollback}
   5.213 -        url       = http://www.cpan.org/modules/by-module/FileHandle/
   5.214 -        regex     = FileHandle-Rollback-(__VER__)\.tar\.gz
   5.215 -    }
   5.216 -    prog perl-sys:FileHandle-Unget = {
   5.217 -        version   = %{V_filehandle_unget}
   5.218 -        url       = http://www.cpan.org/authors/id/D/DC/DCOPPIT/
   5.219 -        regex     = FileHandle-Unget-(__VER__)\.tar\.gz
   5.220 -    }
   5.221 -    prog perl-sys:FreezeThaw = {
   5.222 -        version   = %{V_freezethaw}
   5.223 -        url       = http://www.cpan.org/modules/by-module/FreezeThaw/
   5.224 -        regex     = FreezeThaw-(__VER__)\.tar\.gz
   5.225 -    }
   5.226 -    prog perl-sys:IPC-Shareable = {
   5.227 -        version   = %{V_ipc_shareable}
   5.228 -        url       = http://www.cpan.org/authors/id/B/BS/BSUGARS/
   5.229 -        regex     = IPC-Shareable-(__VER__)\.tar\.gz
   5.230 -    }
   5.231 -    prog perl-sys:IPC-ShareLite = {
   5.232 -        version   = %{V_ipc_sharelite}
   5.233 -        url       = http://www.cpan.org/authors/id/A/AN/ANDYA/
   5.234 -        regex     = IPC-ShareLite-(__VER__)\.tar\.gz
   5.235 -    }
   5.236 -    prog perl-sys:IPC-SharedCache = {
   5.237 -        version   = %{V_ipc_sharedcache}
   5.238 -        url       = http://www.cpan.org/authors/id/S/SA/SAMTREGAR/
   5.239 -        regex     = IPC-SharedCache-(__VER__)\.tar\.gz
   5.240 -    }
   5.241 -    prog perl-sys:IPC-Run = {
   5.242 -        version   = %{V_ipc_run}
   5.243 -        url       = http://www.cpan.org/authors/id/T/TO/TODDR/
   5.244 -        regex     = IPC-Run-(__VER__)\.tar\.gz
   5.245 -    }
   5.246 -    prog perl-sys:IPC-Run3 = {
   5.247 -        version   = %{V_ipc_run3}
   5.248 -        url       = http://www.cpan.org/authors/id/R/RJ/RJBS/
   5.249 -        regex     = IPC-Run3-(__VER__)\.tar\.gz
   5.250 -    }
   5.251 -    prog perl-sys:IPC-Signal = {
   5.252 -        version   = %{V_ipc_signal}
   5.253 -        url       = http://www.cpan.org/authors/id/R/RO/ROSCH/
   5.254 -        regex     = IPC-Signal-(__VER__)\.tar\.gz
   5.255 -    }
   5.256 -    prog perl-sys:IPC-Filter = {
   5.257 -        version   = %{V_ipc_filter}
   5.258 -        url       = http://www.cpan.org/authors/id/Z/ZE/ZEFRAM/
   5.259 -        regex     = IPC-Filter-(__VER__)\.tar\.gz
   5.260 -    }
   5.261 -    prog perl-sys:Storable = {
   5.262 -        version   = %{V_storable}
   5.263 -        url       = http://www.cpan.org/authors/id/A/AM/AMS/
   5.264 -        regex     = Storable-(__VER__)\.tar\.gz
   5.265 -    }
   5.266 -    prog perl-sys:Unix-Syslog = {
   5.267 -        version   = %{V_unix_syslog}
   5.268 -        url       = http://www.cpan.org/authors/id/M/MH/MHARNISCH/
   5.269 -        regex     = Unix-Syslog-(__VER__)\.tar\.gz
   5.270 -    }
   5.271 -    prog perl-sys:WeakRef = {
   5.272 -        version   = %{V_weakref}
   5.273 -        url       = http://www.cpan.org/authors/id/L/LU/LUKKA/
   5.274 -        regex     = WeakRef-(__VER__)\.tar\.gz
   5.275 -    }
   5.276 -    prog perl-sys:Spiffy = {
   5.277 -        version   = %{V_spiffy}
   5.278 -        url       = http://www.cpan.org/authors/id/I/IN/INGY/
   5.279 -        regex     = Spiffy-(__VER__)\.tar\.gz
   5.280 -    }
   5.281 -    prog perl-sys:IO = {
   5.282 -        version   = %{V_io}
   5.283 -        url       = http://www.cpan.org/modules/by-module/IO/
   5.284 -        regex     = \bIO-(__VER__)\.tar\.gz
   5.285 -    }
   5.286 -    prog perl-sys:IO-All = {
   5.287 -        version   = %{V_io_all}
   5.288 -        url       = http://www.cpan.org/authors/id/G/GB/GBARR/
   5.289 -        regex     = IO-All-(__VER__)\.tar\.gz
   5.290 -    }
   5.291 -    prog perl-sys:IO-Multiplex = {
   5.292 -        version   = %{V_io_multiplex}
   5.293 -        url       = http://www.cpan.org/authors/id/B/BB/BBB/
   5.294 -        regex     = IO-Multiplex-(__VER__)\.tar\.gz
   5.295 -    }
   5.296 -    prog perl-sys:IO-Interface = {
   5.297 -        version   = %{V_io_interface}
   5.298 -        url       = http://www.cpan.org/authors/id/L/LD/LDS/
   5.299 -        regex     = IO-Interface-(__VER__)\.tar\.gz
   5.300 -    }
   5.301 -    prog perl-sys:IO-Util = {
   5.302 -        version   = %{V_io_util}
   5.303 -        url       = http://www.cpan.org/authors/id/D/DO/DOMIZIO/
   5.304 -        regex     = IO-Util-(__VER__)\.tar\.gz
   5.305 -    }
   5.306 -    prog perl-sys:IO-Mux = {
   5.307 -        version   = %{V_io_mux}
   5.308 -        url       = http://www.cpan.org/authors/id/P/PA/PATL/
   5.309 -        regex     = IO-Mux-(__VER__)\.tar\.gz
   5.310 -    }
   5.311 -    prog perl-sys:Boulder = {
   5.312 -        version   = %{V_boulder}
   5.313 -        url       = http://www.cpan.org/authors/id/L/LD/LDS/
   5.314 -        regex     = Boulder-(__VER__)\.tar\.gz
   5.315 -    }
   5.316 -    prog perl-sys:Error = {
   5.317 -        version   = %{V_error}
   5.318 -        url       = http://www.cpan.org/authors/id/S/SH/SHLOMIF/
   5.319 -        regex     = Error-(__VER__)\.tar\.gz
   5.320 -    }
   5.321 -    prog perl-sys:File-FnMatch = {
   5.322 -        version   = %{V_file_fnmatch}
   5.323 -        url       = http://www.cpan.org/authors/id/M/MJ/MJP/
   5.324 -        regex     = File-FnMatch-(__VER__)\.tar\.gz
   5.325 -    }
   5.326 -    prog perl-sys:Authen-PAM = {
   5.327 -        version   = %{V_authen_pam}
   5.328 -        url       = http://www.cpan.org/authors/id/N/NI/NIKIP/
   5.329 -        regex     = Authen-PAM-(__VER__)\.tar\.gz
   5.330 -    }
   5.331 -    prog perl-sys:Archive-Cpio = {
   5.332 -        version   = %{V_archive_cpio}
   5.333 -        url       = http://www.cpan.org/authors/id/P/PI/PIXEL/
   5.334 -        regex     = Archive-Cpio-(__VER__)\.tar\.gz
   5.335 -    }
   5.336 -    prog perl-sys:User = {
   5.337 -        version   = %{V_user}
   5.338 -        url       = http://www.cpan.org/authors/id/T/TB/TBONE/
   5.339 -        regex     = User-(__VER__)\.tar\.gz
   5.340 -    }
   5.341 -    prog perl-sys:File-Temp = {
   5.342 -        version   = %{V_file_temp}
   5.343 -        url       = http://www.cpan.org/authors/id/T/TJ/TJENNESS/
   5.344 -        regex     = File-Temp-(__VER__)\.tar\.gz
   5.345 -    }
   5.346 -    prog perl-sys:File-Remove = {
   5.347 -        version   = %{V_file_remove}
   5.348 -        url       = http://www.cpan.org/authors/id/A/AD/ADAMK/
   5.349 -        regex     = File-Remove-(__VER__)\.tar\.gz
   5.350 -    }
   5.351 -    prog perl-sys:File-Rename = {
   5.352 -        version   = %{V_file_rename}
   5.353 -        url       = http://www.cpan.org/authors/id/R/RM/RMBARKER/
   5.354 -        regex     = File-Rename-(__VER__)\.tar\.gz
   5.355 -    }
   5.356 -    prog perl-sys:File-Rsync = {
   5.357 -        version   = %{V_file_rsync}
   5.358 -        url       = http://www.cpan.org/authors/id/L/LE/LEAKIN/
   5.359 -        regex     = File-Rsync-(__VER__)\.tar\.gz
   5.360 -    }
   5.361 -    prog perl-sys:Storable-AMF = {
   5.362 -        version   = %{V_storable_amf}
   5.363 -        url       = http://www.cpan.org/authors/id/G/GR/GRIAN/
   5.364 -        regex     = Storable-AMF-(__VER__)\.tar\.gz
   5.365 -    }
   5.366 -    prog perl-sys:File-Next = {
   5.367 -        version   = %{V_file_next}
   5.368 -        url       = http://www.cpan.org/authors/id/P/PE/PETDANCE/
   5.369 -        regex     = File-Next-(__VER__)\.tar\.gz
   5.370 -    }
   5.371 -
   5.372 -%prep
   5.373 -    %setup -q -c
   5.374 -    %setup -q -T -D -a 1
   5.375 -    %setup -q -T -D -a 2
   5.376 -    %setup -q -T -D -a 3
   5.377 -    %setup -q -T -D -a 4
   5.378 -    %setup -q -T -D -a 5
   5.379 -    %setup -q -T -D -a 6
   5.380 -    %setup -q -T -D -a 7
   5.381 -    %setup -q -T -D -a 8
   5.382 -    %setup -q -T -D -a 9
   5.383 -    %setup -q -T -D -a 10
   5.384 -    %setup -q -T -D -a 11
   5.385 -    %setup -q -T -D -a 12
   5.386 -    %setup -q -T -D -a 13
   5.387 -    %setup -q -T -D -a 14
   5.388 -    %setup -q -T -D -a 15
   5.389 -    %setup -q -T -D -a 16
   5.390 -    %setup -q -T -D -a 17
   5.391 -    %setup -q -T -D -a 18
   5.392 -    %setup -q -T -D -a 19
   5.393 -    %setup -q -T -D -a 20
   5.394 -    %setup -q -T -D -a 21
   5.395 -    %setup -q -T -D -a 22
   5.396 -    %setup -q -T -D -a 23
   5.397 -    %setup -q -T -D -a 24
   5.398 -    %setup -q -T -D -a 25
   5.399 -    %setup -q -T -D -a 26
   5.400 -    %setup -q -T -D -a 27
   5.401 -    %setup -q -T -D -a 28
   5.402 -    %setup -q -T -D -a 29
   5.403 -    %setup -q -T -D -a 30
   5.404 -    %setup -q -T -D -a 31
   5.405 -    %setup -q -T -D -a 32
   5.406 -    %setup -q -T -D -a 33
   5.407 -    %setup -q -T -D -a 34
   5.408 -    %setup -q -T -D -a 35
   5.409 -    %setup -q -T -D -a 36
   5.410 -    %setup -q -T -D -a 37
   5.411 -    %patch -p0
   5.412 -
   5.413 -%build
   5.414 -    %{l_shtool} subst \
   5.415 -        -e 's;/usr/local/bin/rsync;%{l_prefix}/bin/rsync;' \
   5.416 -        -e 's;<STDIN>;"";' \
   5.417 -        File-Rsync-*/makepm.PL
   5.418 -
   5.419 -%install
   5.420 -    rm -rf $RPM_BUILD_ROOT
   5.421 -    %{l_prefix}/bin/perl-openpkg prepare
   5.422 -    %{l_prefix}/bin/perl-openpkg -d %{SOURCE0}  configure build install
   5.423 -    %{l_prefix}/bin/perl-openpkg -d %{SOURCE1}  configure build install
   5.424 -    %{l_prefix}/bin/perl-openpkg -d %{SOURCE2}  configure build install
   5.425 -    %{l_prefix}/bin/perl-openpkg -d %{SOURCE3}  configure build install
   5.426 -    %{l_prefix}/bin/perl-openpkg -d %{SOURCE4}  configure build install
   5.427 -    %{l_prefix}/bin/perl-openpkg -d %{SOURCE5}  configure build install
   5.428 -    %{l_prefix}/bin/perl-openpkg -d %{SOURCE6}  configure build install
   5.429 -    %{l_prefix}/bin/perl-openpkg -d %{SOURCE7}  configure build install
   5.430 -    %{l_prefix}/bin/perl-openpkg -d %{SOURCE8}  configure build install
   5.431 -    %{l_prefix}/bin/perl-openpkg -d %{SOURCE9}  configure build install
   5.432 -    %{l_prefix}/bin/perl-openpkg -d %{SOURCE10} configure build install
   5.433 -    %{l_prefix}/bin/perl-openpkg -d %{SOURCE11} configure build install
   5.434 -    %{l_prefix}/bin/perl-openpkg -d %{SOURCE12} configure build install
   5.435 -    %{l_prefix}/bin/perl-openpkg -d %{SOURCE13} configure build install
   5.436 -    %{l_prefix}/bin/perl-openpkg -d %{SOURCE14} configure build install
   5.437 -    %{l_prefix}/bin/perl-openpkg -d %{SOURCE15} configure build install
   5.438 -    %{l_prefix}/bin/perl-openpkg -d %{SOURCE16} configure build install
   5.439 -    %{l_prefix}/bin/perl-openpkg -d %{SOURCE17} configure build install
   5.440 -    %{l_prefix}/bin/perl-openpkg -d %{SOURCE18} configure build install
   5.441 -    %{l_prefix}/bin/perl-openpkg -d %{SOURCE19} configure build install
   5.442 -    %{l_prefix}/bin/perl-openpkg -d %{SOURCE20} configure build install
   5.443 -    %{l_prefix}/bin/perl-openpkg -d %{SOURCE21} configure build install
   5.444 -    %{l_prefix}/bin/perl-openpkg -d %{SOURCE22} configure build install
   5.445 -    %{l_prefix}/bin/perl-openpkg -d %{SOURCE23} configure build install
   5.446 -    %{l_prefix}/bin/perl-openpkg -d %{SOURCE24} configure build install
   5.447 -    %{l_prefix}/bin/perl-openpkg -d %{SOURCE25} configure build install
   5.448 -    %{l_prefix}/bin/perl-openpkg -d %{SOURCE26} configure build install
   5.449 -    %{l_prefix}/bin/perl-openpkg -d %{SOURCE27} configure build install
   5.450 -    %{l_prefix}/bin/perl-openpkg -d %{SOURCE28} configure build install
   5.451 -%if "%{with_pam}" == "yes"
   5.452 -    export CC="%{l_cc}"
   5.453 -    export CFLAGS="%{l_cflags} -I`%{l_rc} --query pam_incdir`"
   5.454 -    export CPPFLAGS="%{l_cppflags} -I`%{l_rc} --query pam_incdir`"
   5.455 -    export LDFLAGS="%{l_ldflags} -L`%{l_rc} --query pam_libdir`"
   5.456 -    %{l_prefix}/bin/perl-openpkg -d %{SOURCE29} configure build install
   5.457 -%endif
   5.458 -    %{l_prefix}/bin/perl-openpkg -d %{SOURCE30} configure build install
   5.459 -    %{l_prefix}/bin/perl-openpkg -d %{SOURCE31} configure build install
   5.460 -    %{l_prefix}/bin/perl-openpkg -d %{SOURCE32} configure build install
   5.461 -    %{l_prefix}/bin/perl-openpkg -d %{SOURCE33} configure build install
   5.462 -    %{l_prefix}/bin/perl-openpkg -d %{SOURCE34} configure build install
   5.463 -    %{l_prefix}/bin/perl-openpkg -d %{SOURCE35} configure build install
   5.464 -    %{l_prefix}/bin/perl-openpkg -d %{SOURCE36} configure build install
   5.465 -    %{l_prefix}/bin/perl-openpkg -d %{SOURCE37} configure build install
   5.466 -    %{l_prefix}/bin/perl-openpkg -F perl-openpkg-files fixate cleanup
   5.467 -    %{l_rpmtool} files -v -ofiles -r$RPM_BUILD_ROOT %{l_files_std} `cat perl-openpkg-files`
   5.468 -
   5.469 -%files -f files
   5.470 -
   5.471 -%clean
   5.472 -    rm -rf $RPM_BUILD_ROOT
   5.473 -

mercurial