[perl-Apache-Session-NoSQL] Initial import (perl-Apache-Session-NoSQL-0.1-2)

Paul Howarth pghmcfc at fedoraproject.org
Sun Feb 1 17:54:26 UTC 2015


commit 4fd33d1a43ede1fece9906dffa89ed00ed87e59d
Author: Paul Howarth <paul at city-fan.org>
Date:   Sun Feb 1 17:53:25 2015 +0000

    Initial import (perl-Apache-Session-NoSQL-0.1-2)
    
    NoSQL implementation of Apache::Session. Sessions are stored in NoSQL
    bases, either Redis or Cassandra.

 .gitignore                     |    1 +
 perl-Apache-Session-NoSQL.spec |  128 ++++++++++++++++++++++++++++++++++++++++
 sources                        |    1 +
 3 files changed, 130 insertions(+), 0 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index e69de29..d7be0c6 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/Apache-Session-NoSQL-[0-9.]*.tar.gz
diff --git a/perl-Apache-Session-NoSQL.spec b/perl-Apache-Session-NoSQL.spec
new file mode 100644
index 0000000..b40cf0e
--- /dev/null
+++ b/perl-Apache-Session-NoSQL.spec
@@ -0,0 +1,128 @@
+# Support drivers based on what's available
+%global have_cassandra 0
+%global have_redis     ( "%{?rhel}" != "5" )
+
+Name:		perl-Apache-Session-NoSQL
+Version:	0.1
+Release:	2%{?dist}
+Summary:	NoSQL implementation of Apache::Session
+Group:		Development/Libraries
+License:	GPL+ or Artistic
+URL:		http://search.cpan.org/dist/Apache-Session-NoSQL/
+Source0:	http://search.cpan.org/CPAN/authors/id/G/GU/GUIMARD/Apache-Session-NoSQL-%{version}.tar.gz
+BuildRoot:	%{_tmppath}/%{name}-%{version}-%{release}-root-%(id -nu)
+BuildArch:	noarch
+# Module Build
+BuildRequires:	perl
+BuildRequires:	perl(ExtUtils::MakeMaker)
+# Module Runtime
+BuildRequires:	perl(Apache::Session)
+BuildRequires:	perl(Apache::Session::Generate::MD5)
+BuildRequires:	perl(Apache::Session::Lock::Null)
+BuildRequires:	perl(Apache::Session::Serialize::Base64)
+BuildRequires:	perl(base)
+BuildRequires:	perl(strict)
+BuildRequires:	perl(vars)
+# Test Suite
+BuildRequires:	perl(Test::More)
+# Runtime
+Requires:	perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
+Requires:	perl(Apache::Session::NoSQL)-Driver = %{version}-%{release}
+
+%description
+NoSQL implementation of Apache::Session. Sessions are stored in NoSQL
+bases, either Redis or Cassandra.
+
+%if %{have_cassandra}
+%package -n perl-Apache-Session-Cassandra
+Summary:	Cassandra driver for Apache::Session::NoSQL
+Group:		Development/Libraries
+BuildRequires:	perl(Net::Cassandra)
+Requires:	perl-Apache-Session-NoSQL = %{version}-%{release}
+Provides:	perl(Apache::Session::NoSQL)-Driver = %{version}-%{release}
+
+%description -n perl-Apache-Session-Cassandra
+%{summary}.
+%endif
+
+%if %{have_redis}
+%package -n perl-Apache-Session-Redis
+Summary:	Redis driver for Apache::Session::NoSQL
+Group:		Development/Libraries
+BuildRequires:	perl(Redis)
+Requires:	perl-Apache-Session-NoSQL = %{version}-%{release}
+Provides:	perl(Apache::Session::NoSQL)-Driver = %{version}-%{release}
+
+%description -n perl-Apache-Session-Redis
+%{summary}.
+%endif
+
+%prep
+%setup -q -n Apache-Session-NoSQL-%{version}
+
+%if ! %{have_cassandra} && ! %{have_redis}
+%{error:At least one of Cassandra or Redis must be available}
+exit 1
+%endif
+
+%build
+perl Makefile.PL INSTALLDIRS=vendor
+make %{?_smp_mflags}
+
+%install
+rm -rf %{buildroot}
+make pure_install DESTDIR=%{buildroot}
+find %{buildroot} -name .packlist -exec rm -f {} \;
+%{_fixperms} %{buildroot}
+
+%check
+make test
+
+%clean
+rm -rf %{buildroot}
+
+%files
+%doc Changes README examples/
+%dir %{perl_vendorlib}/Apache/
+%dir %{perl_vendorlib}/Apache/Session/
+%dir %{perl_vendorlib}/Apache/Session/Store/
+%dir %{perl_vendorlib}/Apache/Session/Store/NoSQL/
+%{perl_vendorlib}/Apache/Session/NoSQL.pm
+%{perl_vendorlib}/Apache/Session/Store/NoSQL.pm
+%{_mandir}/man3/Apache::Session::NoSQL.3*
+%{_mandir}/man3/Apache::Session::Store::NoSQL.3*
+
+%if %{have_cassandra}
+%files -n perl-Apache-Session-Cassandra
+%{perl_vendorlib}/Apache/Session/Cassandra.pm
+%{perl_vendorlib}/Apache/Session/Store/NoSQL/Cassandra.pm
+%{_mandir}/man3/Apache::Session::Cassandra.3*
+%{_mandir}/man3/Apache::Session::Store::NoSQL::Cassandra.3*
+%else
+%exclude %{perl_vendorlib}/Apache/Session/Cassandra.pm
+%exclude %{perl_vendorlib}/Apache/Session/Store/NoSQL/Cassandra.pm
+%exclude %{_mandir}/man3/Apache::Session::Cassandra.3*
+%exclude %{_mandir}/man3/Apache::Session::Store::NoSQL::Cassandra.3*
+%endif
+
+%if %{have_redis}
+%files -n perl-Apache-Session-Redis
+%{perl_vendorlib}/Apache/Session/Redis.pm
+%{perl_vendorlib}/Apache/Session/Store/NoSQL/Redis.pm
+%{_mandir}/man3/Apache::Session::Redis.3*
+%{_mandir}/man3/Apache::Session::Store::NoSQL::Redis.3*
+%else
+%exclude %{perl_vendorlib}/Apache/Session/Redis.pm
+%exclude %{perl_vendorlib}/Apache/Session/Store/NoSQL/Redis.pm
+%exclude %{_mandir}/man3/Apache::Session::Redis.3*
+%exclude %{_mandir}/man3/Apache::Session::Store::NoSQL::Redis.3*
+%endif
+
+%changelog
+* Thu Jan 29 2015 Paul Howarth <paul at city-fan.org> - 0.1-2
+- Incorporate review feedback (#1186725)
+  - Ship Changes, README and examples files
+  - BR: perl(base)
+
+* Wed Jan 28 2015 Paul Howarth <paul at city-fan.org> - 0.1-1
+- Initial RPM version
diff --git a/sources b/sources
index e69de29..4db1ef0 100644
--- a/sources
+++ b/sources
@@ -0,0 +1 @@
+57b877dde5f96c6a7934fe785ec036d1  Apache-Session-NoSQL-0.1.tar.gz


More information about the scm-commits mailing list