[python-flask-principal] Initial import

Richard Marko rmarko at fedoraproject.org
Thu Jul 11 11:38:30 UTC 2013


commit fac1a51cdf32ae74e4c1fea7f5fe73588deff22e
Author: Richard Marko <rmarko at fedoraproject.org>
Date:   Thu Jul 11 13:38:07 2013 +0200

    Initial import
    
    Signed-off-by: Richard Marko <rmarko at fedoraproject.org>

 .gitignore                  |    1 +
 python-flask-principal.spec |   49 +++++++++++++++++++++++++++++++++++++++++++
 sources                     |    1 +
 3 files changed, 51 insertions(+), 0 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index e69de29..80c7c7d 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/Flask-Principal-0.4.0.tar.gz
diff --git a/python-flask-principal.spec b/python-flask-principal.spec
new file mode 100644
index 0000000..fbf77bb
--- /dev/null
+++ b/python-flask-principal.spec
@@ -0,0 +1,49 @@
+%global pypi_name Flask-Principal
+Name:           python-flask-principal
+Version:        0.4.0
+Release:        3%{?dist}
+Summary:        Identity management for Flask applications
+
+Group:          Development/Languages
+License:        MIT
+URL:            https://pypi.python.org/pypi/%{pypi_name}
+Source0:        https://pypi.python.org/packages/source/F/%{pypi_name}/%{pypi_name}-%{version}.tar.gz
+
+BuildArch:      noarch
+
+BuildRequires:  python2-devel
+BuildRequires:  python-setuptools
+
+Requires:       python-flask
+Requires:       python-blinker
+
+%description
+Flask-Principal provides a very loose framework to tie in authentication
+and user information providers, often located in different parts of a web
+application.
+
+%prep
+%setup -q -n %{pypi_name}-%{version}
+rm -rf %{pypi_name}.egg-info
+
+%build
+%{__python} setup.py build
+
+%install
+%{__python} setup.py install --skip-build --root %{buildroot}
+
+%files
+%doc README.rst
+%{python_sitelib}/*
+
+%changelog
+* Sun Jul 07 2013 Richard Marko <rmarko at fedoraproject.org> - 0.4.0-3
+- Removed upstream egg
+
+* Thu Jul 04 2013 Richard Marko <rmarko at fedoraproject.org> - 0.4.0-2
+- Added python-setuptools to BuildRequires
+- Added python-blinker to Requires
+- Fixed Summary
+
+* Tue Jul 02 2013 Richard Marko <rmarko at fedoraproject.org> - 0.4.0-1
+- Initial packaging attempt
diff --git a/sources b/sources
index e69de29..cae18a0 100644
--- a/sources
+++ b/sources
@@ -0,0 +1 @@
+462d1345c9ddaddbec33a743e5821e2c  Flask-Principal-0.4.0.tar.gz


More information about the scm-commits mailing list