From 53b0ba91141e8c3dafe85056c18c05505bd9739c Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Wed, 13 Jun 2012 18:43:31 +0200 Subject: reorg repo --- Makefile | 4 ++++ mod_auth_token.spec | 53 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 57 insertions(+) create mode 100644 Makefile create mode 100644 mod_auth_token.spec diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..1e65467 --- /dev/null +++ b/Makefile @@ -0,0 +1,4 @@ +SRCDIR := $(shell pwd) +NAME := $(shell basename $(SRCDIR)) +include ../common/Makefile + diff --git a/mod_auth_token.spec b/mod_auth_token.spec new file mode 100644 index 0000000..f365e15 --- /dev/null +++ b/mod_auth_token.spec @@ -0,0 +1,53 @@ +Name: mod_auth_token +Version: 1.0.5 +Release: 2%{?dist} +Summary: Token based URI access module for Apache + +Group: System Environment/Daemons +License: ASL 2.0 +URL: http://code.google.com/p/mod-auth-token/ +Source0: http://mod-auth-token.googlecode.com/files/%{name}-%{version}.tar.gz + +BuildRequires: httpd-devel automake libtool + +%description +mod_auth_token allow you to generate URIS for a determined time window, +you can also limit them by IP. This is very useful to handle file +downloads, generated URIS can't be hot-linked (after it expires), also +it allows you to protect very large files that can't be piped trough a +script languages due to memory limitation. + +%prep +%setup -q +rm -f configure +autoreconf -fi +automake +./configure + +%build +make %{?_smp_mflags} + +%install +mkdir -p $RPM_BUILD_ROOT%{_libdir}/httpd/modules +apxs -c mod_auth_token.c +install -m 755 .libs/%{name}.so $RPM_BUILD_ROOT%{_libdir}/httpd/modules +# Drop empty NEWS-file. +rm -f $RPM_BUILD_ROOT/usr/share/doc/mod_auth_token-1.0.5/NEWS + +%files +%{_libdir}/httpd/modules/*.so +%doc README LICENSE COPYING AUTHORS ChangeLog + +%changelog +* Sat Jun 02 2012 Remi Collet - 1.0.5-2 +- rebuild for http 2.4, for remi repo + +* Tue May 29 2012 Jan-Frode Myklebust - 1.0.5-2 +Apply package review patch from Lukáš Zapletal. + +* Thu May 24 2012 Jan-Frode Myklebust - 1.0.5-1 +Don't use full path for apxs, since it's moved around in later fedoras. + +* Thu May 24 2012 Jan-Frode Myklebust - 1.0.5 +Initial build. + -- cgit