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-Dec-2007 20:05:17
Branch: HEAD Handle: 2007121919051501
Added files:
openpkg-src/perl-regex perl-regex.patch perl-regex.spec
Modified files:
openpkg-src/perl-util perl-util.spec
Log:
factor out regex stuff from perl-util to perl-regex
Summary:
Revision Changes Path
1.1 +33 -0 openpkg-src/perl-regex/perl-regex.patch
1.1 +214 -0 openpkg-src/perl-regex/perl-regex.spec
1.373 +25 -114 openpkg-src/perl-util/perl-util.spec
____________________________________________________________________________
patch -p0 <<'@@ .'
Index: openpkg-src/perl-regex/perl-regex.patch
============================================================================
$ cvs diff -u -r0 -r1.1 perl-regex.patch
--- /dev/null 2007-12-19 20:04:48 +0100
+++ perl-regex.patch 2007-12-19 20:05:16 +0100
@@ -0,0 +1,33 @@
+Index: Regexp-Keep-0.02/Keep.xs
+--- Regexp-Keep-0.02/Keep.xs.orig 2004-05-07 19:23:36 +0200
++++ Regexp-Keep-0.02/Keep.xs 2007-12-19 17:35:18 +0100
+@@ -11,4 +11,4 @@
+ KEEP()
+ PROTOTYPE:
+ CODE:
+- PL_regstartp[0] = PL_reginput - PL_bostr;
++ PL_reg_state.re_state_regoffs[0].start = PL_reginput - PL_bostr;
+Index: re-engine-PCRE-0.15/Makefile.PL
+--- re-engine-PCRE-0.15/Makefile.PL.orig 2007-12-19 00:38:26 +0100
++++ re-engine-PCRE-0.15/Makefile.PL 2007-12-19 17:39:36 +0100
+@@ -7,5 +7,6 @@
+ VERSION_FROM => 'PCRE.pm',
+ ABSTRACT_FROM => 'PCRE.pm',
+ LICENSE => 'perl',
+- LIBS => [ '-lpcre' ],
++ INC => `pcre-config --cflags`,
++ LIBS => [ `pcre-config --libs` ],
+ );
+Index: re-engine-TRE-0.01/Makefile.PL
+--- re-engine-TRE-0.01/Makefile.PL.orig 2007-07-12 07:09:51 +0200
++++ re-engine-TRE-0.01/Makefile.PL 2007-12-19 17:41:52 +0100
+@@ -14,7 +14,8 @@
+ build_requires 'Test::More' => 0; # 5.007003
+
+ makemaker_args DIR => [ 'tre' ];
+-makemaker_args INC => '-Itre';
++makemaker_args INC => `pkg-config tre --cflags`;
++makemaker_args LIBS => [ `pkg-config tre --libs` ];
+ makemaker_args LDDLFLAGS => '-shared tre/*.o';
+
+ tests 't/*.t';
@@ .
patch -p0 <<'@@ .'
Index: openpkg-src/perl-regex/perl-regex.spec
============================================================================
$ cvs diff -u -r0 -r1.1 perl-regex.spec
--- /dev/null 2007-12-19 20:04:48 +0100
+++ perl-regex.spec 2007-12-19 20:05:16 +0100
@@ -0,0 +1,214 @@
+##
+## perl-regex.spec -- OpenPKG RPM Package Specification
+## Copyright (c) 2000-2007 OpenPKG Foundation e.V. <http://openpkg.net/>
+## Copyright (c) 2000-2007 Ralf S. Engelschall <http://engelschall.com/>
+##
+## Permission to use, copy, modify, and distribute this software for
+## any purpose with or without fee is hereby granted, provided that
+## the above copyright notice and this permission notice appear in all
+## copies.
+##
+## THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
+## WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
+## MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
+## IN NO EVENT SHALL THE AUTHORS AND COPYRIGHT HOLDERS AND THEIR
+## CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+## SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+## LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
+## USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
+## ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
+## OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
+## OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+## SUCH DAMAGE.
+##
+
+# versions of individual parts
+%define V_perl 5.10.0
+%define V_re_engine_plugin 0.04_01
+%define V_re_engine_posix 0.04
+%define V_re_engine_pcre 0.15
+%define V_re_engine_tre 0.01
+%define V_regexp_bind 0.05
+%define V_regexp_common 2.120
+%define V_regexp_copy 0.06
+%define V_regexp_extended 0.01
+%define V_regexp_keep 0.02
+%define V_regexp_parser 0.20
+%define V_regexp_shellish 0.93
+%define V_regexp_assemble 0.32
+%define V_regexp_wildcards 0.07
+
+# package information
+Name: perl-regex
+Summary: Perl Modules for Regular Expression Management
+URL: http://www.cpan.org/
+Vendor: Perl Community
+Packager: OpenPKG Foundation e.V.
+Distribution: OpenPKG Community
+Class: BASE
+Group: Perl
+License: GPL/Artistic
+Version: %{V_perl}
+Release: 20071219
+
+# package options
+%option with_posix no
+%option with_pcre no
+%option with_tre no
+
+# list of sources
+Source0:
http://www.cpan.org/authors/id/A/AV/AVAR/re-engine-POSIX-%{V_re_engine_posix}.tar.gz
+Source1:
http://www.cpan.org/authors/id/A/AV/AVAR/re-engine-PCRE-%{V_re_engine_pcre}.tar.gz
+Source2:
http://www.cpan.org/authors/id/A/AV/AVAR/re-engine-TRE-%{V_re_engine_tre}.tar.gz
+Source3:
http://www.cpan.org/modules/by-module/Regexp/Regexp-Bind-%{V_regexp_bind}.tar.gz
+Source4:
http://www.cpan.org/modules/by-module/Regexp/Regexp-Common-%{V_regexp_common}.tar.gz
+Source5:
http://www.cpan.org/modules/by-module/Regexp/Regexp-Copy-%{V_regexp_copy}.tar.gz
+Source6:
http://www.cpan.org/modules/by-module/Regexp/Regexp-Extended-%{V_regexp_extended}.tar.gz
+Source7:
http://www.cpan.org/modules/by-module/Regexp/Regexp-Keep-%{V_regexp_keep}.tar.gz
+Source8:
http://www.cpan.org/modules/by-module/Regexp/Regexp-Parser-%{V_regexp_parser}.tar.gz
+Source9:
http://www.cpan.org/modules/by-module/Regexp/Regexp-Shellish-%{V_regexp_shellish}.tar.gz
+Source10:
http://www.cpan.org/modules/by-module/Regexp/Regexp-Assemble-%{V_regexp_assemble}.tar.gz
+Source11:
http://www.cpan.org/modules/by-module/Regexp/Regexp-Wildcards-%{V_regexp_wildcards}.tar.gz
+Patch0: perl-regex.patch
+
+# build information
+Prefix: %{l_prefix}
+BuildRoot: %{l_buildroot}
+BuildPreReq: OpenPKG, openpkg >= 20040130, perl >= %{V_perl}, perl-openpkg
>= %{V_perl}-20040126
+PreReq: OpenPKG, openpkg >= 20040130, perl >= %{V_perl}
+BuildPreReq: perl-module
+PreReq: perl-module
+%if "%{with_pcre}" == "yes"
+BuildPreReq: pcre
+PreReq: pcre
+%endif
+%if "%{with_tre}" == "yes"
+BuildPreReq: tre, pkgconfig
+PreReq: tre, pkgconfig
+%endif
+AutoReq: no
+AutoReqProv: no
+
+%description
+ Perl modules for regular expression management:
+ - re::engine::POSIX (%{V_re_engine_posix}) [with_posix=yes]
+ - re::engine::PCRE (%{V_re_engine_pcre}) [with_pcre=yes]
+ - re::engine::TRE (%{V_re_engine_tre}) [with_tre=yes]
+ - Regexp::Bind (%{V_regexp_bind})
+ - Regexp::Common (%{V_regexp_common})
+ - Regexp::Copy (%{V_regexp_copy})
+ - Regexp::Extended (%{V_regexp_extended})
+ - Regexp::Keep (%{V_regexp_keep})
+ - Regexp::Parser (%{V_regexp_parser})
+ - Regexp::Shellish (%{V_regexp_shellish})
+ - Regexp::Assemble (%{V_regexp_assemble})
+ - Regexp::Wildcards (%{V_regexp_wildcards})
+
+%track
+ prog perl-util:re-engine-POSIX = {
+ version = %{V_re_engine_posix}
+ url = http://www.cpan.org/authors/id/A/AV/AVAR/
+ regex = re-engine-POSIX-(__VER__)\.tar\.gz
+ }
+ prog perl-util:re-engine-PCRE = {
+ version = %{V_re_engine_pcre}
+ url = http://www.cpan.org/authors/id/A/AV/AVAR/
+ regex = re-engine-PCRE-(__VER__)\.tar\.gz
+ }
+ prog perl-util:re-engine-TRE = {
+ version = %{V_re_engine_tre}
+ url = http://www.cpan.org/authors/id/A/AV/AVAR/
+ regex = re-engine-TRE-(__VER__)\.tar\.gz
+ }
+ prog perl-util:Regexp-Bind = {
+ version = %{V_regexp_bind}
+ url = http://www.cpan.org/modules/by-module/Regexp/
+ regex = Regexp-Bind-(__VER__)\.tar\.gz
+ }
+ prog perl-util:Regexp-Common = {
+ version = %{V_regexp_common}
+ url = http://www.cpan.org/modules/by-module/Regexp/
+ regex = Regexp-Common-(__VER__)\.tar\.gz
+ }
+ prog perl-util:Regexp-Copy = {
+ version = %{V_regexp_copy}
+ url = http://www.cpan.org/modules/by-module/Regexp/
+ regex = Regexp-Copy-(__VER__)\.tar\.gz
+ }
+ prog perl-util:Regexp-Extended = {
+ version = %{V_regexp_extended}
+ url = http://www.cpan.org/modules/by-module/Regexp/
+ regex = Regexp-Extended-(__VER__)\.tar\.gz
+ }
+ prog perl-util:Regexp-Keep = {
+ version = %{V_regexp_keep}
+ url = http://www.cpan.org/modules/by-module/Regexp/
+ regex = Regexp-Keep-(__VER__)\.tar\.gz
+ }
+ prog perl-util:Regexp-Parser = {
+ version = %{V_regexp_parser}
+ url = http://www.cpan.org/modules/by-module/Regexp/
+ regex = Regexp-Parser-(__VER__)\.tar\.gz
+ }
+ prog perl-util:Regexp-Shellish = {
+ version = %{V_regexp_shellish}
+ url = http://www.cpan.org/modules/by-module/Regexp/
+ regex = Regexp-Shellish-(__VER__)\.tar\.gz
+ }
+ prog perl-util:Regexp-Assemble = {
+ version = %{V_regexp_assemble}
+ url = http://www.cpan.org/modules/by-module/Regexp/
+ regex = Regexp-Assemble-(__VER__)\.tar\.gz
+ }
+ prog perl-util:Regexp-Wildcards = {
+ version = %{V_regexp_wildcards}
+ url = http://www.cpan.org/modules/by-module/Regexp/
+ regex = Regexp-Wildcards-(__VER__)\.tar\.gz
+ }
+
+%prep
+ %setup -q -c
+ %setup -q -T -D -a 1
+ %setup -q -T -D -a 2
+ %setup -q -T -D -a 3
+ %setup -q -T -D -a 4
+ %setup -q -T -D -a 5
+ %setup -q -T -D -a 6
+ %setup -q -T -D -a 7
+ %setup -q -T -D -a 8
+ %setup -q -T -D -a 9
+ %setup -q -T -D -a 10
+ %setup -q -T -D -a 11
+ %patch -p0
+
+%build
+
+%install
+ rm -rf $RPM_BUILD_ROOT
+ %{l_prefix}/bin/perl-openpkg prepare
+%if "%{with_posix}" == "yes"
+ %{l_prefix}/bin/perl-openpkg -d %{SOURCE0} configure build install
+%endif
+%if "%{with_pcre}" == "yes"
+ %{l_prefix}/bin/perl-openpkg -d %{SOURCE1} configure build install
+%endif
+%if "%{with_tre}" == "yes"
+ %{l_prefix}/bin/perl-openpkg -d %{SOURCE2} configure build install
+%endif
+ %{l_prefix}/bin/perl-openpkg -d %{SOURCE3} configure build install
+ %{l_prefix}/bin/perl-openpkg -d %{SOURCE4} configure build install
+ %{l_prefix}/bin/perl-openpkg -d %{SOURCE5} configure build install
+ %{l_prefix}/bin/perl-openpkg -d %{SOURCE6} configure build install
+ %{l_prefix}/bin/perl-openpkg -d %{SOURCE7} configure build install
+ %{l_prefix}/bin/perl-openpkg -d %{SOURCE8} configure build install
+ %{l_prefix}/bin/perl-openpkg -d %{SOURCE9} configure build install
+ %{l_prefix}/bin/perl-openpkg -d %{SOURCE10} configure build install
+ %{l_prefix}/bin/perl-openpkg -d %{SOURCE11} configure build install
+ %{l_prefix}/bin/perl-openpkg -F perl-openpkg-files fixate cleanup
+ %{l_rpmtool} files -v -ofiles -r$RPM_BUILD_ROOT %{l_files_std} `cat
perl-openpkg-files`
+
+%files -f files
+
+%clean
+ rm -rf $RPM_BUILD_ROOT
+
@@ .
patch -p0 <<'@@ .'
Index: openpkg-src/perl-util/perl-util.spec
============================================================================
$ cvs diff -u -r1.372 -r1.373 perl-util.spec
--- openpkg-src/perl-util/perl-util.spec 19 Dec 2007 13:51:09 -0000
1.372
+++ openpkg-src/perl-util/perl-util.spec 19 Dec 2007 19:05:16 -0000
1.373
@@ -71,15 +71,6 @@
%define V_universal_moniker 0.08
%define V_universal_require 0.11
%define V_fields_aliased 1.05
-%define V_regexp_bind 0.05
-%define V_regexp_common 2.120
-%define V_regexp_copy 0.06
-%define V_regexp_extended 0.01
-%define V_regexp_keep 0.02
-%define V_regexp_parser 0.20
-%define V_regexp_shellish 0.93
-%define V_regexp_assemble 0.32
-%define V_regexp_wildcards 0.07
%define V_contize 0.3
%define V_memoize 1.01
%define V_path_class 0.16
@@ -151,40 +142,31 @@
Source36:
http://www.cpan.org/modules/by-module/Class/Class-WhiteHole-%{V_class_whitehole}.tar.gz
Source37:
http://www.cpan.org/modules/by-module/UNIVERSAL/UNIVERSAL-moniker-%{V_universal_moniker}.tar.gz
Source38:
http://www.cpan.org/modules/by-module/fields/fields-aliased-%{V_fields_aliased}.tar.gz
-Source39:
http://www.cpan.org/modules/by-module/Regexp/Regexp-Bind-%{V_regexp_bind}.tar.gz
-Source40:
http://www.cpan.org/modules/by-module/Regexp/Regexp-Common-%{V_regexp_common}.tar.gz
-Source41:
http://www.cpan.org/modules/by-module/Regexp/Regexp-Copy-%{V_regexp_copy}.tar.gz
-Source42:
http://www.cpan.org/modules/by-module/Regexp/Regexp-Extended-%{V_regexp_extended}.tar.gz
-Source43:
http://www.cpan.org/modules/by-module/Regexp/Regexp-Keep-%{V_regexp_keep}.tar.gz
-Source44:
http://www.cpan.org/modules/by-module/Regexp/Regexp-Parser-%{V_regexp_parser}.tar.gz
-Source45:
http://www.cpan.org/modules/by-module/Regexp/Regexp-Shellish-%{V_regexp_shellish}.tar.gz
-Source46:
http://www.cpan.org/authors/id/A/AW/AWWAIID/Contize-%{V_contize}.tar.gz
-Source47:
http://www.cpan.org/modules/by-module/Data/Data-Flow-%{V_data_flow}.tar.gz
-Source48:
http://www.cpan.org/modules/by-module/Data/Data-Table-%{V_data_table}.tar.gz
-Source49:
http://www.cpan.org/authors/id/M/MJ/MJD/Memoize-%{V_memoize}.tar.gz
-Source50:
http://www.cpan.org/modules/by-module/Data/Data-Compare-%{V_data_compare}.tar.gz
-Source51:
http://www.cpan.org/modules/by-module/Data/Data-Dumper-Simple-%{V_data_dumper_simple}.tar.gz
-Source52:
http://www.cpan.org/authors/id/K/KW/KWILLIAMS/Path-Class-%{V_path_class}.tar.gz
-Source53:
http://www.cpan.org/modules/by-module/AnyData/AnyData-%{V_anydata}.tar.gz
-Source54:
http://www.cpan.org/authors/id/D/DO/DOMIZIO/OOTools-%{V_ootools}.tar.gz
-Source55:
http://www.cpan.org/modules/by-module/Data/Data-Hierarchy-%{V_data_hierarchy}.tar.gz
-Source56:
http://www.cpan.org/modules/by-module/Clone/Clone-%{V_clone}.tar.gz
-Source57:
http://www.cpan.org/modules/by-module/Clone/Clone-PP-%{V_clone_pp}.tar.gz
-Source58:
http://www.cpan.org/modules/by-module/Data/Data-Page-%{V_data_page}.tar.gz
-Source59:
http://www.cpan.org/modules/by-module/Data/Data-Page-Pageset-%{V_data_page_pageset}.tar.gz
-Source60:
http://www.cpan.org/modules/by-module/Regexp/Regexp-Assemble-%{V_regexp_assemble}.tar.gz
-Source61: http://www.cpan.org/authors/id/R/RO/ROBIN/Want-%{V_want}.tar.gz
-Source62:
http://www.cpan.org/modules/by-module/Class/Class-ErrorHandler-%{V_class_errorhandler}.tar.gz
-Source63:
http://www.cpan.org/modules/by-module/Class/Class-Singleton-%{V_class_singleton}.tar.gz
-Source64:
http://www.cpan.org/modules/by-module/UNIVERSAL/UNIVERSAL-require-%{V_universal_require}.tar.gz
-Source65:
http://www.cpan.org/modules/by-module/Class/Class-InsideOut-%{V_class_insideout}.tar.gz
-Source66:
http://www.cpan.org/modules/by-module/Class/Class-Trait-%{V_class_trait}.tar.gz
-Source67:
http://www.cpan.org/modules/by-module/Hash/Hash-Merge-%{V_hash_merge}.tar.gz
-Source68:
http://www.cpan.org/authors/id/R/RO/ROODE/Readonly-%{V_readonly}.tar.gz
-Source69:
http://www.cpan.org/modules/by-module/Regexp/Regexp-Wildcards-%{V_regexp_wildcards}.tar.gz
-Source70:
http://www.cpan.org/modules/by-module/Sub/Sub-Uplevel-%{V_sub_uplevel}.tar.gz
-Source71:
http://www.cpan.org/modules/by-module/Sub/Sub-Exporter-%{V_sub_exporter}.tar.gz
-Source72:
http://www.cpan.org/modules/by-module/Class/Class-Base-%{V_class_base}.tar.gz
+Source39:
http://www.cpan.org/authors/id/A/AW/AWWAIID/Contize-%{V_contize}.tar.gz
+Source40:
http://www.cpan.org/modules/by-module/Data/Data-Flow-%{V_data_flow}.tar.gz
+Source41:
http://www.cpan.org/modules/by-module/Data/Data-Table-%{V_data_table}.tar.gz
+Source42:
http://www.cpan.org/authors/id/M/MJ/MJD/Memoize-%{V_memoize}.tar.gz
+Source43:
http://www.cpan.org/modules/by-module/Data/Data-Compare-%{V_data_compare}.tar.gz
+Source44:
http://www.cpan.org/modules/by-module/Data/Data-Dumper-Simple-%{V_data_dumper_simple}.tar.gz
+Source45:
http://www.cpan.org/authors/id/K/KW/KWILLIAMS/Path-Class-%{V_path_class}.tar.gz
+Source46:
http://www.cpan.org/modules/by-module/AnyData/AnyData-%{V_anydata}.tar.gz
+Source47:
http://www.cpan.org/authors/id/D/DO/DOMIZIO/OOTools-%{V_ootools}.tar.gz
+Source48:
http://www.cpan.org/modules/by-module/Data/Data-Hierarchy-%{V_data_hierarchy}.tar.gz
+Source49:
http://www.cpan.org/modules/by-module/Clone/Clone-%{V_clone}.tar.gz
+Source50:
http://www.cpan.org/modules/by-module/Clone/Clone-PP-%{V_clone_pp}.tar.gz
+Source51:
http://www.cpan.org/modules/by-module/Data/Data-Page-%{V_data_page}.tar.gz
+Source52:
http://www.cpan.org/modules/by-module/Data/Data-Page-Pageset-%{V_data_page_pageset}.tar.gz
+Source53: http://www.cpan.org/authors/id/R/RO/ROBIN/Want-%{V_want}.tar.gz
+Source54:
http://www.cpan.org/modules/by-module/Class/Class-ErrorHandler-%{V_class_errorhandler}.tar.gz
+Source55:
http://www.cpan.org/modules/by-module/Class/Class-Singleton-%{V_class_singleton}.tar.gz
+Source56:
http://www.cpan.org/modules/by-module/UNIVERSAL/UNIVERSAL-require-%{V_universal_require}.tar.gz
+Source57:
http://www.cpan.org/modules/by-module/Class/Class-InsideOut-%{V_class_insideout}.tar.gz
+Source58:
http://www.cpan.org/modules/by-module/Class/Class-Trait-%{V_class_trait}.tar.gz
+Source59:
http://www.cpan.org/modules/by-module/Hash/Hash-Merge-%{V_hash_merge}.tar.gz
+Source60:
http://www.cpan.org/authors/id/R/RO/ROODE/Readonly-%{V_readonly}.tar.gz
+Source61:
http://www.cpan.org/modules/by-module/Sub/Sub-Uplevel-%{V_sub_uplevel}.tar.gz
+Source62:
http://www.cpan.org/modules/by-module/Sub/Sub-Exporter-%{V_sub_exporter}.tar.gz
+Source63:
http://www.cpan.org/modules/by-module/Class/Class-Base-%{V_class_base}.tar.gz
# build information
Prefix: %{l_prefix}
@@ -247,14 +229,6 @@
- UNIVERSAL::moniker (%{V_universal_moniker})
- UNIVERSAL::require (%{V_universal_require})
- fields::aliased (%{V_fields_aliased})
- - Regexp::Bind (%{V_regexp_bind})
- - Regexp::Common (%{V_regexp_common})
- - Regexp::Copy (%{V_regexp_copy})
- - Regexp::Extended (%{V_regexp_extended})
- - Regexp::Keep (%{V_regexp_keep})
- - Regexp::Parser (%{V_regexp_parser})
- - Regexp::Shellish (%{V_regexp_shellish})
- - Regexp::Assemble (%{V_regexp_assemble})
- Contize (%{V_contize})
- Memoize (%{V_memoize})
- Path::Class (%{V_path_class})
@@ -497,51 +471,6 @@
url = http://www.cpan.org/modules/by-module/fields/
regex = fields-aliased-(__VER__)\.tar\.gz
}
- prog perl-util:Regexp-Bind = {
- version = %{V_regexp_bind}
- url = http://www.cpan.org/modules/by-module/Regexp/
- regex = Regexp-Bind-(__VER__)\.tar\.gz
- }
- prog perl-util:Regexp-Common = {
- version = %{V_regexp_common}
- url = http://www.cpan.org/modules/by-module/Regexp/
- regex = Regexp-Common-(__VER__)\.tar\.gz
- }
- prog perl-util:Regexp-Copy = {
- version = %{V_regexp_copy}
- url = http://www.cpan.org/modules/by-module/Regexp/
- regex = Regexp-Copy-(__VER__)\.tar\.gz
- }
- prog perl-util:Regexp-Extended = {
- version = %{V_regexp_extended}
- url = http://www.cpan.org/modules/by-module/Regexp/
- regex = Regexp-Extended-(__VER__)\.tar\.gz
- }
- prog perl-util:Regexp-Keep = {
- version = %{V_regexp_keep}
- url = http://www.cpan.org/modules/by-module/Regexp/
- regex = Regexp-Keep-(__VER__)\.tar\.gz
- }
- prog perl-util:Regexp-Parser = {
- version = %{V_regexp_parser}
- url = http://www.cpan.org/modules/by-module/Regexp/
- regex = Regexp-Parser-(__VER__)\.tar\.gz
- }
- prog perl-util:Regexp-Shellish = {
- version = %{V_regexp_shellish}
- url = http://www.cpan.org/modules/by-module/Regexp/
- regex = Regexp-Shellish-(__VER__)\.tar\.gz
- }
- prog perl-util:Regexp-Assemble = {
- version = %{V_regexp_assemble}
- url = http://www.cpan.org/modules/by-module/Regexp/
- regex = Regexp-Assemble-(__VER__)\.tar\.gz
- }
- prog perl-util:Regexp-Wildcards = {
- version = %{V_regexp_wildcards}
- url = http://www.cpan.org/modules/by-module/Regexp/
- regex = Regexp-Wildcards-(__VER__)\.tar\.gz
- }
prog perl-util:Contize = {
version = %{V_contize}
url = http://www.cpan.org/authors/id/A/AW/AWWAIID/
@@ -703,15 +632,6 @@
%setup -q -T -D -a 61
%setup -q -T -D -a 62
%setup -q -T -D -a 63
- %setup -q -T -D -a 64
- %setup -q -T -D -a 65
- %setup -q -T -D -a 66
- %setup -q -T -D -a 67
- %setup -q -T -D -a 68
- %setup -q -T -D -a 69
- %setup -q -T -D -a 70
- %setup -q -T -D -a 71
- %setup -q -T -D -a 72
%build
@@ -782,15 +702,6 @@
%{l_prefix}/bin/perl-openpkg -d %{SOURCE61} configure build install
%{l_prefix}/bin/perl-openpkg -d %{SOURCE62} configure build install
%{l_prefix}/bin/perl-openpkg -d %{SOURCE63} configure build install
- %{l_prefix}/bin/perl-openpkg -d %{SOURCE64} configure build install
- %{l_prefix}/bin/perl-openpkg -d %{SOURCE65} configure build install
- %{l_prefix}/bin/perl-openpkg -d %{SOURCE66} configure build install
- %{l_prefix}/bin/perl-openpkg -d %{SOURCE67} configure build install
- %{l_prefix}/bin/perl-openpkg -d %{SOURCE68} configure build install
- %{l_prefix}/bin/perl-openpkg -d %{SOURCE69} configure build install
- %{l_prefix}/bin/perl-openpkg -d %{SOURCE70} configure build install
- %{l_prefix}/bin/perl-openpkg -d %{SOURCE71} configure build install
- %{l_prefix}/bin/perl-openpkg -d %{SOURCE72} configure build install
rm -f $RPM_BUILD_ROOT%{l_prefix}/bin/replace
rm -f $RPM_BUILD_ROOT%{l_prefix}/bin/prove
rm -f $RPM_BUILD_ROOT%{l_prefix}/man/man1/prove.1
@@ .
______________________________________________________________________
OpenPKG http://openpkg.org
CVS Repository Commit List [email protected]