2.2-1
This commit is contained in:
parent
e8771a0316
commit
867c45a590
BIN
Apache-AuthTkt-2.1.tar.gz
(Stored with Git LFS)
BIN
Apache-AuthTkt-2.1.tar.gz
(Stored with Git LFS)
Binary file not shown.
BIN
Apache-AuthTkt-2.2.tar.gz
(Stored with Git LFS)
Normal file
BIN
Apache-AuthTkt-2.2.tar.gz
(Stored with Git LFS)
Normal file
Binary file not shown.
@ -1,24 +1,33 @@
|
|||||||
Name: perl-Apache-AuthTkt
|
Name: perl-Apache-AuthTkt
|
||||||
Version: 2.1
|
Version: 2.2
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: Module to generate authentication tickets for mod_auth_tkt apache module
|
Summary: Module to generate authentication tickets for mod_auth_tkt apache module
|
||||||
License: CHECK(GPL+ or Artistic)
|
License: Perl(GPL+ or Artistic)
|
||||||
Group: Development/Libraries
|
Group: Development/Libraries
|
||||||
URL: http://search.cpan.org/dist/Apache-AuthTkt/
|
URL: http://search.cpan.org/dist/Apache-AuthTkt/
|
||||||
Source0: http://www.cpan.org/authors/id/G/GA/GAVINC/Apache-AuthTkt-%{version}.tar.gz
|
Source0: http://localhost/cpan//authors/id/G/GA/GAVINC/Apache-AuthTkt-%{version}.tar.gz
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
BuildRequires: perl(Carp)
|
BuildRequires: perl(Carp)
|
||||||
BuildRequires: perl(ExtUtils::MakeMaker)
|
BuildRequires: perl(ExtUtils::MakeMaker)
|
||||||
BuildRequires: perl(ExtUtils::ParseXS)
|
BuildRequires: perl(ExtUtils::ParseXS)
|
||||||
BuildRequires: perl(ExtUtils::Manifest)
|
BuildRequires: perl(ExtUtils::Manifest)
|
||||||
BuildRequires: perl(Test::More)
|
BuildRequires: perl(Test::More)
|
||||||
BuildRequires: perl(Digest::MD5)
|
BuildRequires: perl(Digest::MD5)
|
||||||
BuildRequires: perl(Digest::SHA)
|
BuildRequires: perl(Digest::SHA)
|
||||||
Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
|
Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
|
||||||
|
|
||||||
%description
|
%description
|
||||||
CONSTRUCTOR
|
Apache::AuthTkt is a module for generating and validating authentication
|
||||||
|
tickets used with the 'mod_auth_tkt' apache module. Tickets are typically
|
||||||
|
generated by a login web page of some kind when a user has been authenticated.
|
||||||
|
The ticket contains a username/uid for the authenticated user, and often also
|
||||||
|
the IP address they authenticated from, a set of authorisation tokens, and any
|
||||||
|
other user data required. The ticket also includes an MD5 hash of all the
|
||||||
|
included user data plus a shared secret, so that tickets can be validated by
|
||||||
|
mod_auth_tkt without requiring access to the user repository.
|
||||||
|
|
||||||
|
See http://www.openfusion.com.au/labs/mod_auth_tkt for mod_auth_tkt itself.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n Apache-AuthTkt-%{version}
|
%setup -q -n Apache-AuthTkt-%{version}
|
||||||
@ -28,20 +37,20 @@ CONSTRUCTOR
|
|||||||
make %{?_smp_mflags}
|
make %{?_smp_mflags}
|
||||||
|
|
||||||
%install
|
%install
|
||||||
rm -rf $RPM_BUILD_ROOT
|
rm -rf %{buildroot}
|
||||||
|
|
||||||
make pure_install PERL_INSTALL_ROOT=$RPM_BUILD_ROOT
|
make pure_install PERL_INSTALL_ROOT=%{buildroot}
|
||||||
|
|
||||||
find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} \;
|
find %{buildroot} -type f -name .packlist -exec rm -f {} \;
|
||||||
find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null \;
|
find %{buildroot} -depth -type d -exec rmdir {} 2>/dev/null \;
|
||||||
|
|
||||||
%{_fixperms} $RPM_BUILD_ROOT/*
|
%{_fixperms} %{buildroot}/*
|
||||||
|
|
||||||
%check
|
%check
|
||||||
make test
|
make test
|
||||||
|
|
||||||
%clean
|
%clean
|
||||||
rm -rf $RPM_BUILD_ROOT
|
rm -rf %{buildroot}
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%defattr(-,root,root,-)
|
%defattr(-,root,root,-)
|
||||||
@ -50,9 +59,8 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
%{_mandir}/man3/*
|
%{_mandir}/man3/*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
* Fri Jul 14 2023 BogusDateBot
|
* Mon Dec 15 2014 Gavin Carr <gavin@openfusion.com.au> 2.2-1
|
||||||
- Eliminated rpmbuild "bogus date" warnings due to inconsistent weekday,
|
- Update to version 2.2.
|
||||||
by assuming the date is correct and changing the weekday.
|
|
||||||
|
|
||||||
* Tue Mar 15 2016 Daniel Berteaud <daniel@firewall-services.com> - 2.1-1
|
* Mon Mar 29 2010 Gavin Carr <gavin@openfusion.com.au> 2.1-1
|
||||||
- First build using cpanspec
|
- Specfile autogenerated by cpanspec 1.77.
|
||||||
|
Loading…
Reference in New Issue
Block a user