[perl-Text-ParseWords] Import

Petr Pisar ppisar at fedoraproject.org
Wed Mar 20 10:35:31 UTC 2013


commit 5fd0441784f18a97bdd720bef42a82660c6fdab0
Author: Petr Písař <ppisar at redhat.com>
Date:   Wed Mar 20 11:35:17 2013 +0100

    Import

 .gitignore                |    1 +
 perl-Text-ParseWords.spec |   61 +++++++++++++++++++++++++++++++++++++++++++++
 sources                   |    1 +
 3 files changed, 63 insertions(+), 0 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index e69de29..3f96d0e 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/Text-ParseWords-3.29.tar.gz
diff --git a/perl-Text-ParseWords.spec b/perl-Text-ParseWords.spec
new file mode 100644
index 0000000..13b3519
--- /dev/null
+++ b/perl-Text-ParseWords.spec
@@ -0,0 +1,61 @@
+Name:           perl-Text-ParseWords
+Version:        3.29
+Release:        1%{?dist}
+Summary:        Parse text into an array of tokens or array of arrays
+License:        GPL+ or Artistic
+Group:          Development/Libraries
+URL:            http://search.cpan.org/dist/Text-ParseWords/
+Source0:        http://www.cpan.org/authors/id/C/CH/CHORNY/Text-ParseWords-%{version}.tar.gz
+BuildArch:      noarch
+BuildRequires:  perl
+BuildRequires:  perl(ExtUtils::MakeMaker)
+# Run-time:
+BuildRequires:  perl(Carp)
+BuildRequires:  perl(Exporter)
+BuildRequires:  perl(strict)
+# Tests:
+# Config not used
+BuildRequires:  perl(Scalar::Util)
+BuildRequires:  perl(Test::More)
+BuildRequires:  perl(warnings)
+Requires:       perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
+Requires:       perl(Carp)
+
+%description
+The nested_quotewords() and quotewords() functions accept a delimiter (which
+can be a regular expression) and a list of lines and then breaks those lines
+up into a list of words ignoring delimiters that appear inside quotes.
+quotewords() returns all of the tokens in a single long list, while
+nested_quotewords() returns a list of token lists corresponding to the
+elements of @lines. parse_line() does tokenizing on a single string. The
+quotewords() functions simply call &parse_line(), so if you're only splitting
+one line you can call parse_line() directly and save a function call.
+
+%prep
+%setup -q -n Text-ParseWords-%{version}
+for F in CHANGES README; do
+    tr -d "\r" < "$F" > "${F}.unix"
+    touch -r "$F" "${F}.unix"
+    mv "${F}.unix" "$F"
+done
+
+%build
+perl Makefile.PL INSTALLDIRS=vendor
+make %{?_smp_mflags}
+
+%install
+make pure_install DESTDIR=$RPM_BUILD_ROOT
+find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} \;
+%{_fixperms} $RPM_BUILD_ROOT/*
+
+%check
+make test
+
+%files
+%doc CHANGES README
+%{perl_vendorlib}/*
+%{_mandir}/man3/*
+
+%changelog
+* Mon Mar 18 2013 Petr Pisar <ppisar at redhat.com> 3.29-1
+- Specfile autogenerated by cpanspec 1.78.
diff --git a/sources b/sources
index e69de29..24677b3 100644
--- a/sources
+++ b/sources
@@ -0,0 +1 @@
+a3d5e6349529a66c56367fc94e99d6f9  Text-ParseWords-3.29.tar.gz


More information about the scm-commits mailing list