public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
From: Davide Cavalca <dcavalca@fedoraproject.org>
To: git-commits@fedoraproject.org
Subject: [rpms/rust-input-linux] epel10: Initial import; Fixes: RHBZ#2224812
Date: Fri, 25 Sep 2026 10:35:33 GMT	[thread overview]
Message-ID: <179033253304.1.6656773542146331614.rpms-rust-input-linux-fa5375b16884@fedoraproject.org> (raw)

A new commit has been pushed.

Repo   : rpms/rust-input-linux
Branch : epel10
Commit : fa5375b168847c0481b482d0adff3db82fc2d63a
Author : Davide Cavalca <dcavalca@fedoraproject.org>
Date   : 2023-07-23T08:27:34-07:00
Stats  : +154/-0 in 3 file(s)
URL    : https://src.fedoraproject.org/rpms/rust-input-linux/c/fa5375b168847c0481b482d0adff3db82fc2d63a?branch=epel10

Log:
Initial import; Fixes: RHBZ#2224812

---
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..3c8d2cf
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1 @@
+/input-linux-0.6.0.crate

diff --git a/rust-input-linux.spec b/rust-input-linux.spec
new file mode 100644
index 0000000..0f5bc14
--- /dev/null
+++ b/rust-input-linux.spec
@@ -0,0 +1,152 @@
+# Generated by rust2rpm 24
+%bcond_without check
+%global debug_package %{nil}
+
+%global crate input-linux
+
+Name:           rust-input-linux
+Version:        0.6.0
+Release:        %autorelease
+Summary:        Evdev and uinput
+
+License:        MIT
+URL:            https://crates.io/crates/input-linux
+Source:         %{crates_source}
+
+BuildRequires:  cargo-rpm-macros >= 24
+
+%global _description %{expand:
+Evdev and uinput.}
+
+%description %{_description}
+
+%package        devel
+Summary:        %{summary}
+BuildArch:      noarch
+
+%description    devel %{_description}
+
+This package contains library source intended for building other packages which
+use the "%{crate}" crate.
+
+%files          devel
+%license %{crate_instdir}/COPYING
+%doc %{crate_instdir}/README.md
+%{crate_instdir}/
+
+%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 the "default" feature of the "%{crate}" crate.
+
+%files       -n %{name}+default-devel
+%ghost %{crate_instdir}/Cargo.toml
+
+%package     -n %{name}+bytes-devel
+Summary:        %{summary}
+BuildArch:      noarch
+
+%description -n %{name}+bytes-devel %{_description}
+
+This package contains library source intended for building other packages which
+use the "bytes" feature of the "%{crate}" crate.
+
+%files       -n %{name}+bytes-devel
+%ghost %{crate_instdir}/Cargo.toml
+
+%package     -n %{name}+codec-devel
+Summary:        %{summary}
+BuildArch:      noarch
+
+%description -n %{name}+codec-devel %{_description}
+
+This package contains library source intended for building other packages which
+use the "codec" feature of the "%{crate}" crate.
+
+%files       -n %{name}+codec-devel
+%ghost %{crate_instdir}/Cargo.toml
+
+%package     -n %{name}+dox-devel
+Summary:        %{summary}
+BuildArch:      noarch
+
+%description -n %{name}+dox-devel %{_description}
+
+This package contains library source intended for building other packages which
+use the "dox" feature of the "%{crate}" crate.
+
+%files       -n %{name}+dox-devel
+%ghost %{crate_instdir}/Cargo.toml
+
+%package     -n %{name}+serde-devel
+Summary:        %{summary}
+BuildArch:      noarch
+
+%description -n %{name}+serde-devel %{_description}
+
+This package contains library source intended for building other packages which
+use the "serde" feature of the "%{crate}" crate.
+
+%files       -n %{name}+serde-devel
+%ghost %{crate_instdir}/Cargo.toml
+
+%package     -n %{name}+tokio-util-0_6-devel
+Summary:        %{summary}
+BuildArch:      noarch
+
+%description -n %{name}+tokio-util-0_6-devel %{_description}
+
+This package contains library source intended for building other packages which
+use the "tokio-util-0_6" feature of the "%{crate}" crate.
+
+%files       -n %{name}+tokio-util-0_6-devel
+%ghost %{crate_instdir}/Cargo.toml
+
+%package     -n %{name}+tokio-util-0_7-devel
+Summary:        %{summary}
+BuildArch:      noarch
+
+%description -n %{name}+tokio-util-0_7-devel %{_description}
+
+This package contains library source intended for building other packages which
+use the "tokio-util-0_7" feature of the "%{crate}" crate.
+
+%files       -n %{name}+tokio-util-0_7-devel
+%ghost %{crate_instdir}/Cargo.toml
+
+%package     -n %{name}+unstable-devel
+Summary:        %{summary}
+BuildArch:      noarch
+
+%description -n %{name}+unstable-devel %{_description}
+
+This package contains library source intended for building other packages which
+use the "unstable" feature of the "%{crate}" crate.
+
+%files       -n %{name}+unstable-devel
+%ghost %{crate_instdir}/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/sources b/sources
new file mode 100644
index 0000000..263d42d
--- /dev/null
+++ b/sources
@@ -0,0 +1 @@
+SHA512 (input-linux-0.6.0.crate) = 33ffb6770a8cb1bd3365cad26b20c84b02e1759e82c1e0d9f5dc2faf3277c6865a43619eed98cfcf1264bcd7b7b2684990527024444d347964cc70e023bd918c

                 reply	other threads:[~2026-09-25 10:35 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=179033253304.1.6656773542146331614.rpms-rust-input-linux-fa5375b16884@fedoraproject.org \
    --to=dcavalca@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