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.35.0; Fixes RHBZ#2297902
Date: Mon, 15 Jun 2026 10:51:32 GMT	[thread overview]
Message-ID: <178152069249.1.6977564381347098991.rpms-rust-sequoia-sop-06c7ffdaebc2@fedoraproject.org> (raw)

A new commit has been pushed.

Repo   : rpms/rust-sequoia-sop
Branch : epel10
Commit : 06c7ffdaebc24265143583416aff9b81c7dc7324
Author : Fabio Valentini <decathorpe@gmail.com>
Date   : 2024-07-30T01:07:10+02:00
Stats  : +57/-12 in 5 file(s)
URL    : https://src.fedoraproject.org/rpms/rust-sequoia-sop/c/06c7ffdaebc24265143583416aff9b81c7dc7324?branch=epel10

Log:
Update to version 0.35.0; Fixes RHBZ#2297902

---
diff --git a/.gitignore b/.gitignore
index 5943332..92d5dea 100644
--- a/.gitignore
+++ b/.gitignore
@@ -10,3 +10,4 @@
 /sequoia-sop-0.32.0.crate
 /sequoia-sop-0.33.0.crate
 /sequoia-sop-0.34.0.crate
+/sequoia-sop-0.35.0.crate

diff --git a/rust-sequoia-sop.spec b/rust-sequoia-sop.spec
index dac9d84..255ae8d 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.34.0
+Version:        0.35.0
 Release:        %autorelease
 Summary:        Implementation of the Stateless OpenPGP Interface using Sequoia
 
@@ -49,10 +49,14 @@ License:        GPL-2.0-or-later AND Apache-2.0 AND BSL-1.0 AND LGPL-2.0-or-late
 %license LICENSE.dependencies
 %doc README.md
 %{_bindir}/sqop
+%{_bindir}/sqopv
 %{_mandir}/man1/sqop*
 %{bash_completions_dir}/sqop.bash
 %{fish_completions_dir}/sqop.fish
 %{zsh_completions_dir}/_sqop
+%{bash_completions_dir}/sqopv.bash
+%{fish_completions_dir}/sqopv.fish
+%{zsh_completions_dir}/_sqopv
 
 %package        devel
 Summary:        %{summary}
@@ -92,6 +96,18 @@ use the "cli" feature of the "%{crate}" crate.
 %files       -n %{name}+cli-devel
 %ghost %{crate_instdir}/Cargo.toml
 
+%package     -n %{name}+cliv-devel
+Summary:        %{summary}
+BuildArch:      noarch
+
+%description -n %{name}+cliv-devel %{_description}
+
+This package contains library source intended for building other packages which
+use the "cliv" feature of the "%{crate}" crate.
+
+%files       -n %{name}+cliv-devel
+%ghost %{crate_instdir}/Cargo.toml
+
 %package     -n %{name}+crypto-nettle-devel
 Summary:        %{summary}
 BuildArch:      noarch
@@ -116,34 +132,52 @@ use the "crypto-openssl" feature of the "%{crate}" crate.
 %files       -n %{name}+crypto-openssl-devel
 %ghost %{crate_instdir}/Cargo.toml
 
+%package     -n %{name}+crypto-rust-devel
+Summary:        %{summary}
+BuildArch:      noarch
+
+%description -n %{name}+crypto-rust-devel %{_description}
+
+This package contains library source intended for building other packages which
+use the "crypto-rust" feature of the "%{crate}" crate.
+
+%files       -n %{name}+crypto-rust-devel
+%ghost %{crate_instdir}/Cargo.toml
+
 %prep
 %autosetup -n %{crate}-%{version} -p1
 %cargo_prep
 
 %generate_buildrequires
-%cargo_generate_buildrequires -f cli
+%cargo_generate_buildrequires -f cli,cliv
 
 %build
-%cargo_build -f cli
-%{cargo_license_summary -f cli}
-%{cargo_license -f cli} > LICENSE.dependencies
+%cargo_build -f cli,cliv
+%{cargo_license_summary -f cli,cliv}
+%{cargo_license -f cli,cliv} > LICENSE.dependencies
 
 %install
-%cargo_install -f cli
+%cargo_install -f cli,cliv
 # install manual pages
 mkdir -p %{buildroot}/%{_mandir}/man1
 cp -pav man-sqop/* %{buildroot}/%{_mandir}/man1/
 # install shell completions
 install -Dpm 0644 target/release/build/%{crate}-*/out/shell-completions/sqop.bash \
     %{buildroot}/%{bash_completions_dir}/sqop.bash
+install -Dpm 0644 target/release/build/%{crate}-*/out/shell-completions/sqopv.bash \
+    %{buildroot}/%{bash_completions_dir}/sqopv.bash
 install -Dpm 0644 target/release/build/%{crate}-*/out/shell-completions/sqop.fish \
     %{buildroot}/%{fish_completions_dir}/sqop.fish
