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
This commit is contained in:
Troy Dawson 2020-11-18 14:05:57 -08:00
parent 8031b39616
commit 7c7204d9aa
4 changed files with 54 additions and 0 deletions

1
.gitignore vendored
View File

@ -0,0 +1 @@
/xkbcomp-*.tar.bz2

3
README.md Normal file
View File

@ -0,0 +1,3 @@
# xkbcomp
The xkbcomp package

1
sources Normal file
View File

@ -0,0 +1 @@
SHA512 (xkbcomp-1.4.4.tar.bz2) = 971eb06277a49083b42154472596f1452fa94cdee28bad345bbcd85b028441bfd975763c20ed92aa69d6605b3fb23d27fee89df91501963b77c863667bae41c4

49
xkbcomp.spec Normal file
View File

@ -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 <peter.hutterer@redhat.com> 1.4.4-1
- Split xkbcomp out from xorg-x11-xkb-utils into its own package (#1895770)