15
0
forked from pool/python-bcrypt

Accepting request 1032937 from home:dgarcia:branches:devel:languages:python

- Update to 4.0.1:
  * We now build PyPy manylinux wheels.
  * Fixed a bug where passing an invalid salt to checkpw could result in a
    pyo3_runtime.PanicException. It now correctly raises a ValueError.
- 4.0.0:
  * bcrypt is now implemented in Rust. Users building from source will need to
    have a Rust compiler available. Nothing will change for users downloading
    wheels.
  * We no longer ship manylinux2010 wheels. Users should upgrade to the latest
    pip to ensure this doesn’t cause issues downloading wheels on their
    platform. We now ship manylinux_2_28 wheels for users on new enough
    platforms.
  * NUL bytes are now allowed in inputs.

OBS-URL: https://build.opensuse.org/request/show/1032937
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-bcrypt?expand=0&rev=32
This commit is contained in:
2022-11-02 17:41:25 +00:00
committed by Git OBS Bridge
parent 7708650de4
commit 38905dc70d
7 changed files with 60 additions and 11 deletions

View File

@@ -17,26 +17,31 @@
#
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
%define skip_python2 1
Name: python-bcrypt
Version: 3.2.2
Version: 4.0.1
Release: 0
Summary: BSD type 2a and 2b password hashing
License: Apache-2.0
Group: Development/Languages/Python
URL: https://github.com/pyca/bcrypt/
Source: https://files.pythonhosted.org/packages/source/b/bcrypt/bcrypt-%{version}.tar.gz
Source0: https://files.pythonhosted.org/packages/source/b/bcrypt/bcrypt-%{version}.tar.gz
Source1: vendor.tar.gz
Source2: cargo_config
BuildRequires: %{python_module cffi >= 1.1}
BuildRequires: %{python_module devel}
BuildRequires: %{python_module pip}
BuildRequires: %{python_module pytest >= 3.2.1}
BuildRequires: %{python_module setuptools-rust}
BuildRequires: %{python_module wheel}
# setuptools 40.8.0 is required by upstream only for a pip issue that doesn't
# affect us, so we relax the requirement to build in SLE/Leap 15.2 with 40.5.0
BuildRequires: %{python_module setuptools >= 40.5.0}
BuildRequires: cargo-packaging
BuildRequires: fdupes
BuildRequires: pkgconfig
BuildRequires: python-rpm-macros
BuildRequires: pkgconfig(libffi)
ExclusiveArch: %{rust_tier1_arches}
%requires_eq python-cffi
Provides: python-py-bcrypt = %{version}
Obsoletes: python-py-bcrypt < %{version}
@@ -48,14 +53,17 @@ This Python module supports creating (and verifying) password hashes
using the BSD-originating hashing methods known as "2a" and "2b".
%prep
%setup -q -n bcrypt-%{version}
%autosetup -p1 -a1 -n bcrypt-%{version}
mkdir .cargo
cp %{SOURCE2} .cargo/config
mv Cargo.lock src/_bcrypt
%build
export CFLAGS="%{optflags} -fno-strict-aliasing"
%python_build
%pyproject_wheel
%install
%python_install
%pyproject_install
%python_expand %fdupes %{buildroot}/%{$python_sitearch}
%check
@@ -65,6 +73,6 @@ export CFLAGS="%{optflags} -fno-strict-aliasing"
%license LICENSE
%doc README.rst
%{python_sitearch}/bcrypt
%{python_sitearch}/bcrypt-%{version}-py*.egg-info
%{python_sitearch}/bcrypt-%{version}*-info
%changelog