From 7c7204d9aa34ae188ce6e8277e2e219d3359d576 Mon Sep 17 00:00:00 2001 From: Troy Dawson Date: Wed, 18 Nov 2020 14:05:57 -0800 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/xkbcomp#81ad19d9b3977221cc3ce08cd41be1081a39514f --- .gitignore | 1 + README.md | 3 +++ sources | 1 + xkbcomp.spec | 49 +++++++++++++++++++++++++++++++++++++++++++++++++ 4 files changed, 54 insertions(+) create mode 100644 README.md create mode 100644 sources create mode 100644 xkbcomp.spec diff --git a/.gitignore b/.gitignore index e69de29..7aa4f12 100644 --- a/.gitignore +++ b/.gitignore @@ -0,0 +1 @@ +/xkbcomp-*.tar.bz2 diff --git a/README.md b/README.md new file mode 100644 index 0000000..c0d6d8d --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +# xkbcomp + +The xkbcomp package diff --git a/sources b/sources new file mode 100644 index 0000000..39b5317 --- /dev/null +++ b/sources @@ -0,0 +1 @@ +SHA512 (xkbcomp-1.4.4.tar.bz2) = 971eb06277a49083b42154472596f1452fa94cdee28bad345bbcd85b028441bfd975763c20ed92aa69d6605b3fb23d27fee89df91501963b77c863667bae41c4 diff --git a/xkbcomp.spec b/xkbcomp.spec new file mode 100644 index 0000000..70e954d --- /dev/null +++ b/xkbcomp.spec @@ -0,0 +1,49 @@ +Name: xkbcomp +Version: 1.4.4 +Release: 1%{?dist} +Summary: XKB keymap compiler + +License: MIT +URL: https://www.x.org + +Source0: https://www.x.org/pub/individual/app/xkbcomp-%{version}.tar.bz2 + +BuildRequires: make gcc +BuildRequires: libxkbfile-devel +BuildRequires: pkgconfig(x11) +BuildRequires: pkgconfig(xorg-macros) >= 1.8 + +Obsoletes: xorg-x11-xkb-utils < 7.8 + +%description +X.Org XKB keymap compiler + +%package devel +Summary: XKB keymap compiler development package +Requires: pkgconfig +Requires: %{name}%{?_isa} = %{version}-%{release} + +%description devel +X.Org XKB keymap compiler development files + +%prep +%autosetup + +%build +%configure --disable-silent-rules +%make_build + +%install +%make_install + +%files +%license COPYING +%{_bindir}/xkbcomp +%{_mandir}/man1/xkbcomp.1* + +%files devel +%{_libdir}/pkgconfig/xkbcomp.pc + +%changelog +* Thu Nov 05 2020 Peter Hutterer 1.4.4-1 +- Split xkbcomp out from xorg-x11-xkb-utils into its own package (#1895770)