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-drm-sys] epel10: Initial import; Fixes: RHBZ#2224814
Date: Fri, 25 Sep 2026 10:32:49 GMT	[thread overview]
Message-ID: <179033236951.1.15262991448104391803.rpms-rust-drm-sys-18013c05b0e7@fedoraproject.org> (raw)

A new commit has been pushed.

Repo   : rpms/rust-drm-sys
Branch : epel10
Commit : 18013c05b0e7be66b39d2d05119447f2d8ae7131
Author : Davide Cavalca <dcavalca@fedoraproject.org>
Date   : 2023-07-23T07:29:50-07:00
Stats  : +147/-0 in 4 file(s)
URL    : https://src.fedoraproject.org/rpms/rust-drm-sys/c/18013c05b0e7be66b39d2d05119447f2d8ae7131?branch=epel10

Log:
Initial import; Fixes: RHBZ#2224814

---
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..963e038
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1 @@
+/drm-sys-0.4.0.crate

diff --git a/LICENSE b/LICENSE
new file mode 100644
index 0000000..31aa793
--- /dev/null
+++ b/LICENSE
@@ -0,0 +1,23 @@
+Permission is hereby granted, free of charge, to any
+person obtaining a copy of this software and associated
+documentation files (the "Software"), to deal in the
+Software without restriction, including without
+limitation the rights to use, copy, modify, merge,
+publish, distribute, sublicense, and/or sell copies of
+the Software, and to permit persons to whom the Software
+is furnished to do so, subject to the following
+conditions:
+
+The above copyright notice and this permission notice
+shall be included in all copies or substantial portions
+of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
+ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
+TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
+PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
+SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
+CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
+IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+DEALINGS IN THE SOFTWARE.

diff --git a/rust-drm-sys.spec b/rust-drm-sys.spec
new file mode 100644
index 0000000..9ca95c2
--- /dev/null
+++ b/rust-drm-sys.spec
@@ -0,0 +1,122 @@
+# Generated by rust2rpm 24
+%bcond_without check
+%global debug_package %{nil}
+
+%global crate drm-sys
+
+Name:           rust-drm-sys
+Version:        0.4.0
+Release:        %autorelease
+Summary:        Bindings to the Direct Rendering Manager API
+
+License:        MIT
+URL:            https://crates.io/crates/drm-sys
+Source:         %{crates_source}
+# https://github.com/Smithay/drm-rs/pull/152
+Source:         https://github.com/Smithay/drm-rs/raw/v0.9.0/LICENSE
+
+BuildRequires:  rust-packaging >= 21
+
+# No prebuilt bindings for target architecture
+ExcludeArch:    ppc64le s390x
+
+%global _description %{expand:
+Bindings to the Direct Rendering Manager API.}
+
+%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}/LICENSE
+%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}+bindgen-devel
+Summary:        %{summary}
+BuildArch:      noarch
+
+%description -n %{name}+bindgen-devel %{_description}
+
+This package contains library source intended for building other packages which
+use the "bindgen" feature of the "%{crate}" crate.
+
+%files       -n %{name}+bindgen-devel
+%ghost %{crate_instdir}/Cargo.toml
+
+%package     -n %{name}+pkg-config-devel
+Summary:        %{summary}
+BuildArch:      noarch
+
+%description -n %{name}+pkg-config-devel %{_description}
+
+This package contains library source intended for building other packages which
+use the "pkg-config" feature of the "%{crate}" crate.
+
+%files       -n %{name}+pkg-config-devel
+%ghost %{crate_instdir}/Cargo.toml
+
+%package     -n %{name}+update_bindings-devel
+Summary:        %{summary}
+BuildArch:      noarch
+
+%description -n %{name}+update_bindings-devel %{_description}
+
+This package contains library source intended for building other packages which
+use the "update_bindings" feature of the "%{crate}" crate.
+
+%files       -n %{name}+update_bindings-devel
+%ghost %{crate_instdir}/Cargo.toml
+
+%package     -n %{name}+use_bindgen-devel
+Summary:        %{summary}
+BuildArch:      noarch
+
+%description -n %{name}+use_bindgen-devel %{_description}
+
+This package contains library source intended for building other packages which
+use the "use_bindgen" feature of the "%{crate}" crate.
+
+%files       -n %{name}+use_bindgen-devel
+%ghost %{crate_instdir}/Cargo.toml
+
+%prep
+%autosetup -n %{crate}-%{version_no_tilde} -p1
+cp -p %SOURCE1 .
+%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..60a2bc0
--- /dev/null
+++ b/sources
@@ -0,0 +1 @@
+SHA512 (drm-sys-0.4.0.crate) = c61b7fb0e4aa7ee2bcb40dc6a8207fa04eb081a5765d059fda4090abeca9afe4f9f1d7c56e2024f79f7c91e2223295c080e52831863c8a54eecc39083721d1fb

                 reply	other threads:[~2026-09-25 10:32 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=179033236951.1.15262991448104391803.rpms-rust-drm-sys-18013c05b0e7@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