[python-passlib] initial import

Matt Domsch mdomsch at fedoraproject.org
Wed Oct 19 14:24:55 UTC 2011


commit b54c974fd93f841b67cac597014145b72028912d
Author: Matt Domsch <Matt_Domsch at dell.com>
Date:   Wed Oct 19 09:24:50 2011 -0500

    initial import

 .gitignore          |    1 +
 python-passlib.spec |   45 +++++++++++++++++++++++++++++++++++++++++++++
 sources             |    1 +
 3 files changed, 47 insertions(+), 0 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index e69de29..b3c0144 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/passlib-1.5.3.tar.gz
diff --git a/python-passlib.spec b/python-passlib.spec
new file mode 100644
index 0000000..f967fee
--- /dev/null
+++ b/python-passlib.spec
@@ -0,0 +1,45 @@
+Name:		python-passlib
+Version:	1.5.3
+Release:	1%{?dist}
+Summary:	Comprehensive password hashing framework supporting over 20 schemes
+
+License:	BSD and Beerware and Copyright only
+URL:		http://passlib.googlecode.com
+Source0:	http://passlib.googlecode.com/files/passlib-1.5.3.tar.gz
+
+BuildArch:	noarch
+BuildRequires:	python2-devel
+BuildRequires:	python-setuptools
+# docs generation requires python-cloud-sptheme, which isn't packaged yet.
+# so we won't generate the docs yet.
+#BuildRequires:	python-sphinx >= 1.0
+#BuildRequires:	python-cloud-sptheme
+
+%description
+Passlib is a password hashing library for Python 2 & 3, which provides
+cross-platform implementations of over 20 password hashing algorithms,
+as well as a framework for managing existing password hashes. It's
+designed to be useful for a wide range of tasks, from verifying a hash
+found in /etc/shadow, to providing full-strength password hashing for
+multi-user application.
+
+
+%prep
+%setup -q -n passlib-%{version}
+
+
+%build
+%{__python} setup.py build
+
+
+%install
+%{__python} setup.py install -O1 --skip-build --root %{buildroot}
+
+%files
+%doc LICENSE README
+%{python_sitelib}/*
+
+
+%changelog
+* Mon Oct 17 2011 Matt Domsch <Matt_Domsch at dell.com> - 1.5.3-1
+- initial release for Fedora
diff --git a/sources b/sources
index e69de29..5bb2838 100644
--- a/sources
+++ b/sources
@@ -0,0 +1 @@
+ef578ac4d2e39a40c38044e4efe88105  passlib-1.5.3.tar.gz


More information about the scm-commits mailing list