[perl-Data-Pond] initial import (rhbz#806646)

Iain Arnell iarnell at fedoraproject.org
Fri Mar 30 15:41:12 UTC 2012


commit 18d6a0da0a4e7865979099ed5399a025a70c31bb
Author: Iain Arnell <iarnell at gmail.com>
Date:   Fri Mar 30 09:39:32 2012 -0600

    initial import (rhbz#806646)

 .gitignore          |    1 +
 perl-Data-Pond.spec |   61 +++++++++++++++++++++++++++++++++++++++++++++++++++
 sources             |    1 +
 3 files changed, 63 insertions(+), 0 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index e69de29..359eec7 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/Data-Pond-0.004.tar.gz
diff --git a/perl-Data-Pond.spec b/perl-Data-Pond.spec
new file mode 100644
index 0000000..85f0487
--- /dev/null
+++ b/perl-Data-Pond.spec
@@ -0,0 +1,61 @@
+Name:           perl-Data-Pond
+Version:        0.004
+Release:        1%{?dist}
+Summary:        Perl-based open notation for data
+License:        GPL+ or Artistic
+Group:          Development/Libraries
+URL:            http://search.cpan.org/dist/Data-Pond/
+Source0:        http://www.cpan.org/authors/id/Z/ZE/ZEFRAM/Data-Pond-%{version}.tar.gz
+BuildRequires:  perl >= 0:5.008
+BuildRequires:  perl(Carp)
+BuildRequires:  perl(Exporter)
+BuildRequires:  perl(Module::Build)
+BuildRequires:  perl(Params::Classify)
+BuildRequires:  perl(parent)
+BuildRequires:  perl(strict)
+BuildRequires:  perl(Test::More)
+BuildRequires:  perl(Test::Pod)
+BuildRequires:  perl(Test::Pod::Coverage)
+BuildRequires:  perl(warnings)
+BuildRequires:  perl(XSLoader)
+Requires:       perl(Carp)
+Requires:       perl(Exporter)
+Requires:       perl(Params::Classify)
+Requires:       perl(XSLoader)
+Requires:       perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
+
+%{?perl_default_filter}
+
+%description
+This module is concerned with representing data structures in a textual
+notation known as "Pond" (Perl-based open notation for data). The notation
+is a strict subset of Perl expression syntax, but is intended to have language-
+independent use. It is similar in spirit to JSON, which is based on
+JavaScript, but Pond represents fewer data types directly.
+
+%prep
+%setup -q -n Data-Pond-%{version}
+
+%build
+%{__perl} Build.PL installdirs=vendor optimize="%{optimize}"
+./Build
+
+%install
+./Build install destdir=%{buildroot} create_packlist=0
+find %{buildroot} -type f -name '*.bs' -size 0 -exec rm -f {} \;
+find %{buildroot} -depth -type d -exec rmdir {} 2>/dev/null \;
+
+%{_fixperms} %{buildroot}/*
+
+%check
+./Build test
+
+%files
+%doc Changes README
+%{perl_vendorarch}/auto/*
+%{perl_vendorarch}/Data*
+%{_mandir}/man3/*
+
+%changelog
+* Sun Mar 25 2012 Iain Arnell <iarnell at gmail.com> 0.004-1
+- Specfile autogenerated by cpanspec 1.79.
diff --git a/sources b/sources
index e69de29..ebeb6f7 100644
--- a/sources
+++ b/sources
@@ -0,0 +1 @@
+c295e60d95e1cd1d72e617541e9c326f  Data-Pond-0.004.tar.gz


More information about the scm-commits mailing list