diff --git a/python-jose-3.3.0.tar.gz b/python-jose-3.3.0.tar.gz new file mode 100644 index 0000000000000000000000000000000000000000..f9179deb3b1c31f86a7da1ca9012535c0066b349 Binary files /dev/null and b/python-jose-3.3.0.tar.gz differ diff --git a/python-jose.spec b/python-jose.spec new file mode 100644 index 0000000000000000000000000000000000000000..2de8af34367f817d69c3e8473e1b70fc9d07e948 --- /dev/null +++ b/python-jose.spec @@ -0,0 +1,108 @@ +%global _empty_manifest_terminate_build 0 +Name: python-jose +Version: 3.3.0 +Release: 1 +Summary: An implementation of the JOSE draft +License: MIT License (MIT) +URL: https://github.com/Demonware/jose +Source0: https://files.pythonhosted.org/packages/e4/19/b2c86504116dc5f0635d29f802da858404d77d930a25633d2e86a64a35b3/python-jose-3.3.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-pytest-runner +%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 %{name}-%{version} + +%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 +* Tue Jul 12 2022 wangqiang - 3.3.0-1 +- Type: update +- ID: NA +- SUG: NA +- DESC: Initial Package