Compare commits
10 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
a98371a946 | ||
|
|
e713b9edb6 | ||
|
|
75cb9b4566 | ||
|
|
5457d355ef | ||
|
|
fc6bb0f363 | ||
|
|
c2007492dd | ||
|
|
ef3528a4e0 | ||
|
|
a5b480a2e2 | ||
|
|
e4599f45cf | ||
|
|
ec02bc7895 |
3 changed files with 15 additions and 26 deletions
4
.gitignore
vendored
4
.gitignore
vendored
|
|
@ -9,3 +9,7 @@
|
|||
/cramjam-61564e7761e38e5ec55e7939ccd6a276c2c55d11-filtered.tar.gz
|
||||
/cramjam-cdc7d307d0f592f89b3319a7037fd875a5371ef3-filtered.tar.gz
|
||||
/cramjam-2.10.0rc1.tar.gz
|
||||
/cramjam-2.10.0.tar.gz
|
||||
/cramjam-2.11.0rc2.tar.gz
|
||||
/cramjam-2.11.0rc3.tar.gz
|
||||
/cramjam-2.11.0.tar.gz
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@
|
|||
#global snapdate YYYYMMDD
|
||||
|
||||
Name: python-cramjam
|
||||
Version: 2.10.0~rc1
|
||||
Version: 2.11.0
|
||||
Release: %autorelease
|
||||
Summary: Thin Python bindings to de/compression algorithms in Rust
|
||||
|
||||
|
|
@ -34,7 +34,7 @@ Source1: get_source
|
|||
%endif
|
||||
|
||||
BuildRequires: python3-devel
|
||||
BuildRequires: tomcli
|
||||
BuildRequires: tomcli >= 0.8.0
|
||||
BuildRequires: cargo-rpm-macros >= 24
|
||||
|
||||
%if %{with tests}
|
||||
|
|
@ -42,7 +42,6 @@ BuildRequires: cargo-rpm-macros >= 24
|
|||
# dev extra in pyproject.toml.
|
||||
BuildRequires: %{py3_dist numpy}
|
||||
BuildRequires: %{py3_dist pytest}
|
||||
BuildRequires: %{py3_dist pytest-xdist}
|
||||
BuildRequires: %{py3_dist hypothesis}
|
||||
%endif
|
||||
|
||||
|
|
@ -56,7 +55,6 @@ BuildRequires: %{py3_dist hypothesis}
|
|||
Summary: %{summary}
|
||||
# 0BSD OR MIT OR Apache-2.0
|
||||
# Apache-2.0
|
||||
# Apache-2.0 OR MIT
|
||||
# BSD-3-Clause
|
||||
# BSD-3-Clause AND MIT
|
||||
# MIT
|
||||
|
|
@ -91,9 +89,7 @@ tomcli set Cargo.toml del 'features.wasm32-compat'
|
|||
# extension with the default features, and we only want maturin to check
|
||||
# dependencies for those features.
|
||||
blosc2_isal_features="$(
|
||||
# Once EPEL10 has tomcli>=0.8.0, we can use (without sed):
|
||||
# tomcli get Cargo.toml features -F newline-keys
|
||||
tomcli get Cargo.toml features -F toml | sed -r 's/ = .*//' |
|
||||
tomcli get Cargo.toml features -F newline-keys |
|
||||
grep -E 'blosc2|ideflate|igzip|isal|izlib' |
|
||||
tr '\n' ' '
|
||||
)"
|
||||
|
|
@ -105,9 +101,7 @@ done
|
|||
# Downstream-only: remove all the static-linking features, and make the
|
||||
# dynamic-linking ones default, as we do in rust-libcramjam.
|
||||
static_features="$(
|
||||
# Once EPEL10 has tomcli>=0.8.0, we can use (without sed):
|
||||
# tomcli get Cargo.toml features -F newline-keys
|
||||
tomcli get Cargo.toml features -F toml | sed -r 's/ = .*//' |
|
||||
tomcli get Cargo.toml features -F newline-keys |
|
||||
grep -E '.-static$' |
|
||||
tr '\n' ' '
|
||||
)"
|
||||
|
|
@ -131,7 +125,6 @@ done
|
|||
|
||||
|
||||
%build
|
||||
export RUSTFLAGS='%{build_rustflags}'
|
||||
%cargo_license_summary
|
||||
%{cargo_license} > LICENSES.dependencies
|
||||
%pyproject_wheel
|
||||
|
|
@ -139,30 +132,22 @@ export RUSTFLAGS='%{build_rustflags}'
|
|||
|
||||
%install
|
||||
%pyproject_install
|
||||
%pyproject_save_files cramjam
|
||||
%pyproject_save_files -l cramjam
|
||||
|
||||
|
||||
%check
|
||||
%pyproject_check_import
|
||||
%if %{with tests}
|
||||
%if %{undefined el10}
|
||||
# Test failures in test_variants_decompress_into with recent hypothesis
|
||||
# versions: https://github.com/milesgranger/cramjam/issues/201
|
||||
#
|
||||
# It is hard to be really sure what is going on here. The failures are
|
||||
# concerning, and might (or might not) reflect a serious problem. Nevertheless,
|
||||
# since the problem appears to be linked to newer hypothesis versions, there’s
|
||||
# not reason to believe that the package has *new* problems. It *might* have
|
||||
# newly *revealed* problems. This merits further investigation.
|
||||
k="${k-}${k+ and }not test_variants_decompress_into"
|
||||
%endif
|
||||
# Regression with miniz_oxide>0.8.5
|
||||
# https://github.com/milesgranger/cramjam/issues/211
|
||||
# Failed: DID NOT RAISE <class 'cramjam.DecompressionError'>
|
||||
k="${k-}${k+ and }not test_variants_raise_exception[deflate]"
|
||||
|
||||
%pytest -k "${k-}" --ignore=benchmarks/test_bench.py -v -n auto
|
||||
%pytest -k "${k-}" --ignore=benchmarks/test_bench.py -v
|
||||
%endif
|
||||
|
||||
|
||||
%files -n python3-cramjam -f %{pyproject_files}
|
||||
%license LICENSE LICENSES.dependencies
|
||||
%doc README.md
|
||||
|
||||
|
||||
|
|
|
|||
2
sources
2
sources
|
|
@ -1 +1 @@
|
|||
SHA512 (cramjam-2.10.0rc1.tar.gz) = b1aa5481d0c4d0c44389f20bc2933d8b6979636dfaf2aca1ef83abb462134f2ab421993a5730471b58b49e55614100bb8279916ed68f4a7477453b82407a7c0a
|
||||
SHA512 (cramjam-2.11.0.tar.gz) = d92446c0c0ef885f3544783caa1f179fd50b6a6290ada011495b7385411527f75a2544c0c8cdc36910c83c879dbac7dd130f4fe8f3dc3b885a84a45286cb3695
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue