[pamtester] Initial import of pamtester

Robert Scheck robert at fedoraproject.org
Wed Mar 21 13:11:14 UTC 2012


commit 007740c1be55fd452cdda3e97edd3da41a37a131
Author: Robert Scheck <robert at fedoraproject.org>
Date:   Wed Mar 21 14:11:04 2012 +0100

    Initial import of pamtester

 .gitignore     |    1 +
 pamtester.spec |   44 ++++++++++++++++++++++++++++++++++++++++++++
 sources        |    1 +
 3 files changed, 46 insertions(+), 0 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index e69de29..4094422 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/pamtester-0.1.2.tar.gz
diff --git a/pamtester.spec b/pamtester.spec
new file mode 100644
index 0000000..1a2c741
--- /dev/null
+++ b/pamtester.spec
@@ -0,0 +1,44 @@
+Summary:	Utility to test Pluggable Authentication Modules (PAM)
+Name:		pamtester
+Version:	0.1.2
+Release:	1%{?dist}
+License:	BSD
+Group:		Development/Tools
+URL:		http://pamtester.sourceforge.net/
+Source:		http://downloads.sourceforge.net/sourceforge/%{name}/%{name}-%{version}.tar.gz
+BuildRequires:	pam-devel
+BuildRoot:	%{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
+
+%description
+Pamtester is a tiny program to test the Pluggable Authentication Modules
+(PAM) facility, which is a de facto standard of unified authentication
+management mechanism in many Unixes and similar OSes including Solaris,
+HP-UX, *BSD, MacOSX and Linux. While specifically designed to help PAM
+module authors to test their modules, that might also be handy for system
+administrators interested in building a centralised authentication system
+using common standards such as NIS, SASL and LDAP.
+
+%prep
+%setup -q
+
+%build
+%configure
+make CFLAGS="$RPM_OPT_FLAGS" %{?_smp_mflags}
+
+%install
+rm -rf $RPM_BUILD_ROOT
+make DESTDIR=$RPM_BUILD_ROOT INSTALL='install -p' install
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%files
+%defattr(-,root,root,-)
+%doc AUTHORS ChangeLog LICENSE NEWS README
+%{_bindir}/%{name}
+%{_mandir}/man1/%{name}.1*
+
+%changelog
+* Mon Aug 15 2011 Robert Scheck <robert at fedoraproject.org> 0.1.2-1
+- Upgrade to 0.1.2
+- Initial spec file for Fedora and Red Hat Enterprise Linux
diff --git a/sources b/sources
index e69de29..0f9848e 100644
--- a/sources
+++ b/sources
@@ -0,0 +1 @@
+f441a6617cbc640ea02f3e22058c0461  pamtester-0.1.2.tar.gz


More information about the scm-commits mailing list