public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
* [rpms/rust-sequoia-sop] epel10: update to version 0.23.0
@ 2026-06-15 10:51 Fabio Valentini
0 siblings, 0 replies; only message in thread
From: Fabio Valentini @ 2026-06-15 10:51 UTC (permalink / raw)
To: git-commits
A new commit has been pushed.
Repo : rpms/rust-sequoia-sop
Branch : epel10
Commit : 6f976bc0508eaf674a0622ea2d3c86e7dab106ac
Author : Fabio Valentini <decathorpe@gmail.com>
Date : 2021-06-08T01:06:47+02:00
Stats : +129/-14 in 4 file(s)
URL : https://src.fedoraproject.org/rpms/rust-sequoia-sop/c/6f976bc0508eaf674a0622ea2d3c86e7dab106ac?branch=epel10
Log:
update to version 0.23.0
---
diff --git a/.gitignore b/.gitignore
index 14b547b..f0d36b4 100644
--- a/.gitignore
+++ b/.gitignore
@@ -2,3 +2,4 @@
/*.src.rpm
/sequoia-sop-0.22.2.crate
+/sequoia-sop-0.23.0.crate
diff --git a/rust-sequoia-sop.spec b/rust-sequoia-sop.spec
index 3f09e78..e53dd97 100644
--- a/rust-sequoia-sop.spec
+++ b/rust-sequoia-sop.spec
@@ -1,25 +1,27 @@
-# Generated by rust2rpm 16
+# Generated by rust2rpm 17
%bcond_without check
-%global __cargo_skip_build 0
%global crate sequoia-sop
Name: rust-%{crate}
-Version: 0.22.2
+Version: 0.23.0
Release: 1%{?dist}
Summary: Stateless OpenPGP Command Line Interface using Sequoia
# Upstream license specification: GPL-2.0-or-later
-# FIXME: missing license file
License: GPLv2+
URL: https://crates.io/crates/sequoia-sop
Source: %{crates_source}
# Initial patched metadata
# * exclude files that are only useful for upstream development
# * prevent manpages from getting installed twice
+# * drop windows-specific features and dependencies
Patch0: sequoia-sop-fix-metadata.diff
ExclusiveArch: %{rust_arches}
+%if %{__cargo_skip_build}
+BuildArch: noarch
+%endif
BuildRequires: rust-packaging
@@ -28,6 +30,7 @@ Implementation of the Stateless OpenPGP Command Line Interface using Sequoia.}
%description %{_description}
+%if ! %{__cargo_skip_build}
%package -n %{crate}
Summary: %{summary}
# 0BSD or MIT or ASL 2.0
@@ -48,31 +51,134 @@ License: GPLv2+ and ASL 2.0 and BSD and CC0 and MIT
%description -n %{crate} %{_description}
%files -n %{crate}
+%license LICENSE.txt
%doc README.md
%{_bindir}/sqop
%{_mandir}/man1/sqop*
+%endif
+
+%package devel
+Summary: %{summary}
+BuildArch: noarch
+
+%description devel %{_description}
+
+This package contains library source intended for building other packages
+which use "%{crate}" crate.
+
+%files devel
+%license LICENSE.txt
+%doc README.md
+%{cargo_registry}/%{crate}-%{version_no_tilde}/
+
+%package -n %{name}+default-devel
+Summary: %{summary}
+BuildArch: noarch
+
+%description -n %{name}+default-devel %{_description}
+
+This package contains library source intended for building other packages
+which use "default" feature of "%{crate}" crate.
+
+%files -n %{name}+default-devel
+%ghost %{cargo_registry}/%{crate}-%{version_no_tilde}/Cargo.toml
+
+%package -n %{name}+cli-devel
+Summary: %{summary}
+BuildArch: noarch
+
+%description -n %{name}+cli-devel %{_description}
+
+This package contains library source intended for building other packages
+which use "cli" feature of "%{crate}" crate.
+
+%files -n %{name}+cli-devel
+%ghost %{cargo_registry}/%{crate}-%{version_no_tilde}/Cargo.toml
+
+%package -n %{name}+compression-devel
+Summary: %{summary}
+BuildArch: noarch
+
+%description -n %{name}+compression-devel %{_description}
+
+This package contains library source intended for building other packages
+which use "compression" feature of "%{crate}" crate.
+
+%files -n %{name}+compression-devel
+%ghost %{cargo_registry}/%{crate}-%{version_no_tilde}/Cargo.toml
+
+%package -n %{name}+compression-bzip2-devel
+Summary: %{summary}
+BuildArch: noarch
+
+%description -n %{name}+compression-bzip2-devel %{_description}
+
+This package contains library source intended for building other packages
+which use "compression-bzip2" feature of "%{crate}" crate.
+
+%files -n %{name}+compression-bzip2-devel
+%ghost %{cargo_registry}/%{crate}-%{version_no_tilde}/Cargo.toml
+
+%package -n %{name}+compression-deflate-devel
+Summary: %{summary}
+BuildArch: noarch
+
+%description -n %{name}+compression-deflate-devel %{_description}
+
+This package contains library source intended for building other packages
+which use "compression-deflate" feature of "%{crate}" crate.
+
+%files -n %{name}+compression-deflate-devel
+%ghost %{cargo_registry}/%{crate}-%{version_no_tilde}/Cargo.toml
+
+%package -n %{name}+crypto-cng-devel
+Summary: %{summary}
+BuildArch: noarch
+
+%description -n %{name}+crypto-cng-devel %{_description}
+
+This package contains library source intended for building other packages
+which use "crypto-cng" feature of "%{crate}" crate.
+
+%files -n %{name}+crypto-cng-devel
+%ghost %{cargo_registry}/%{crate}-%{version_no_tilde}/Cargo.toml
+
+%package -n %{name}+crypto-nettle-devel
+Summary: %{summary}
+BuildArch: noarch
+
+%description -n %{name}+crypto-nettle-devel %{_description}
+
+This package contains library source intended for building other packages
+which use "crypto-nettle" feature of "%{crate}" crate.
+
+%files -n %{name}+crypto-nettle-devel
+%ghost %{cargo_registry}/%{crate}-%{version_no_tilde}/Cargo.toml
%prep
%autosetup -n %{crate}-%{version_no_tilde} -p1
%cargo_prep
%generate_buildrequires
-%cargo_generate_buildrequires
+%cargo_generate_buildrequires -a
%build
-%cargo_build
+%cargo_build -a
%install
-%cargo_install
+%cargo_install -a
# install manual pages
mkdir -p %{buildroot}/%{_mandir}/man1
cp -pav man-sqop/* %{buildroot}/%{_mandir}/man1/
%if %{with check}
%check
-%cargo_test
+%cargo_test -a
%endif
%changelog
-* Thu Apr 08 2021 Fabio Valentini - 0.22.2-1
+* Mon Jun 07 2021 Fabio Valentini <decathorpe@gmail.com> - 0.23.0-1
+- Update to version 0.23.0.
+
+* Thu Apr 08 2021 Fabio Valentini <decathorpe@gmail.com> - 0.22.2-1
- Initial package
diff --git a/sequoia-sop-fix-metadata.diff b/sequoia-sop-fix-metadata.diff
index 65bc73d..17076c1 100644
--- a/sequoia-sop-fix-metadata.diff
+++ b/sequoia-sop-fix-metadata.diff
@@ -1,10 +1,18 @@
---- sequoia-sop-0.22.2/Cargo.toml 2021-03-05T14:58:31+00:00
-+++ sequoia-sop-0.22.2/Cargo.toml 2021-04-08T21:25:12.090636+00:00
+--- sequoia-sop-0.23.0/Cargo.toml 2021-06-02T11:04:23+00:00
++++ sequoia-sop-0.23.0/Cargo.toml 2021-06-02T19:18:41.981843+00:00
@@ -23,6 +23,7 @@
categories = ["cryptography", "command-line-utilities"]
license = "GPL-2.0-or-later"
repository = "https://gitlab.com/sequoia-pgp/sequoia-sop"
+exclude = ["man-sqop", "rust-toolchain"]
- [[bin]]
- name = "sqop"
+ [lib]
+
+@@ -47,7 +48,6 @@
+ compression = ["sequoia-openpgp/compression"]
+ compression-bzip2 = ["sequoia-openpgp/compression-bzip2"]
+ compression-deflate = ["sequoia-openpgp/compression-deflate"]
+-crypto-cng = ["sequoia-openpgp/crypto-cng"]
+ crypto-nettle = ["sequoia-openpgp/crypto-nettle"]
+ default = ["sequoia-openpgp/default"]
+ [badges.gitlab]
diff --git a/sources b/sources
index 764e02f..3fc14eb 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (sequoia-sop-0.22.2.crate) = 60ae34b1b46eed6288c3bc703ccfeccd5e1de3eae90b32bcb72b8d87573812d61fbc952f223960077a657767ded0f67a71588ad4b74077a43a0015bd29e1a8c0
+SHA512 (sequoia-sop-0.23.0.crate) = 84b4235816d222366756a6ddb4f45e6dbf31ab916f7c1bef9618c45b2b9b59d2bd568f412b0e5f7cfbe34eade5f21640c00ac3da52ad75a02214bc3658b1bfc7
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2026-06-15 10:51 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-06-15 10:51 [rpms/rust-sequoia-sop] epel10: update to version 0.23.0 Fabio Valentini
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox