]> git.pld-linux.org Git - packages/perl-Data-OptList.git/commitdiff
- initial, ver 0.101, rel 1, builds here
authorMaciej Pijanka <agaran@pld-linux.org>
Sun, 27 May 2007 00:25:57 +0000 (00:25 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    perl-Data-OptList.spec -> 1.1

perl-Data-OptList.spec [new file with mode: 0644]

diff --git a/perl-Data-OptList.spec b/perl-Data-OptList.spec
new file mode 100644 (file)
index 0000000..bf68c3f
--- /dev/null
@@ -0,0 +1,78 @@
+#
+# Conditional build:
+%bcond_without tests           # do not perform "make test"
+#
+%include       /usr/lib/rpm/macros.perl
+%define        pdir    Data
+%define        pnam    OptList
+Summary:       Data::OptList - parse and validate simple name/value option pairs
+#Summary(pl):  
+Name:          perl-Data-OptList
+Version:       0.101
+Release:       1
+# same as perl
+License:       GPL v1+ or Artistic
+Group:         Development/Languages/Perl
+Source0:       http://www.cpan.org/modules/by-module/%{pdir}/%{pdir}-%{pnam}-%{version}.tar.gz
+# Source0-md5: 6e9bb994a8716112a78c1306261f4164
+BuildRequires: perl-devel >= 1:5.8.0
+BuildRequires: rpm-perlprov >= 4.1-13
+%if %{with tests}
+BuildRequires: perl(Params::Util) >= 0.14
+BuildRequires: perl(Sub::Install) >= 0.92
+%endif
+BuildArch:     noarch
+BuildRoot:     %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+Hashes are great for storing named data, but if you want more than one entry
+for a name, you have to use a list of pairs.  Even then, this is really boring
+to write:
+
+  @values = (
+    foo => undef,
+    bar => undef,
+    baz => undef,
+    xyz => { ... },
+  );
+
+Just look at all those undefs!  Don't worry, we can get rid of those:
+
+  @values = (
+    map { $_ => undef } qw(foo bar baz),
+    xyz => { ... },
+  );
+
+Aaaauuugh!  We've saved a little typing, but now it requires thought to read,
+and thinking is even worse than typing.
+
+
+
+# %description -l pl
+# TODO
+
+%prep
+%setup -q -n %{pdir}-%{pnam}-%{version}
+
+%build
+%{__perl} Makefile.PL \
+       INSTALLDIRS=vendor
+%{__make}
+
+%{?with_tests:%{__make} test}
+
+%install
+rm -rf $RPM_BUILD_ROOT
+
+%{__make} install \
+       DESTDIR=$RPM_BUILD_ROOT
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%files
+%defattr(644,root,root,755)
+%doc Changes README
+%{perl_vendorlib}/Data/*.pm
+#%%{perl_vendorlib}/Data/OptList
+%{_mandir}/man3/*
This page took 0.188413 seconds and 4 git commands to generate.