public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
From: Fabio Valentini <decathorpe@gmail.com>
To: git-commits@fedoraproject.org
Subject: [rpms/rust-sequoia-sop] epel10: Update to version 0.37.1; Fixes RHBZ#2357700
Date: Mon, 15 Jun 2026 10:51:35 GMT	[thread overview]
Message-ID: <178152069571.1.9486919560769112116.rpms-rust-sequoia-sop-8e74857b8796@fedoraproject.org> (raw)

A new commit has been pushed.

Repo   : rpms/rust-sequoia-sop
Branch : epel10
Commit : 8e74857b879684353a63744595f27659b3a9472b
Author : Fabio Valentini <decathorpe@gmail.com>
Date   : 2025-04-09T00:03:40+02:00
Stats  : +23/-18 in 5 file(s)
URL    : https://src.fedoraproject.org/rpms/rust-sequoia-sop/c/8e74857b879684353a63744595f27659b3a9472b?branch=epel10

Log:
Update to version 0.37.1; Fixes RHBZ#2357700

---
diff --git a/.gitignore b/.gitignore
index 704941a..42616e0 100644
--- a/.gitignore
+++ b/.gitignore
@@ -14,3 +14,4 @@
 /sequoia-sop-0.36.0.crate
 /sequoia-sop-0.36.1.crate
 /sequoia-sop-0.37.0.crate
+/sequoia-sop-0.37.1.crate

diff --git a/rust-sequoia-sop.spec b/rust-sequoia-sop.spec
index d6e752e..e21392f 100644
--- a/rust-sequoia-sop.spec
+++ b/rust-sequoia-sop.spec
@@ -4,7 +4,7 @@
 %global crate sequoia-sop
 
 Name:           rust-sequoia-sop
-Version:        0.37.0
+Version:        0.37.1
 Release:        %autorelease
 Summary:        Implementation of the Stateless OpenPGP Interface using Sequoia
 
@@ -172,6 +172,7 @@ use the "crypto-rust" feature of the "%{crate}" crate.
 %cargo_generate_buildrequires -f cli,cliv
 
 %build
+export ASSET_OUT_DIR=target/assets
 %cargo_build -f cli,cliv
 %{cargo_license_summary -f cli,cliv}
 %{cargo_license -f cli,cliv} > LICENSE.dependencies
@@ -180,19 +181,19 @@ use the "crypto-rust" feature of the "%{crate}" crate.
 %cargo_install -f cli,cliv
 # install manual pages
 mkdir -p %{buildroot}/%{_mandir}/man1
-cp -pav target/release/build/%{crate}-*/out/man-pages/sqop*.1 %{buildroot}/%{_mandir}/man1/
+cp -pav target/assets/man-pages/sqop*.1 %{buildroot}/%{_mandir}/man1/
 # install shell completions
-install -Dpm 0644 target/release/build/%{crate}-*/out/shell-completions/sqop.bash \
+install -Dpm 0644 target/assets/shell-completions/sqop.bash \
     %{buildroot}/%{bash_completions_dir}/sqop.bash
-install -Dpm 0644 target/release/build/%{crate}-*/out/shell-completions/sqopv.bash \
+install -Dpm 0644 target/assets/shell-completions/sqopv.bash \
     %{buildroot}/%{bash_completions_dir}/sqopv.bash
-install -Dpm 0644 target/release/build/%{crate}-*/out/shell-completions/sqop.fish \
+install -Dpm 0644 target/assets/shell-completions/sqop.fish \
     %{buildroot}/%{fish_completions_dir}/sqop.fish
-install -Dpm 0644 target/release/build/%{crate}-*/out/shell-completions/sqopv.fish \
+install -Dpm 0644 target/assets/shell-completions/sqopv.fish \
     %{buildroot}/%{fish_completions_dir}/sqopv.fish
-install -Dpm 0644 target/release/build/%{crate}-*/out/shell-completions/_sqop \
+install -Dpm 0644 target/assets/shell-completions/_sqop \
     %{buildroot}/%{zsh_completions_dir}/_sqop
-install -Dpm 0644 target/release/build/%{crate}-*/out/shell-completions/_sqopv \
+install -Dpm 0644 target/assets/shell-completions/_sqopv \
     %{buildroot}/%{zsh_completions_dir}/_sqopv
 
 %if %{with check}

