public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
From: releng-bot <releng-bot@fedoraproject.org>
To: git-commits@fedoraproject.org
Subject: [rpms/rust-sluice] f44: Unretirement request: https://forge.fedoraproject.org/releng/fedora-scm-requests/issues/581
Date: Tue, 08 Sep 2026 19:27:27 GMT	[thread overview]
Message-ID: <178889564731.1.6854889139658379490.rpms-rust-sluice-2f34e40ae2c2@fedoraproject.org> (raw)

A new commit has been pushed.

Repo   : rpms/rust-sluice
Branch : f44
Commit : 2f34e40ae2c26f21de0acad86400bce674354469
Author : releng-bot <releng-bot@fedoraproject.org>
Date   : 2026-08-29T19:58:21+00:00
Stats  : +119/-1 in 7 file(s)
URL    : https://src.fedoraproject.org/rpms/rust-sluice/c/2f34e40ae2c26f21de0acad86400bce674354469?branch=f44

Log:
Unretirement request: https://forge.fedoraproject.org/releng/fedora-scm-requests/issues/581

---
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..a94f0bd
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,4 @@
+/sluice-0.5.1.crate
+/sluice-0.5.2.crate
+/sluice-0.5.3.crate
+/sluice-0.5.5.crate

diff --git a/README.md b/README.md
new file mode 100644
index 0000000..be245f7
--- /dev/null
+++ b/README.md
@@ -0,0 +1,3 @@
+# rust-sluice
+
+The rust-sluice package
\ No newline at end of file

diff --git a/changelog b/changelog
new file mode 100644
index 0000000..62afa1e
--- /dev/null
+++ b/changelog
@@ -0,0 +1,23 @@
+* Tue Jul 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.5.3-3
+- Second attempt - Rebuilt for
+  https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
+
+* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.5.3-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
+
+* Thu Nov 12 2020 Fabio Valentini <decathorpe@gmail.com> - 0.5.3-1
+- Update to version 0.5.3.
+- Fixes RHBZ#1897030
+
+* Sat Aug 01 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.5.2-3
+- Second attempt - Rebuilt for
+  https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
+
+* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.5.2-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
+
+* Fri Feb 28 19:16:58 CET 2020 Igor Raits <ignatenkobrain@fedoraproject.org> - 0.5.2-1
+- Update to 0.5.2
+
+* Tue Feb 18 10:58:21 CET 2020 Igor Raits <ignatenkobrain@fedoraproject.org> - 0.5.1-1
+- Initial package

diff --git a/dead.package b/dead.package
deleted file mode 100644
index 5204a84..0000000
--- a/dead.package
+++ /dev/null
@@ -1 +0,0 @@
-Orphaned for 6+ weeks

diff --git a/rust-sluice.spec b/rust-sluice.spec
new file mode 100644
index 0000000..8f17e19
--- /dev/null
+++ b/rust-sluice.spec
@@ -0,0 +1,77 @@
+# Generated by rust2rpm 18
+%bcond_without check
+%global debug_package %{nil}
+
+%global crate sluice
+
+Name:           rust-%{crate}
+Version:        0.5.5
+Release:        %autorelease
+Summary:        Efficient ring buffer for byte buffers, FIFO queues, and SPSC channels
+
+# Upstream license specification: MIT
+License:        MIT
+URL:            https://crates.io/crates/sluice
+Source:         %{crates_source}
+# Initial patched metadata
+# * drop unused benchmark-only criterion dependency to speed up builds
+Patch0:         sluice-fix-metadata.diff
+
+ExclusiveArch:  %{rust_arches}
+%if %{__cargo_skip_build}
+BuildArch:      noarch
+%endif
+
+BuildRequires:  rust-packaging
+
+%global _description %{expand:
+Efficient ring buffer for byte buffers, FIFO queues, and SPSC channels.}
+
+%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
+%license LICENSE
+%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
+
+%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
+%autochangelog

diff --git a/sluice-fix-metadata.diff b/sluice-fix-metadata.diff
new file mode 100644
index 0000000..c6ed3ff
--- /dev/null
+++ b/sluice-fix-metadata.diff
@@ -0,0 +1,11 @@
+--- sluice-0.5.5/Cargo.toml	1970-01-01T00:00:00+00:00
++++ sluice-0.5.5/Cargo.toml	2021-11-06T13:27:04.538367+00:00
+@@ -34,8 +34,6 @@
+ 
+ [dependencies.futures-io]
+ version = "0.3"
+-[dev-dependencies.criterion]
+-version = "0.3"
+ 
+ [dev-dependencies.futures]
+ version = "0.3"

diff --git a/sources b/sources
new file mode 100644
index 0000000..2a3e396
--- /dev/null
+++ b/sources
@@ -0,0 +1 @@
+SHA512 (sluice-0.5.5.crate) = d0a85db370a921f0591d63a5a78fffedc4c97e5a68915c86753dfb7798cf120542b1fc3193e093655442b34502ce6cadc799b25e39e26c122683e26ebd0383b3

                 reply	other threads:[~2026-09-08 19:27 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=178889564731.1.6854889139658379490.rpms-rust-sluice-2f34e40ae2c2@fedoraproject.org \
    --to=releng-bot@fedoraproject.org \
    --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