From f869b813a72a76d0c4747b65ba9a0648169036b0 Mon Sep 17 00:00:00 2001 From: Troy Dawson Date: Tue, 20 Oct 2020 08:28:11 -0700 Subject: [PATCH] RHEL 9.0.0 Alpha bootstrap The content of this branch was automatically imported from Fedora ELN with the following as its source: https://src.fedoraproject.org/rpms/wayland-utils#c17bb287b0b0a5b8fc55e520edfa3bf2a3157f13 --- .gitignore | 1 + README.md | 3 +++ sources | 1 + wayland-utils.spec | 43 +++++++++++++++++++++++++++++++++++++++++++ 4 files changed, 48 insertions(+) create mode 100644 README.md create mode 100644 sources create mode 100644 wayland-utils.spec diff --git a/.gitignore b/.gitignore index e69de29..989037b 100644 --- a/.gitignore +++ b/.gitignore @@ -0,0 +1 @@ +/wayland-utils-1.0.0.tar.xz diff --git a/README.md b/README.md new file mode 100644 index 0000000..e75cf3d --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +# wayland-utils + +The wayland-utils package diff --git a/sources b/sources new file mode 100644 index 0000000..9b19b46 --- /dev/null +++ b/sources @@ -0,0 +1 @@ +SHA512 (wayland-utils-1.0.0.tar.xz) = 4c6f1822435b36b3acd361c0c54e56150e8a2697a9c4b2c20a149fcfaafe237e45807df3471884ddf594d89558001099e2d938e3f48988ba6950a0f1e3538db2 diff --git a/wayland-utils.spec b/wayland-utils.spec new file mode 100644 index 0000000..d4efc47 --- /dev/null +++ b/wayland-utils.spec @@ -0,0 +1,43 @@ +Name: wayland-utils +Version: 1.0.0 +Release: 1%{?dist} +Summary: Wayland utilities + +License: MIT +URL: https://wayland.freedesktop.org/ +Source0: https://wayland.freedesktop.org/releases/%{name}-%{version}.tar.xz + +BuildRequires: gcc +BuildRequires: meson +BuildRequires: pkgconfig(wayland-client) +BuildRequires: pkgconfig(wayland-protocols) >= 1.17 +BuildRequires: pkgconfig(wayland-scanner) + + +%description +wayland-utils contains wayland-info, a standalone version of weston-info, +a utility for displaying information about the Wayland protocols supported +by the Wayland compositor. +wayland-info also provides additional information for a subset of Wayland +protocols it knows about, namely Linux DMABUF, presentation time, tablet and +XDG output protocols. + +%prep +%setup -q + +%build +%meson +%meson_build + +%install +%meson_install + +%files +%license COPYING +%doc README.md +%{_bindir}/wayland-info +%{_mandir}/man1/wayland-info.1* + +%changelog +* Mon Aug 3 2020 Olivier Fourdan - 1.0.0-1 +- Initial package