[python-django-socialregistration] Initial commit

Stephen Gallagher sgallagh at fedoraproject.org
Thu Jul 5 15:00:18 UTC 2012


commit 1257dbc5f4dffdf6025d596c25849aa48c80312b
Author: Stephen Gallagher <sgallagh at redhat.com>
Date:   Thu Jul 5 10:59:46 2012 -0400

    Initial commit

 .gitignore                            |    1 +
 python-django-socialregistration.spec |   75 +++++++++++++++++++++++++++++++++
 sources                               |    1 +
 3 files changed, 77 insertions(+), 0 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index e69de29..8fbfa61 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/django-socialregistration-0.5.5.tar.gz
diff --git a/python-django-socialregistration.spec b/python-django-socialregistration.spec
new file mode 100644
index 0000000..dcfba46
--- /dev/null
+++ b/python-django-socialregistration.spec
@@ -0,0 +1,75 @@
+Name: python-django-socialregistration
+Version: 0.5.5
+Release: 3%{?dist}
+Summary: Django application enabling registration through a variety of APIs
+
+Group: Development/Languages
+License: MIT
+URL: https://github.com/flashingpumpkin/django-socialregistration
+Source0: http://pypi.python.org/packages/source/d/%{name}/django-socialregistration-%{version}.tar.gz
+BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX)
+
+BuildArch: noarch
+
+BuildRequires: python-devel
+BuildRequires: python-oauth2
+BuildRequires: python-openid
+BuildRequires: python-setuptools
+
+%if 0%{?fedora} > 17
+Requires: python-django
+%else
+Requires: Django
+%endif
+Requires: python-oauth2
+Requires: python-openid
+
+%description
+Django Social Registration enables developers to add alternative registration
+methods based on third party sites.
+
+Supported methods currently are:
+
+    OpenID
+    OAuth
+    Facebook Connect
+
+
+%prep
+%setup -q -n django-socialregistration-%{version}
+rm -rf django_socialregistration-%{version}*.egg-info
+
+
+%build
+%{__python} setup.py build
+
+%install
+rm -rf $RPM_BUILD_ROOT
+%{__python} setup.py install -O1 --skip-build --root $RPM_BUILD_ROOT
+
+%files
+%doc AUTHORS LICENSE README.rst
+%{python_sitelib}/socialregistration/
+%{python_sitelib}/django_socialregistration-%{version}*.egg-info
+
+%changelog
+* Tue Jul 03 2012 Stephen Gallagher <sgallagh at redhat.com> - 0.5.5-3
+- Own the socialregistration directory
+- New upstream release 0.5.5
+
+* Wed Apr 25 2012 Stephen Gallagher <sgallagh at redhat.com> - 0.5.4-2
+- Changes from package review
+- Remove %%clean section
+- Remove %%defattr from %%files
+- Guarantee egg-info rebuild
+
+* Wed Apr 25 2012 Stephen Gallagher <sgallagh at redhat.com> - 0.5.4-1
+- Require python-django on F18 and later
+- Update to latest upstream release 0.5.4.
+- Do not package egg files
+
+* Thu Sep 01 2011 Stephen Gallagher <sgallagh at redhat.com> - 0.4.5-1
+- Initial RPM release
+- Django Social Registration enables developers to add alternative
+  registration methods based on third party sites.
+
diff --git a/sources b/sources
index e69de29..79496d7 100644
--- a/sources
+++ b/sources
@@ -0,0 +1 @@
+7ffbbd31b3af93accde5dd8e72dc8da8  django-socialregistration-0.5.5.tar.gz


More information about the scm-commits mailing list