.gear/rules | 2 + .../tags/3541da823e5efa9b97a0b1ee90c91cd6abb19932 | 13 +++++ .gear/tags/list | 1 + DelimMatch.pm | 9 +--- perl-Text-DelimMatch.spec | 47 ++++++++++++++++++++ 5 files changed, 64 insertions(+), 8 deletions(-) diff --git a/.gear/rules b/.gear/rules new file mode 100644 index 0000000..4325ae6 --- /dev/null +++ b/.gear/rules @@ -0,0 +1,2 @@ +tar: @version@:. name=DelimMatch-@version@ +diff: @version@:. . name=perl-Text-DelimMatch-@version@-@release@.patch diff --git a/.gear/tags/3541da823e5efa9b97a0b1ee90c91cd6abb19932 b/.gear/tags/3541da823e5efa9b97a0b1ee90c91cd6abb19932 new file mode 100644 index 0000000..af00d1a --- /dev/null +++ b/.gear/tags/3541da823e5efa9b97a0b1ee90c91cd6abb19932 @@ -0,0 +1,13 @@ +object 3f5bc78dec5aba0b28642f0172a52f7d427d0a23 +type commit +tag 1.06a +tagger Alexey Tourbin 1218257310 +0400 + +1.06a +-----BEGIN PGP SIGNATURE----- +Version: GnuPG v1.4.9 (GNU/Linux) + +iEYEABECAAYFAkidIZ4ACgkQfBKgtDjnu0aOJQCeJw+KTsqp12Bk0Lm0Cx7MqaTF +4i4Ani1OI41Jjo/jR8S1Mdq42xWUrROu +=8voN +-----END PGP SIGNATURE----- diff --git a/.gear/tags/list b/.gear/tags/list new file mode 100644 index 0000000..f4bcf39 --- /dev/null +++ b/.gear/tags/list @@ -0,0 +1 @@ +3541da823e5efa9b97a0b1ee90c91cd6abb19932 1.06a diff --git a/DelimMatch.pm b/DelimMatch.pm index 62914b2..172dc59 100644 --- a/DelimMatch.pm +++ b/DelimMatch.pm @@ -1,14 +1,7 @@ package Text::DelimMatch; use strict; -use vars qw($VERSION @ISA @EXPORT $case_sensitive); - -require 5.000; -require Exporter; -require AutoLoader; - -@ISA = qw(Exporter AutoLoader); -@EXPORT = qw(); +use vars qw($VERSION); $VERSION = '1.06'; sub new { diff --git a/perl-Text-DelimMatch.spec b/perl-Text-DelimMatch.spec new file mode 100644 index 0000000..b3dc36f --- /dev/null +++ b/perl-Text-DelimMatch.spec @@ -0,0 +1,47 @@ +%define dist DelimMatch +Name: perl-Text-DelimMatch +Version: 1.06a +Release: alt2 + +Summary: find regexp delimited strings with proper nesting +License: GPL or Artistic +Group: Development/Perl + +URL: %CPAN %dist +Source: %dist-%version.tar +Patch: %name-%version-%release.patch + +BuildArch: noarch + +# Automatically added by buildreq on Sat Aug 09 2008 +BuildRequires: perl-devel + +%description +These routines allow you to match delimited substrings in a buffer. +The delimiters can be specified with any regular expression and the start +and end delimiters need not be the same. If the delimited text is properly +nested, entire nested groups are returned. In addition, you may specify +quoting and escaping characters that contribute to the recognition of start +and end delimiters. + +%prep +%setup -q -n %dist-%version +%patch -p1 + +%build +%perl_vendor_build + +%install +%perl_vendor_install + +%files +%doc README +%dir %perl_vendor_privlib/Text +%perl_vendor_privlib/Text/DelimMatch.pm + +%changelog +* Sat Aug 09 2008 Alexey Tourbin 1.06a-alt2 +- noarch + +* Sat Aug 09 2008 Alexey Tourbin 1.06a-alt1 +- initial revision (for R)