+install -Dpm 0644 target/release/build/%{crate}-*/out/shell-completions/sqopv.fish \
+    %{buildroot}/%{fish_completions_dir}/sqopv.fish
 install -Dpm 0644 target/release/build/%{crate}-*/out/shell-completions/_sqop \
     %{buildroot}/%{zsh_completions_dir}/_sqop
+install -Dpm 0644 target/release/build/%{crate}-*/out/shell-completions/_sqopv \
+    %{buildroot}/%{zsh_completions_dir}/_sqopv
 
 %if %{with check}
 %check
-%cargo_test -f cli
+%cargo_test -f cli,cliv
 %endif
 
 %changelog

diff --git a/rust2rpm.toml b/rust2rpm.toml
index e55d39e..9fddc91 100644
--- a/rust2rpm.toml
+++ b/rust2rpm.toml
@@ -8,6 +8,9 @@ extra-files = [
     "%{bash_completions_dir}/sqop.bash",
     "%{fish_completions_dir}/sqop.fish",
     "%{zsh_completions_dir}/_sqop",
+    "%{bash_completions_dir}/sqopv.bash",
+    "%{fish_completions_dir}/sqopv.fish",
+    "%{zsh_completions_dir}/_sqopv",
 ]
 
 [scripts]
@@ -18,9 +21,15 @@ install.post = [
     "# install shell completions",
     "install -Dpm 0644 target/release/build/%{crate}-*/out/shell-completions/sqop.bash \\",
     "    %{buildroot}/%{bash_completions_dir}/sqop.bash",
+    "install -Dpm 0644 target/release/build/%{crate}-*/out/shell-completions/sqopv.bash \\",
+    "    %{buildroot}/%{bash_completions_dir}/sqopv.bash",
     "install -Dpm 0644 target/release/build/%{crate}-*/out/shell-completions/sqop.fish \\",
     "    %{buildroot}/%{fish_completions_dir}/sqop.fish",
+    "install -Dpm 0644 target/release/build/%{crate}-*/out/shell-completions/sqopv.fish \\",
+    "    %{buildroot}/%{fish_completions_dir}/sqopv.fish",
     "install -Dpm 0644 target/release/build/%{crate}-*/out/shell-completions/_sqop \\",
     "    %{buildroot}/%{zsh_completions_dir}/_sqop",
+    "install -Dpm 0644 target/release/build/%{crate}-*/out/shell-completions/_sqopv \\",
+    "    %{buildroot}/%{zsh_completions_dir}/_sqopv",
 ]
 

diff --git a/sequoia-sop-fix-metadata.diff b/sequoia-sop-fix-metadata.diff
index 7111287..7919c6b 100644
--- a/sequoia-sop-fix-metadata.diff
+++ b/sequoia-sop-fix-metadata.diff
@@ -1,5 +1,5 @@
---- sequoia-sop-0.34.0/Cargo.toml	1970-01-01T00:00:01+00:00
-+++ sequoia-sop-0.34.0/Cargo.toml	2024-06-10T20:20:21.540777+00:00
+--- sequoia-sop-0.35.0/Cargo.toml	1970-01-01T00:00:01+00:00
++++ sequoia-sop-0.35.0/Cargo.toml	2024-07-29T22:51:19.047601+00:00
 @@ -31,6 +31,7 @@
  ]
  license = "GPL-2.0-or-later"
@@ -8,13 +8,14 @@
  
  [lib]
  
-@@ -54,7 +55,9 @@
- 
+@@ -60,7 +61,10 @@
  [features]
  cli = ["sop/cli"]
+ cliv = ["sop/cliv"]
 -default = ["sequoia-openpgp/default"]
 +crypto-nettle = ["sequoia-openpgp/crypto-nettle"]
 +crypto-openssl = ["sequoia-openpgp/crypto-openssl"]
++crypto-rust = ["sequoia-openpgp/crypto-rust"]
 +default = ["crypto-openssl", "sequoia-openpgp/compression"]
  
  [badges.gitlab]

diff --git a/sources b/sources
index 3e85460..c513164 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (sequoia-sop-0.34.0.crate) = 9c8cf2049073874f0dbe5c8cc10bbc935972cbcd6ff936c1eadcef0acae74c6c172673a4f3f9a21673965990c301363a9bc1423fe28f836859616b15783b8e14
+SHA512 (sequoia-sop-0.35.0.crate) = 35a5089cf1dc0c68b9fc6ab19ef70d93fc79387e59346e78e12b49a9fe78cf4d232c805a3cee49b4996b4a8fb99c261fe611d8b0e791a2adfd5929ebad801427

                 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=178152069249.1.6977564381347098991.rpms-rust-sequoia-sop-06c7ffdaebc2@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