public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
* [rpms/rust-sequoia-net] epel10: initial import (#1948158)
@ 2026-06-15 13:44 Fabio Valentini
  0 siblings, 0 replies; only message in thread
From: Fabio Valentini @ 2026-06-15 13:44 UTC (permalink / raw)
  To: git-commits

A new commit has been pushed.

Repo   : rpms/rust-sequoia-net
Branch : epel10
Commit : e2b7b9f4d6dfd8e591ebc47d1a8d1cbd6db09ff4
Author : Fabio Valentini <decathorpe@gmail.com>
Date   : 2021-04-13T00:06:51+02:00
Stats  : +144/-3 in 6 file(s)
URL    : https://src.fedoraproject.org/rpms/rust-sequoia-net/c/e2b7b9f4d6dfd8e591ebc47d1a8d1cbd6db09ff4?branch=epel10

Log:
initial import (#1948158)

---
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..67870e2
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,4 @@
+/results_*/
+/*.src.rpm
+
+/sequoia-net-0.23.0.crate

diff --git a/.rust2rpm.conf b/.rust2rpm.conf
new file mode 100644
index 0000000..3bcb373
--- /dev/null
+++ b/.rust2rpm.conf
@@ -0,0 +1,3 @@
+[DEFAULT]
+unwanted-features =
+  crypto-cng

diff --git a/README.md b/README.md
deleted file mode 100644
index 4df9468..0000000
--- a/README.md
+++ /dev/null
@@ -1,3 +0,0 @@
-# rust-sequoia-net
-
-The rust-sequoia-net package

diff --git a/rust-sequoia-net.spec b/rust-sequoia-net.spec
new file mode 100644
index 0000000..cbee3c6
--- /dev/null
+++ b/rust-sequoia-net.spec
@@ -0,0 +1,126 @@
+# Generated by rust2rpm 16
+%bcond_without check
+%global debug_package %{nil}
+
+%global crate sequoia-net
+
+Name:           rust-%{crate}
+Version:        0.23.0
+Release:        1%{?dist}
+Summary:        Network services for OpenPGP
+
+# Upstream license specification: GPL-2.0-or-later
+# https://gitlab.com/sequoia-pgp/sequoia/-/issues/708
+License:        GPLv2+
+URL:            https://crates.io/crates/sequoia-net
+Source:         %{crates_source}
+# Initial patched metadata
+# * don't drop default features from rand dev-dependency
+Patch0:         sequoia-net-fix-metadata.diff
+
+ExclusiveArch:  %{rust_arches}
+%if %{__cargo_skip_build}
+BuildArch:      noarch
+%endif
+
+BuildRequires:  rust-packaging
+
+%global _description %{expand:
+Network services for OpenPGP.}
+
+%description %{_description}
+
+%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
+%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}+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-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
+
+%build
+%cargo_build
+
+%install
+%cargo_install
+
+%if %{with check}
+%check
+%cargo_test
+%endif
+
+%changelog
+* Thu Apr 08 2021 Fabio Valentini <decathorpe@gmail.com> - 0.23.0-1
+- Initial package

diff --git a/sequoia-net-fix-metadata.diff b/sequoia-net-fix-metadata.diff
new file mode 100644
index 0000000..6cf6355
--- /dev/null
+++ b/sequoia-net-fix-metadata.diff
@@ -0,0 +1,10 @@
+--- sequoia-net-0.23.0/Cargo.toml	2021-01-21T13:57:56+00:00
++++ sequoia-net-0.23.0/Cargo.toml	2021-04-07T11:42:11.498117+00:00
+@@ -64,7 +64,6 @@
+ version = "0.1.2"
+ [dev-dependencies.rand]
+ version = "0.7"
+-default-features = false
+ 
+ [dev-dependencies.tokio]
+ version = "0.2.19"

diff --git a/sources b/sources
new file mode 100644
index 0000000..7fc0c4b
--- /dev/null
+++ b/sources
@@ -0,0 +1 @@
+SHA512 (sequoia-net-0.23.0.crate) = 85378597e1d4f6861f6e17a938e49eff53af66c38cac870cea2437d1fa46f3889e1b5e2549921b9e2c64563b0f29eb91b1e97dbadb41dfdaa164b1868d20d78c

^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2026-06-15 13:44 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-06-15 13:44 [rpms/rust-sequoia-net] epel10: initial import (#1948158) Fabio Valentini

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox