summaryrefslogtreecommitdiff
path: root/python-jose.spec
diff options
context:
space:
mode:
Diffstat (limited to 'python-jose.spec')
-rw-r--r--python-jose.spec105
1 files changed, 105 insertions, 0 deletions
diff --git a/python-jose.spec b/python-jose.spec
new file mode 100644
index 0000000..9bfd764
--- /dev/null
+++ b/python-jose.spec
@@ -0,0 +1,105 @@
+%global _empty_manifest_terminate_build 0
+Name: python-jose
+Version: 1.0.0
+Release: 1
+Summary: An implementation of the JOSE draft
+License: UNKNOWN
+URL: https://github.com/Demonware/jose
+Source0: https://mirrors.nju.edu.cn/pypi/web/packages/01/3d/832caa69cd0d3be2d608d8290be2221072669aa88e87690837f6b31c480f/jose-1.0.0.tar.gz
+BuildArch: noarch
+
+
+%description
+JOSE is a framework intended to provide a method to securely transfer
+claims (such as authorization information) between parties. The JOSE framework
+provides a collection of specifications to serve this purpose. A JSON Web
+Token (JWT) contains claims that can be used to allow a system to apply access
+control to resources it owns.
+JWTs can be represented as either JSON Web Signature (JWS) or a JSON Web
+Encryption (JWE) objects. Claims within a JWS can be read as they are simply
+base64-encoded (but carry with them a signature for authentication). Claims
+in a JWE on the other hand, are encrypted and as such, are entirely opaque
+to clients using them as their means of authentication and authorization.
+This library implements JWS and JWEs along with a subset of the
+encryption / authentication algorithms recommended by the JOSE framework.
+
+%package -n python3-jose
+Summary: An implementation of the JOSE draft
+Provides: python-jose
+BuildRequires: python3-devel
+BuildRequires: python3-setuptools
+BuildRequires: python3-pip
+%description -n python3-jose
+JOSE is a framework intended to provide a method to securely transfer
+claims (such as authorization information) between parties. The JOSE framework
+provides a collection of specifications to serve this purpose. A JSON Web
+Token (JWT) contains claims that can be used to allow a system to apply access
+control to resources it owns.
+JWTs can be represented as either JSON Web Signature (JWS) or a JSON Web
+Encryption (JWE) objects. Claims within a JWS can be read as they are simply
+base64-encoded (but carry with them a signature for authentication). Claims
+in a JWE on the other hand, are encrypted and as such, are entirely opaque
+to clients using them as their means of authentication and authorization.
+This library implements JWS and JWEs along with a subset of the
+encryption / authentication algorithms recommended by the JOSE framework.
+
+%package help
+Summary: Development documents and examples for jose
+Provides: python3-jose-doc
+%description help
+JOSE is a framework intended to provide a method to securely transfer
+claims (such as authorization information) between parties. The JOSE framework
+provides a collection of specifications to serve this purpose. A JSON Web
+Token (JWT) contains claims that can be used to allow a system to apply access
+control to resources it owns.
+JWTs can be represented as either JSON Web Signature (JWS) or a JSON Web
+Encryption (JWE) objects. Claims within a JWS can be read as they are simply
+base64-encoded (but carry with them a signature for authentication). Claims
+in a JWE on the other hand, are encrypted and as such, are entirely opaque
+to clients using them as their means of authentication and authorization.
+This library implements JWS and JWEs along with a subset of the
+encryption / authentication algorithms recommended by the JOSE framework.
+
+%prep
+%autosetup -n jose-1.0.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-jose -f filelist.lst
+%dir %{python3_sitelib}/*
+
+%files help -f doclist.lst
+%{_docdir}/*
+
+%changelog
+* Thu Mar 09 2023 Python_Bot <Python_Bot@openeuler.org> - 1.0.0-1
+- Package Spec generated