diff --git a/rust2rpm.toml b/rust2rpm.toml
index 728d73c..767ce6a 100644
--- a/rust2rpm.toml
+++ b/rust2rpm.toml
@@ -14,22 +14,25 @@ extra-files = [
 ]
 
 [scripts]
+build.pre = [
+    "export ASSET_OUT_DIR=target/assets",
+]
 install.post = [
     "# install manual pages",
     "mkdir -p %{buildroot}/%{_mandir}/man1",
-    "cp -pav target/release/build/%{crate}-*/out/man-pages/sqop*.1 %{buildroot}/%{_mandir}/man1/",
+    "cp -pav target/assets/man-pages/sqop*.1 %{buildroot}/%{_mandir}/man1/",
     "# install shell completions",
-    "install -Dpm 0644 target/release/build/%{crate}-*/out/shell-completions/sqop.bash \\",
+    "install -Dpm 0644 target/assets/shell-completions/sqop.bash \\",
     "    %{buildroot}/%{bash_completions_dir}/sqop.bash",
-    "install -Dpm 0644 target/release/build/%{crate}-*/out/shell-completions/sqopv.bash \\",
+    "install -Dpm 0644 target/assets/shell-completions/sqopv.bash \\",
     "    %{buildroot}/%{bash_completions_dir}/sqopv.bash",
-    "install -Dpm 0644 target/release/build/%{crate}-*/out/shell-completions/sqop.fish \\",
+    "install -Dpm 0644 target/assets/shell-completions/sqop.fish \\",
     "    %{buildroot}/%{fish_completions_dir}/sqop.fish",
-    "install -Dpm 0644 target/release/build/%{crate}-*/out/shell-completions/sqopv.fish \\",
+    "install -Dpm 0644 target/assets/shell-completions/sqopv.fish \\",
     "    %{buildroot}/%{fish_completions_dir}/sqopv.fish",
-    "install -Dpm 0644 target/release/build/%{crate}-*/out/shell-completions/_sqop \\",
+    "install -Dpm 0644 target/assets/shell-completions/_sqop \\",
     "    %{buildroot}/%{zsh_completions_dir}/_sqop",
-    "install -Dpm 0644 target/release/build/%{crate}-*/out/shell-completions/_sqopv \\",
+    "install -Dpm 0644 target/assets/shell-completions/_sqopv \\",
     "    %{buildroot}/%{zsh_completions_dir}/_sqopv",
 ]
 

diff --git a/sequoia-sop-fix-metadata.diff b/sequoia-sop-fix-metadata.diff
index 542d4f2..4f67e4c 100644
--- a/sequoia-sop-fix-metadata.diff
+++ b/sequoia-sop-fix-metadata.diff
@@ -1,5 +1,5 @@
---- sequoia-sop-0.37.0/Cargo.toml	1970-01-01T00:00:01+00:00
-+++ sequoia-sop-0.37.0/Cargo.toml	2025-03-08T10:27:42.154529+00:00
+--- sequoia-sop-0.37.1/Cargo.toml	1970-01-01T00:00:01+00:00
++++ sequoia-sop-0.37.1/Cargo.toml	2025-04-08T21:53:25.801765+00:00
 @@ -38,6 +38,9 @@
  ]
  license = "GPL-2.0-or-later"

diff --git a/sources b/sources
index f3ddedd..56e211c 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (sequoia-sop-0.37.0.crate) = 771a71f105b8bf35f5bfbf4c61a012d11d7462273b403a66490fc1d2e2fda411ae902cae81aa39be401296dca8ab50b74b18adc91be72c53dc3c27760eb840d2
+SHA512 (sequoia-sop-0.37.1.crate) = 8851d5f48a5bb014e3e1cbe3b9f43373604e49b6e92b65035135a27abf19a471470fb7e4fb5b7dce3609f8e879c93f1c10c06ddcc5cde5e4227ee7d4af6c1883

                 reply	other threads:[~2026-06-15 10:51 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=178152069571.1.9486919560769112116.rpms-rust-sequoia-sop-8e74857b8796@fedoraproject.org \
    --to=decathorpe@gmail.com \
    --cc=git-commits@fedoraproject.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox