summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCoprDistGit <infra@openeuler.org>2023-03-09 16:42:49 +0000
committerCoprDistGit <infra@openeuler.org>2023-03-09 16:42:49 +0000
commit0d539f7cefdb487138911c03c7d59c765736e3b5 (patch)
treedf0a330c7307730892fce3e2d834393446887ac1
parent21d8c4355e777bdf95d184ea08b46a0d95518fa6 (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..7b4910d
--- /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
+* Thu Mar 09 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