Accepting request 676924 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/676924 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-rsa?expand=0&rev=15
This commit is contained in:
commit
0fa9da2604
@ -1,3 +1,23 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Sat Feb 16 13:51:23 UTC 2019 - John Vandenberg <jayvdb@gmail.com>
|
||||||
|
|
||||||
|
- Update to v 4.0.0
|
||||||
|
* Removed deprecated modules:
|
||||||
|
+ rsa.varblock
|
||||||
|
+ rsa.bigfile
|
||||||
|
+ rsa._version133
|
||||||
|
+ rsa._version200
|
||||||
|
* Removed CLI commands that use the VARBLOCK/bigfile format.
|
||||||
|
* Ensured that PublicKey.save_pkcs1() and PrivateKey.save_pkcs1() always return bytes.
|
||||||
|
* Dropped support for Python 2.6 and 3.3.
|
||||||
|
* Dropped support for Psyco.
|
||||||
|
* Miller-Rabin iterations determined by bitsize of key.
|
||||||
|
* Added function `rsa.find_signature_hash()` to return the name of the
|
||||||
|
hashing algorithm used to sign a message. `rsa.verify()` now also
|
||||||
|
returns that name, instead of always returning `True`.
|
||||||
|
* Add support for SHA-224 for PKCS1 signatures.
|
||||||
|
* Transitioned from `requirements.txt` to Pipenv for package management.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Dec 4 12:53:58 UTC 2018 - Matej Cepl <mcepl@suse.com>
|
Tue Dec 4 12:53:58 UTC 2018 - Matej Cepl <mcepl@suse.com>
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package python-rsa
|
# spec file for package python-rsa
|
||||||
#
|
#
|
||||||
# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -19,13 +19,14 @@
|
|||||||
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
||||||
%bcond_without tests
|
%bcond_without tests
|
||||||
Name: python-rsa
|
Name: python-rsa
|
||||||
Version: 3.4.2
|
Version: 4.0
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Pure-Python RSA Implementation
|
Summary: Pure-Python RSA Implementation
|
||||||
License: Apache-2.0
|
License: Apache-2.0
|
||||||
Group: Development/Languages/Python
|
Group: Development/Languages/Python
|
||||||
URL: http://stuvel.eu/rsa
|
URL: http://stuvel.eu/rsa
|
||||||
Source: https://files.pythonhosted.org/packages/source/r/rsa/rsa-%{version}.tar.gz
|
Source: https://files.pythonhosted.org/packages/source/r/rsa/rsa-%{version}.tar.gz
|
||||||
|
BuildRequires: %{python_module mock}
|
||||||
BuildRequires: %{python_module pyasn1 >= 0.1.3}
|
BuildRequires: %{python_module pyasn1 >= 0.1.3}
|
||||||
BuildRequires: %{python_module setuptools}
|
BuildRequires: %{python_module setuptools}
|
||||||
BuildRequires: fdupes
|
BuildRequires: fdupes
|
||||||
@ -57,15 +58,13 @@ PKCS#1 version 1.5.
|
|||||||
|
|
||||||
%python_clone -a %{buildroot}%{_bindir}/pyrsa-priv2pub
|
%python_clone -a %{buildroot}%{_bindir}/pyrsa-priv2pub
|
||||||
%python_clone -a %{buildroot}%{_bindir}/pyrsa-decrypt
|
%python_clone -a %{buildroot}%{_bindir}/pyrsa-decrypt
|
||||||
%python_clone -a %{buildroot}%{_bindir}/pyrsa-decrypt-bigfile
|
|
||||||
%python_clone -a %{buildroot}%{_bindir}/pyrsa-encrypt
|
%python_clone -a %{buildroot}%{_bindir}/pyrsa-encrypt
|
||||||
%python_clone -a %{buildroot}%{_bindir}/pyrsa-encrypt-bigfile
|
|
||||||
%python_clone -a %{buildroot}%{_bindir}/pyrsa-keygen
|
%python_clone -a %{buildroot}%{_bindir}/pyrsa-keygen
|
||||||
%python_clone -a %{buildroot}%{_bindir}/pyrsa-sign
|
%python_clone -a %{buildroot}%{_bindir}/pyrsa-sign
|
||||||
%python_clone -a %{buildroot}%{_bindir}/pyrsa-verify
|
%python_clone -a %{buildroot}%{_bindir}/pyrsa-verify
|
||||||
|
|
||||||
%post
|
%post
|
||||||
%{python_install_alternative pyrsa-priv2pub pyrsa-decrypt pyrsa-decrypt-bigfile pyrsa-encrypt pyrsa-encrypt-bigfile pyrsa-keygen pyrsa-sign pyrsa-verify}
|
%{python_install_alternative pyrsa-priv2pub pyrsa-decrypt pyrsa-encrypt pyrsa-keygen pyrsa-sign pyrsa-verify}
|
||||||
|
|
||||||
%preun
|
%preun
|
||||||
%python_uninstall_alternative pyrsa-priv2pub
|
%python_uninstall_alternative pyrsa-priv2pub
|
||||||
@ -79,9 +78,7 @@ PKCS#1 version 1.5.
|
|||||||
%license LICENSE
|
%license LICENSE
|
||||||
%doc CHANGELOG.txt README.md
|
%doc CHANGELOG.txt README.md
|
||||||
%python_alternative %{_bindir}/pyrsa-decrypt
|
%python_alternative %{_bindir}/pyrsa-decrypt
|
||||||
%python_alternative %{_bindir}/pyrsa-decrypt-bigfile
|
|
||||||
%python_alternative %{_bindir}/pyrsa-encrypt
|
%python_alternative %{_bindir}/pyrsa-encrypt
|
||||||
%python_alternative %{_bindir}/pyrsa-encrypt-bigfile
|
|
||||||
%python_alternative %{_bindir}/pyrsa-keygen
|
%python_alternative %{_bindir}/pyrsa-keygen
|
||||||
%python_alternative %{_bindir}/pyrsa-priv2pub
|
%python_alternative %{_bindir}/pyrsa-priv2pub
|
||||||
%python_alternative %{_bindir}/pyrsa-sign
|
%python_alternative %{_bindir}/pyrsa-sign
|
||||||
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:25df4e10c263fb88b5ace923dd84bf9aa7f5019687b5e55382ffcdb8bede9db5
|
|
||||||
size 40956
|
|
3
rsa-4.0.tar.gz
Normal file
3
rsa-4.0.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:1a836406405730121ae9823e19c6e806c62bbad73f890574fff50efa4122c487
|
||||||
|
size 37385
|
Loading…
Reference in New Issue
Block a user