summaryrefslogtreecommitdiff
path: root/python-django-rest-framework-social-oauth2.spec
diff options
context:
space:
mode:
authorCoprDistGit <infra@openeuler.org>2023-04-11 10:24:59 +0000
committerCoprDistGit <infra@openeuler.org>2023-04-11 10:24:59 +0000
commitbfd2b425d467031753dd298e02b1de4437be5b9c (patch)
treec44f7e6fa1bb43a1f7670898b522b6c50614ea81 /python-django-rest-framework-social-oauth2.spec
parentf413e8eb691fbd0d1f49cd8028966e6c02b4e1c1 (diff)
automatic import of python-django-rest-framework-social-oauth2
Diffstat (limited to 'python-django-rest-framework-social-oauth2.spec')
-rw-r--r--python-django-rest-framework-social-oauth2.spec84
1 files changed, 84 insertions, 0 deletions
diff --git a/python-django-rest-framework-social-oauth2.spec b/python-django-rest-framework-social-oauth2.spec
new file mode 100644
index 0000000..5f6dada
--- /dev/null
+++ b/python-django-rest-framework-social-oauth2.spec
@@ -0,0 +1,84 @@
+%global _empty_manifest_terminate_build 0
+Name: python-django-rest-framework-social-oauth2
+Version: 1.1.0
+Release: 1
+Summary: python-social-auth and oauth2 support for django-rest-framework
+License: MIT
+URL: https://github.com/PhilipGarnero/django-rest-framework-social-oauth2
+Source0: https://mirrors.nju.edu.cn/pypi/web/packages/32/c6/63a2e0fe057eeb18f6adedee961d573bdf0dd1455df644403875ffc38bdf/django-rest-framework-social-oauth2-1.1.0.tar.gz
+BuildArch: noarch
+
+
+%description
+This module provides a python-social-auth and oauth2 support for django-rest-framework.
+The first aim of this package is to help setting up social auth for your rest api. It also helps setting up your Oauth2 provider.
+This package is relying on `python-social-auth <http://python-social-auth.readthedocs.io>`_ and `django-oauth-toolkit <https://django-oauth-toolkit.readthedocs.org>`_.
+You should probably read their docs if you were to go further than what is done here.
+If you have some hard time understanding Oauth2 you can read a simple explanation `here <https://aaronparecki.com/articles/2012/07/29/1/oauth2-simplified>`_.
+
+%package -n python3-django-rest-framework-social-oauth2
+Summary: python-social-auth and oauth2 support for django-rest-framework
+Provides: python-django-rest-framework-social-oauth2
+BuildRequires: python3-devel
+BuildRequires: python3-setuptools
+BuildRequires: python3-pip
+%description -n python3-django-rest-framework-social-oauth2
+This module provides a python-social-auth and oauth2 support for django-rest-framework.
+The first aim of this package is to help setting up social auth for your rest api. It also helps setting up your Oauth2 provider.
+This package is relying on `python-social-auth <http://python-social-auth.readthedocs.io>`_ and `django-oauth-toolkit <https://django-oauth-toolkit.readthedocs.org>`_.
+You should probably read their docs if you were to go further than what is done here.
+If you have some hard time understanding Oauth2 you can read a simple explanation `here <https://aaronparecki.com/articles/2012/07/29/1/oauth2-simplified>`_.
+
+%package help
+Summary: Development documents and examples for django-rest-framework-social-oauth2
+Provides: python3-django-rest-framework-social-oauth2-doc
+%description help
+This module provides a python-social-auth and oauth2 support for django-rest-framework.
+The first aim of this package is to help setting up social auth for your rest api. It also helps setting up your Oauth2 provider.
+This package is relying on `python-social-auth <http://python-social-auth.readthedocs.io>`_ and `django-oauth-toolkit <https://django-oauth-toolkit.readthedocs.org>`_.
+You should probably read their docs if you were to go further than what is done here.
+If you have some hard time understanding Oauth2 you can read a simple explanation `here <https://aaronparecki.com/articles/2012/07/29/1/oauth2-simplified>`_.
+
+%prep
+%autosetup -n django-rest-framework-social-oauth2-1.1.0
+
+%build
+%py3_build
+
+%install
+%py3_install
+install -d -m755 %{buildroot}/%{_pkgdocdir}
+if [ -d doc ]; then cp -arf doc %{buildroot}/%{_pkgdocdir}; fi
+if [ -d docs ]; then cp -arf docs %{buildroot}/%{_pkgdocdir}; fi
+if [ -d example ]; then cp -arf example %{buildroot}/%{_pkgdocdir}; fi
+if [ -d examples ]; then cp -arf examples %{buildroot}/%{_pkgdocdir}; fi
+pushd %{buildroot}
+if [ -d usr/lib ]; then
+ find usr/lib -type f -printf "/%h/%f\n" >> filelist.lst
+fi
+if [ -d usr/lib64 ]; then
+ find usr/lib64 -type f -printf "/%h/%f\n" >> filelist.lst
+fi
+if [ -d usr/bin ]; then
+ find usr/bin -type f -printf "/%h/%f\n" >> filelist.lst
+fi
+if [ -d usr/sbin ]; then
+ find usr/sbin -type f -printf "/%h/%f\n" >> filelist.lst
+fi
+touch doclist.lst
+if [ -d usr/share/man ]; then
+ find usr/share/man -type f -printf "/%h/%f.gz\n" >> doclist.lst
+fi
+popd
+mv %{buildroot}/filelist.lst .
+mv %{buildroot}/doclist.lst .
+
+%files -n python3-django-rest-framework-social-oauth2 -f filelist.lst
+%dir %{python3_sitelib}/*
+
+%files help -f doclist.lst
+%{_docdir}/*
+
+%changelog
+* Tue Apr 11 2023 Python_Bot <Python_Bot@openeuler.org> - 1.1.0-1
+- Package Spec generated