From 55b8bdb5b257512fa40e6724ec011ef3e60d2508 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Mon, 2 Mar 2026 07:37:36 +0100 Subject: update to 1.0.1 --- valkey-bloom.spec | 25 +++++++++++++++++-------- 1 file changed, 17 insertions(+), 8 deletions(-) diff --git a/valkey-bloom.spec b/valkey-bloom.spec index b8eacff..d7d8f39 100644 --- a/valkey-bloom.spec +++ b/valkey-bloom.spec @@ -1,6 +1,6 @@ # remirepo/fedora spec file for valkey-bloom # -# SPDX-FileCopyrightText: Copyright 2025 Remi Collet +# SPDX-FileCopyrightText: Copyright 2025-2026 Remi Collet # SPDX-License-Identifier: CECILL-2.1 # http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt # @@ -17,13 +17,13 @@ %global tag %{version} Name: valkey-bloom -Version: 1.0.0 +Version: 1.0.1 %forgemeta Release: 1%{?dist} Summary: Probabilistic data structures # this module is BSD-3-Clause -# rust lilbraries are Apache-2.0, MIT, BSD-2-CLAUSE -License: BSD-3-Clause AND BSD-2-CLAUSE AND Apache-2.0 AND MIT +# rust libraries are Apache-2.0, MIT, BSD-2-CLAUSE +License: BSD-3-Clause AND BSD-2-CLAUSE AND Apache-2.0 AND MIT AND ISC URL: %{forgeurl} Source0: %{forgesource} # get rust dependencies @@ -37,7 +37,7 @@ BuildRequires: rust >= 1.82 BuildRequires: clang-devel Requires: valkey(modules_abi)%{?_isa} = %{valkey_modules_abi} -Requires: valkey >= 8.0 +Requires: valkey >= %{valkey_version} Supplements: valkey @@ -64,9 +64,6 @@ EOF %cargo_prep -v $PWD/mycargo cat .cargo/config.toml -: Required rust version -grep -h rust-version mycargo/*/Cargo.toml Cargo.toml | sort -u | tail -n 8 - : Bundled projects Licenses for proj in mycargo/*; do for lic in $proj/LICENSE*; do @@ -74,6 +71,15 @@ for proj in mycargo/*; do done done +: Licenses list +cargo tree \ + --workspace --offline --edges no-build,no-dev,no-proc-macro \ + --no-dedupe --target all --prefix none --format "{l}: {p}" \ + | sed -e "s: ($(pwd)[^)]*)::g" -e "s: / :/:g" -e "s:/: OR :g" | sort -u + +: Required rust version +grep -h rust-version mycargo/*/Cargo.toml Cargo.toml | sort -u | tail -n 8 + %build %cargo_build @@ -92,5 +98,8 @@ install -Dpm640 %{cfgname} %{buildroot}%{valkey_modules_cfg}/%{cfgna %changelog +* Tue Feb 24 2026 Remi Collet - 1.0.1-1 +- update to 1.0.1 + * Tue Aug 5 2025 Remi Collet - 1.0.0-1 - initial package -- cgit