head 1.6; access; symbols; locks; strict; comment @# @; 1.6 date 2008.12.28.09.26.42; author rse; state Exp; branches; next 1.5; commitid OfBJnG7LyJXwndwt; 1.5 date 2008.08.01.18.01.21; author rse; state Exp; branches; next 1.4; commitid MJfWuiGgeK8117dt; 1.4 date 2008.02.26.18.43.52; author rse; state Exp; branches; next 1.3; commitid CmDwYjHr8rruiWSs; 1.3 date 2008.02.19.18.40.04; author rse; state Exp; branches; next 1.2; commitid RvbO5t4RCmI8v2Ss; 1.2 date 2008.02.13.19.05.39; author rse; state Exp; branches; next 1.1; commitid gv0u9yiBuUHRPgRs; 1.1 date 2007.12.19.19.05.15; author rse; state Exp; branches; next ; commitid JvyMalpIKt5kD4Ks; desc @@ 1.6 log @modifying package: perl-regex-5.10.0 20080906 -> 20081228 @ text @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 2008-12-28 10:19:14 +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-Lua-0.06/Makefile.PL --- re-engine-Lua-0.06/Makefile.PL.orig 2008-12-07 12:29:50 +0100 +++ re-engine-Lua-0.06/Makefile.PL 2008-12-28 10:22:23 +0100 @@@@ -8,7 +8,5 @@@@ ABSTRACT_FROM => 'Lua.pm', LICENSE => 'MIT', PREREQ_PM => { - 'Test::Exception' => 0, - 'Test::Warn' => 0, }, ); 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 2008-12-28 10:19:14 +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.04/Makefile.PL --- re-engine-TRE-0.04/Makefile.PL.orig 2008-02-18 12:11:31 +0100 +++ re-engine-TRE-0.04/Makefile.PL 2008-12-28 10:19:14 +0100 @@@@ -8,6 +8,6 @@@@ ABSTRACT_FROM => 'TRE.pm', LICENSE => 'perl', DIR => [ 'tre' ], - INC => '-Itre', - LDDLFLAGS => '-shared tre/*.o', + INC => `pkg-config tre --cflags`, + LDDLFLAGS => [ `pkg-config tre --libs` ] ); @ 1.5 log @add Lua regex support @ text @d3 1 a3 1 +++ Regexp-Keep-0.02/Keep.xs 2008-08-01 19:58:19 +0200 d10 11 a20 17 Index: re-engine-Lua-0.05/Makefile.PL --- re-engine-Lua-0.05/Makefile.PL.orig 2008-08-01 19:58:20 +0200 +++ re-engine-Lua-0.05/Makefile.PL 2008-08-01 19:59:12 +0200 @@@@ -12,12 +12,10 @@@@ # t/ build_requires 'Config' => 0; build_requires 'XSLoader' => 0; -build_requires 'Test::More' => 0; -build_requires 'Test::Warn' => 0; -build_requires 'Test::Exception' => 0; #tests 't/*.t t/*/*.t'; tests 't/*.t'; auto_install; WriteAll; + d23 1 a23 1 +++ re-engine-PCRE-0.15/Makefile.PL 2008-08-01 19:58:19 +0200 d34 1 a34 1 +++ re-engine-TRE-0.04/Makefile.PL 2008-08-01 19:58:19 +0200 @ 1.4 log @modifying package: perl-regex-5.10.0 20080219 -> 20080226 @ text @d3 1 a3 1 +++ Regexp-Keep-0.02/Keep.xs 2008-02-13 19:30:29 +0100 d10 17 d29 1 a29 1 +++ re-engine-PCRE-0.15/Makefile.PL 2008-02-13 19:30:29 +0100 d39 4 a42 3 --- re-engine-TRE-0.04/Makefile.PL.orig 2008-02-12 02:06:56 +0100 +++ re-engine-TRE-0.04/Makefile.PL 2008-02-13 19:39:42 +0100 @@@@ -9,6 +9,6 @@@@ a43 1 LIBS => [ '-lpcre' ], @ 1.3 log @modifying package: perl-regex-5.10.0 20080213 -> 20080219 @ text @d21 3 a23 3 Index: re-engine-TRE-0.03/Makefile.PL --- re-engine-TRE-0.03/Makefile.PL.orig 2008-02-12 02:06:56 +0100 +++ re-engine-TRE-0.03/Makefile.PL 2008-02-13 19:39:42 +0100 @ 1.2 log @modifying package: perl-regex-5.10.0 20080101 -> 20080213 @ text @d21 3 a23 3 Index: re-engine-TRE-0.02/Makefile.PL --- re-engine-TRE-0.02/Makefile.PL.orig 2008-02-12 02:06:56 +0100 +++ re-engine-TRE-0.02/Makefile.PL 2008-02-13 19:39:42 +0100 @ 1.1 log @factor out regex stuff from perl-util to perl-regex @ text @d3 1 a3 1 +++ Regexp-Keep-0.02/Keep.xs 2007-12-19 17:35:18 +0100 d12 1 a12 1 +++ re-engine-PCRE-0.15/Makefile.PL 2007-12-19 17:39:36 +0100 d21 12 a32 13 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'; @