Compare commits
No commits in common. "c9s" and "c8s" have entirely different histories.
2
.gitignore
vendored
2
.gitignore
vendored
@ -1 +1 @@
|
|||||||
/xcb-util-keysyms-*.tar.bz2
|
/xcb-util-keysyms-0.4.0.tar.bz2
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
--- !Policy
|
--- !Policy
|
||||||
product_versions:
|
product_versions:
|
||||||
- rhel-9
|
- rhel-8
|
||||||
decision_context: osci_compose_gate
|
decision_context: osci_compose_gate
|
||||||
rules:
|
rules:
|
||||||
- !PassingTestCaseRule {test_case_name: desktop-qe.desktop-ci.tier1-gating.functional}
|
- !PassingTestCaseRule {test_case_name: desktop-qe.desktop-ci.tier1-gating.functional}
|
||||||
|
2
sources
2
sources
@ -1 +1 @@
|
|||||||
1022293083eec9e62d5659261c29e367 xcb-util-keysyms-0.4.0.tar.bz2
|
SHA512 (xcb-util-keysyms-0.4.0.tar.bz2) = b14b3100c3ae2379f9df799c0780a1ee39267101e58e4c1c6f390f039348ca2b370bb1df203b9bc68a170d664188d9c73e3553a7ba24d98abea3ed353e8dc0c4
|
||||||
|
@ -1,12 +1,11 @@
|
|||||||
Name: xcb-util-keysyms
|
Name: xcb-util-keysyms
|
||||||
Version: 0.4.0
|
Version: 0.4.0
|
||||||
Release: 17%{?dist}
|
Release: 7%{?dist}
|
||||||
Summary: Standard X key constants and keycodes conversion on top of libxcb
|
Summary: Standard X key constants and keycodes conversion on top of libxcb
|
||||||
|
Group: System Environment/Libraries
|
||||||
License: MIT
|
License: MIT
|
||||||
URL: http://xcb.freedesktop.org
|
URL: http://xcb.freedesktop.org
|
||||||
Source0: http://xcb.freedesktop.org/dist/%{name}-%{version}.tar.bz2
|
Source0: http://xcb.freedesktop.org/dist/%{name}-%{version}.tar.bz2
|
||||||
BuildRequires: make
|
|
||||||
BuildRequires: gcc
|
|
||||||
BuildRequires: pkgconfig(xcb-util) >= 0.3.8
|
BuildRequires: pkgconfig(xcb-util) >= 0.3.8
|
||||||
BuildRequires: m4
|
BuildRequires: m4
|
||||||
|
|
||||||
@ -18,6 +17,7 @@ XCB util-keysyms module provides the following library:
|
|||||||
|
|
||||||
%package devel
|
%package devel
|
||||||
Summary: Development and header files for xcb-util-keysyms
|
Summary: Development and header files for xcb-util-keysyms
|
||||||
|
Group: System Environment/Libraries
|
||||||
Requires: %{name}%{?_isa} = %{version}-%{release}
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
||||||
|
|
||||||
%description devel
|
%description devel
|
||||||
@ -30,7 +30,7 @@ Development files for xcb-util-keysyms.
|
|||||||
|
|
||||||
%build
|
%build
|
||||||
%configure --with-pic --disable-static --disable-silent-rules
|
%configure --with-pic --disable-static --disable-silent-rules
|
||||||
%make_build
|
make %{?_smp_mflags}
|
||||||
|
|
||||||
|
|
||||||
%check
|
%check
|
||||||
@ -38,14 +38,14 @@ make check
|
|||||||
|
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%make_install
|
make install DESTDIR=%{buildroot} INSTALL="install -p"
|
||||||
rm %{buildroot}%{_libdir}/*.la
|
rm %{buildroot}%{_libdir}/*.la
|
||||||
|
|
||||||
|
|
||||||
%ldconfig_post
|
%post -p /sbin/ldconfig
|
||||||
|
|
||||||
|
|
||||||
%ldconfig_postun
|
%postun -p /sbin/ldconfig
|
||||||
|
|
||||||
|
|
||||||
%files
|
%files
|
||||||
@ -61,38 +61,6 @@ rm %{buildroot}%{_libdir}/*.la
|
|||||||
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
* Tue Aug 10 2021 Mohan Boddu <mboddu@redhat.com> - 0.4.0-17
|
|
||||||
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
|
|
||||||
Related: rhbz#1991688
|
|
||||||
|
|
||||||
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 0.4.0-16
|
|
||||||
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
|
|
||||||
|
|
||||||
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.4.0-15
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
|
||||||
|
|
||||||
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.4.0-14
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
|
||||||
|
|
||||||
* Tue Jul 14 2020 Tom Stellard <tstellar@redhat.com> - 0.4.0-13
|
|
||||||
- Use make macros
|
|
||||||
- https://fedoraproject.org/wiki/Changes/UseMakeBuildInstallMacro
|
|
||||||
|
|
||||||
* Fri Jan 31 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.4.0-12
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
|
||||||
|
|
||||||
* Sat Jul 27 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.4.0-11
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
|
||||||
|
|
||||||
* Sun Feb 03 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.4.0-10
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
|
||||||
|
|
||||||
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.4.0-9
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
||||||
|
|
||||||
* Fri Jun 29 2018 Thomas Moschny <thomas.moschny@gmx.de> - 0.4.0-8
|
|
||||||
- Use ldconfig scriptlet macros.
|
|
||||||
|
|
||||||
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.4.0-7
|
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.4.0-7
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user