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

16
_service Normal file
View File

@@ -0,0 +1,16 @@
<services>
<service mode="disabled" name="obs_scm">
<param name="url">https://github.com/pyca/bcrypt/</param>
<param name="versionformat">@PARENT_TAG@~@TAG_OFFSET@</param>
<param name="scm">git</param>
<param name="revision">4.0.1</param>
</service>
<service name="cargo_vendor" mode="disabled">
<param name="srcdir">bcrypt/src/_bcrypt</param>
<param name="compression">gz</param>
<param name="update">true</param>
</service>
<service name="cargo_audit" mode="disabled">
<param name="srcdir">bcrypt/src/_bcrypt</param>
</service>
</services>