summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCoprDistGit <infra@openeuler.org>2023-04-11 17:01:23 +0000
committerCoprDistGit <infra@openeuler.org>2023-04-11 17:01:23 +0000
commit971353933ac1c947e4bfb31254f5cece982870e6 (patch)
tree05bd85f41d73c9143a68e88ad473cc8815c0b136
parentd02fcdf9c9fb17781723366a9b66a11892330813 (diff)
automatic import of python-secure-cookie
-rw-r--r--.gitignore1
-rw-r--r--python-secure-cookie.spec82
-rw-r--r--sources1
3 files changed, 84 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index e69de29..66096c2 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/secure-cookie-0.2.0.tar.gz
diff --git a/python-secure-cookie.spec b/python-secure-cookie.spec
new file mode 100644
index 0000000..899cf9a
--- /dev/null
+++ b/python-secure-cookie.spec
@@ -0,0 +1,82 @@
+%global _empty_manifest_terminate_build 0
+Name: python-secure-cookie
+Version: 0.2.0
+Release: 1
+Summary: Secure cookie and session interface for WSGI applications.
+License: BSD-3-Clause
+URL: https://secure-cookie.readthedocs.io/
+Source0: https://mirrors.nju.edu.cn/pypi/web/packages/38/e0/a70f7bcbc5c2af45415df0a7d4137db32cef633e65886461232f7b59bccb/secure-cookie-0.2.0.tar.gz
+BuildArch: noarch
+
+Requires: python3-Werkzeug
+
+%description
+Provides interfaces for secure cookies and sessions in WSGI
+applications. Secure cookies are cryptographically signed (but not
+encrypted) to prevent tampering. Sessions are data associated with a
+given user across requests and responses.
+
+%package -n python3-secure-cookie
+Summary: Secure cookie and session interface for WSGI applications.
+Provides: python-secure-cookie
+BuildRequires: python3-devel
+BuildRequires: python3-setuptools
+BuildRequires: python3-pip
+%description -n python3-secure-cookie
+Provides interfaces for secure cookies and sessions in WSGI
+applications. Secure cookies are cryptographically signed (but not
+encrypted) to prevent tampering. Sessions are data associated with a
+given user across requests and responses.
+
+%package help
+Summary: Development documents and examples for secure-cookie
+Provides: python3-secure-cookie-doc
+%description help
+Provides interfaces for secure cookies and sessions in WSGI
+applications. Secure cookies are cryptographically signed (but not
+encrypted) to prevent tampering. Sessions are data associated with a
+given user across requests and responses.
+
+%prep
+%autosetup -n secure-cookie-0.2.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-secure-cookie -f filelist.lst
+%dir %{python3_sitelib}/*
+
+%files help -f doclist.lst
+%{_docdir}/*
+
+%changelog
+* Tue Apr 11 2023 Python_Bot <Python_Bot@openeuler.org> - 0.2.0-1
+- Package Spec generated
diff --git a/sources b/sources
new file mode 100644
index 0000000..a0c40b7
--- /dev/null
+++ b/sources
@@ -0,0 +1 @@
+9c193553c498038e18eb270ae3af9600 secure-cookie-0.2.0.tar.gz