public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
* [rpms/rust-sequoia-wot] epel10: Update to version 0.11.0; Fixes RHBZ#2265677
@ 2026-06-15 12:50 Fabio Valentini
0 siblings, 0 replies; only message in thread
From: Fabio Valentini @ 2026-06-15 12:50 UTC (permalink / raw)
To: git-commits
A new commit has been pushed.
Repo : rpms/rust-sequoia-wot
Branch : epel10
Commit : 809c4abc9fb8b3818a0ac723a04cb3df36791d32
Author : Fabio Valentini <decathorpe@gmail.com>
Date : 2024-03-19T16:10:57+01:00
Stats : +40/-8 in 6 file(s)
URL : https://src.fedoraproject.org/rpms/rust-sequoia-wot/c/809c4abc9fb8b3818a0ac723a04cb3df36791d32?branch=epel10
Log:
Update to version 0.11.0; Fixes RHBZ#2265677
---
diff --git a/.gitignore b/.gitignore
index 9959450..5aacb6f 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,2 +1,3 @@
/sequoia-wot-0.5.0.crate
/sequoia-wot-0.9.0.crate
+/sequoia-wot-0.11.0.crate
diff --git a/rust-sequoia-wot.spec b/rust-sequoia-wot.spec
index 52f877c..c96d99f 100644
--- a/rust-sequoia-wot.spec
+++ b/rust-sequoia-wot.spec
@@ -1,10 +1,10 @@
-# Generated by rust2rpm 25
+# Generated by rust2rpm 26
%bcond_without check
%global crate sequoia-wot
Name: rust-sequoia-wot
-Version: 0.9.0
+Version: 0.11.0
Release: %autorelease
Summary: Implementation of OpenPGP's web of trust
@@ -31,6 +31,7 @@ Summary: %{summary}
# (MIT OR Apache-2.0) AND Unicode-DFS-2016
# Apache-2.0
# Apache-2.0 OR BSL-1.0
+# Apache-2.0 OR ISC OR MIT
# Apache-2.0 OR MIT
# Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT
# BSD-2-Clause OR Apache-2.0 OR MIT
@@ -43,7 +44,7 @@ Summary: %{summary}
# MPL-2.0
# Unlicense OR MIT
# Zlib OR Apache-2.0 OR MIT
-License: LGPL-2.0-or-later AND Apache-2.0 AND BSD-3-Clause AND BSL-1.0 AND MIT AND MPL-2.0 AND Unicode-DFS-2016 AND (Apache-2.0 OR BSL-1.0) AND (Apache-2.0 OR MIT) AND (Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT) AND (BSD-2-Clause OR Apache-2.0 OR MIT) AND (LGPL-3.0 OR GPL-2.0 OR GPL-3.0) AND (MIT OR Apache-2.0 OR Zlib) AND (Unlicense OR MIT)
+License: LGPL-2.0-or-later AND Apache-2.0 AND BSD-3-Clause AND BSL-1.0 AND MIT AND MPL-2.0 AND Unicode-DFS-2016 AND (Apache-2.0 OR BSL-1.0) AND (Apache-2.0 OR ISC OR MIT) AND (Apache-2.0 OR MIT) AND (Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT) AND (BSD-2-Clause OR Apache-2.0 OR MIT) AND (LGPL-3.0 OR GPL-2.0 OR GPL-3.0) AND (MIT OR Apache-2.0 OR Zlib) AND (Unlicense OR MIT)
# LICENSE.dependencies contains a full license breakdown
%description -n %{crate} %{_description}
diff --git a/rust2rpm.toml b/rust2rpm.toml
new file mode 100644
index 0000000..dea5b82
--- /dev/null
+++ b/rust2rpm.toml
@@ -0,0 +1,30 @@
+[package]
+cargo-toml-patch-comments = [
+ "expose features for crypto backends without setting a default",
+ "drop support for writing graphs in DOT format",
+]
+extra-files = [
+ "%{_mandir}/man1/sq-wot*",
+ "%{bash_completions_dir}/sq-wot.bash",
+ "%{fish_completions_dir}/sq-wot.fish",
+ "%{zsh_completions_dir}/_sq-wot",
+]
+
+[scripts]
+prep.post = [
+ "# drop tests that use the disabled DOT output format",
+ "rm tests/tests.rs",
+]
+install.post = [
+ "# install manual pages",
+ "mkdir -p %{buildroot}/%{_mandir}/man1",
+ "cp -pav target/release/build/%{crate}-*/out/sq-wot*.1 %{buildroot}/%{_mandir}/man1/",
+ "# install shell completions",
+ "install -Dpm 0644 target/release/build/%{crate}-*/out/sq-wot.bash \\",
+ " %{buildroot}/%{bash_completions_dir}/sq-wot.bash",
+ "install -Dpm 0644 target/release/build/%{crate}-*/out/sq-wot.fish \\",
+ " %{buildroot}/%{fish_completions_dir}/sq-wot.fish",
+ "install -Dpm 0644 target/release/build/%{crate}-*/out/_sq-wot \\",
+ " %{buildroot}/%{zsh_completions_dir}/_sq-wot",
+]
+
diff --git a/sequoia-wot-fix-metadata-auto.diff b/sequoia-wot-fix-metadata-auto.diff
index 7b44103..473058f 100644
--- a/sequoia-wot-fix-metadata-auto.diff
+++ b/sequoia-wot-fix-metadata-auto.diff
@@ -1,5 +1,5 @@
---- sequoia-wot-0.9.0/Cargo.toml 1970-01-01T00:00:01+00:00
-+++ sequoia-wot-0.9.0/Cargo.toml 2023-12-14T10:00:59.571434+00:00
+--- sequoia-wot-0.11.0/Cargo.toml 1970-01-01T00:00:01+00:00
++++ sequoia-wot-0.11.0/Cargo.toml 2024-03-19T15:08:45.142777+00:00
@@ -137,13 +137,6 @@
]
default-features = false
diff --git a/sequoia-wot-fix-metadata.diff b/sequoia-wot-fix-metadata.diff
index 67e2887..0af6716 100644
--- a/sequoia-wot-fix-metadata.diff
+++ b/sequoia-wot-fix-metadata.diff
@@ -1,5 +1,5 @@
---- sequoia-wot-0.9.0/Cargo.toml 1970-01-01T00:00:01+00:00
-+++ sequoia-wot-0.9.0/Cargo.toml 2023-12-14T10:02:17.948709+00:00
+--- sequoia-wot-0.11.0/Cargo.toml 1970-01-01T00:00:01+00:00
++++ sequoia-wot-0.11.0/Cargo.toml 2024-03-19T15:09:15.305915+00:00
@@ -63,10 +63,6 @@
[dependencies.crossbeam]
version = "0.8.1"
diff --git a/sources b/sources
index 46b172f..9d1fad5 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (sequoia-wot-0.9.0.crate) = e85e3dd8267f13d7357521963d9168948f2131d1072a544e99588abffa2942be5d45b11a5894e222adda54e34ef70f786e0bc096c8c0dcbaa58cbb9afbf29f2d
+SHA512 (sequoia-wot-0.11.0.crate) = a200e0008fa3a14311b488d84425fb108a7c31c481a4b1077650755debfdf1061e74f5061dee99bcbec01d2f643733a76e95963f312396def5d8c7cd6c0f39bd
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2026-06-15 12:50 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-06-15 12:50 [rpms/rust-sequoia-wot] epel10: Update to version 0.11.0; Fixes RHBZ#2265677 Fabio Valentini
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox