summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCoprDistGit <infra@openeuler.org>2023-05-05 12:34:43 +0000
committerCoprDistGit <infra@openeuler.org>2023-05-05 12:34:43 +0000
commit061b5a786e5da372e6bd501925cb0c53a083ac3d (patch)
tree20bbdbcfc3560e3db4182ef0826239bf5236f5a7
parente1e0b4df85a1109adf0618f499a4493d68c7fb75 (diff)
automatic import of python-django-basic-auth-ip-whitelistopeneuler20.03
-rw-r--r--.gitignore1
-rw-r--r--python-django-basic-auth-ip-whitelist.spec79
-rw-r--r--sources1
3 files changed, 81 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index e69de29..f6f76c9 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/django-basic-auth-ip-whitelist-0.5.tar.gz
diff --git a/python-django-basic-auth-ip-whitelist.spec b/python-django-basic-auth-ip-whitelist.spec
new file mode 100644
index 0000000..4c86e24
--- /dev/null
+++ b/python-django-basic-auth-ip-whitelist.spec
@@ -0,0 +1,79 @@
+%global _empty_manifest_terminate_build 0
+Name: python-django-basic-auth-ip-whitelist
+Version: 0.5
+Release: 1
+Summary: Hide your Django site behind basic authentication mechanism with IP whitelisting support.
+License: BSD 2-Clause License
+URL: https://github.com/tm-kn/django-basic-auth-ip-whitelist
+Source0: https://mirrors.nju.edu.cn/pypi/web/packages/12/08/545d6d1214dc732b96eb15f95f7ef8a540e7867c2dbb6f6c560dbb861517/django-basic-auth-ip-whitelist-0.5.tar.gz
+BuildArch: noarch
+
+Requires: python3-Django
+Requires: python3-isort
+Requires: python3-flake8
+Requires: python3-black
+
+%description
+This simple package ships middleware that lets you to set basic authentication
+and IP whitelisting via Django settings.
+
+%package -n python3-django-basic-auth-ip-whitelist
+Summary: Hide your Django site behind basic authentication mechanism with IP whitelisting support.
+Provides: python-django-basic-auth-ip-whitelist
+BuildRequires: python3-devel
+BuildRequires: python3-setuptools
+BuildRequires: python3-pip
+%description -n python3-django-basic-auth-ip-whitelist
+This simple package ships middleware that lets you to set basic authentication
+and IP whitelisting via Django settings.
+
+%package help
+Summary: Development documents and examples for django-basic-auth-ip-whitelist
+Provides: python3-django-basic-auth-ip-whitelist-doc
+%description help
+This simple package ships middleware that lets you to set basic authentication
+and IP whitelisting via Django settings.
+
+%prep
+%autosetup -n django-basic-auth-ip-whitelist-0.5
+
+%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-basic-auth-ip-whitelist -f filelist.lst
+%dir %{python3_sitelib}/*
+
+%files help -f doclist.lst
+%{_docdir}/*
+
+%changelog
+* Fri May 05 2023 Python_Bot <Python_Bot@openeuler.org> - 0.5-1
+- Package Spec generated
diff --git a/sources b/sources
new file mode 100644
index 0000000..8b56990
--- /dev/null
+++ b/sources
@@ -0,0 +1 @@
+0ad69deadb15ab2df9081da010ba8ff0 django-basic-auth-ip-whitelist-0.5.tar.gz