diff --git a/.gitignore b/.gitignore index 78beced..5455a1b 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1 @@ -/libX11-*.tar.xz +libX11-1.3.4.tar.bz2 diff --git a/0001-Add-XF86TouchpadOn-and-XF86TouchpadOff-to-keysymdb.patch b/0001-Add-XF86TouchpadOn-and-XF86TouchpadOff-to-keysymdb.patch new file mode 100644 index 0000000..aed31f3 --- /dev/null +++ b/0001-Add-XF86TouchpadOn-and-XF86TouchpadOff-to-keysymdb.patch @@ -0,0 +1,29 @@ +From f5b6c3f955ea7b65d2506a3c4a7111166f003704 Mon Sep 17 00:00:00 2001 +From: Peter Hutterer +Date: Tue, 22 Mar 2011 11:28:56 +1000 +Subject: [PATCH] Add XF86TouchpadOn and XF86TouchpadOff to keysymdb + +This patch isn't necessary in Xlib 1.4 and later since the keysymdb has been +made redunant. While we're on 1.3.x, we need it. + +Signed-off-by: Peter Hutterer +--- + src/XKeysymDB | 2 ++ + 1 files changed, 2 insertions(+), 0 deletions(-) + +diff --git a/src/XKeysymDB b/src/XKeysymDB +index 45d8929..28718b4 100644 +--- a/src/XKeysymDB ++++ b/src/XKeysymDB +@@ -352,6 +352,8 @@ XF86Blue :1008FFA6 + XF86Suspend :1008FFA7 + XF86Hibernate :1008FFA8 + XF86TouchpadToggle :1008FFA9 ++XF86TouchpadOn :1008FFB0 ++XF86TouchpadOff :1008FFB1 + + ! XFree86 special action keys + XF86_Switch_VT_1 :1008FE01 +-- +1.7.4 + diff --git a/54a963608d23d35cd9233b2223f880ac3671f10b.patch b/54a963608d23d35cd9233b2223f880ac3671f10b.patch new file mode 100644 index 0000000..55330a1 --- /dev/null +++ b/54a963608d23d35cd9233b2223f880ac3671f10b.patch @@ -0,0 +1,33 @@ +From 54a963608d23d35cd9233b2223f880ac3671f10b Mon Sep 17 00:00:00 2001 +From: Jamey Sharp +Date: Fri, 06 Aug 2010 22:51:56 +0000 +Subject: Fix use-after-free in _XReply on X errors. + +_XReply would always call dequeue_pending_request on errors. When it +got an error for the current request, it would call dequeue, then break +out of the loop; then, if it had an error in the event queue, it would +compare it with the sequence number of the now-freed pending request. +_XReply already stored that sequence number in dpy->last_request_read +before freeing it, so look at that instead. + +Fixes: https://bugs.freedesktop.org/show_bug.cgi?id=29412 + +Signed-off-by: Jamey Sharp +Signed-off-by: Josh Triplett +(cherry picked from commit 4b8ff7db39f2fe7ef12968d462aaf3f9054b6c18) +--- +diff --git a/src/xcb_io.c b/src/xcb_io.c +index dac7622..72881d8 100644 +--- a/src/xcb_io.c ++++ b/src/xcb_io.c +@@ -579,7 +579,7 @@ Status _XReply(Display *dpy, xReply *rep, int extra, Bool discard) + xcb_generic_event_t *event = dpy->xcb->next_event; + unsigned long event_sequence = dpy->last_request_read; + widen(&event_sequence, event->full_sequence); +- if(event_sequence == current->sequence) ++ if(event_sequence == dpy->last_request_read) + { + error = (xcb_generic_error_t *) event; + dpy->xcb->next_event = NULL; +-- +cgit v0.8.3-6-g21f6 diff --git a/commitid b/commitid index 16ddd95..a5fe5ee 100644 --- a/commitid +++ b/commitid @@ -1 +1 @@ -a3bdd2b090915fe0163b062f0e6576fe05dd332e +9da7e230d5320e1556ad2084fcd06ee7994385ea diff --git a/dont-forward-keycode-0.patch b/dont-forward-keycode-0.patch index 466c583..36d38b2 100644 --- a/dont-forward-keycode-0.patch +++ b/dont-forward-keycode-0.patch @@ -1,19 +1,6 @@ -diff -up libX11-1.6.3/modules/im/ximcp/imDefFlt.c.jx libX11-1.6.3/modules/im/ximcp/imDefFlt.c ---- libX11-1.6.3/modules/im/ximcp/imDefFlt.c.jx 2015-03-09 18:28:45.000000000 -0400 -+++ libX11-1.6.3/modules/im/ximcp/imDefFlt.c 2015-03-10 12:32:31.912149644 -0400 -@@ -143,7 +143,7 @@ _XimProtoKeypressFilter( - { - Xim im = (Xim)ic->core.im; - -- if (_XimIsFabricatedSerial(im, ev)) { -+ if ((ev->keycode == 0) || _XimIsFabricatedSerial(im, ev)) { - _XimPendingFilter(ic); - _XimUnfabricateSerial(im, ic, ev); - return NOTFILTERD; -diff -up libX11-1.6.3/modules/im/ximcp/imDefLkup.c.jx libX11-1.6.3/modules/im/ximcp/imDefLkup.c ---- libX11-1.6.3/modules/im/ximcp/imDefLkup.c.jx 2015-03-09 18:28:45.000000000 -0400 -+++ libX11-1.6.3/modules/im/ximcp/imDefLkup.c 2015-03-10 12:32:31.911149637 -0400 -@@ -333,6 +333,17 @@ _XimForwardEvent( +--- libX11-1.0.3/modules/im/ximcp/imDefLkup.c.dont-forward-keycode-0 2006-06-22 17:22:22.000000000 -0400 ++++ libX11-1.0.3/modules/im/ximcp/imDefLkup.c 2006-09-20 17:57:49.000000000 -0400 +@@ -332,6 +332,17 @@ XEvent *ev, Bool sync) { @@ -31,9 +18,9 @@ diff -up libX11-1.6.3/modules/im/ximcp/imDefLkup.c.jx libX11-1.6.3/modules/im/xi #ifdef EXT_FORWARD if (((ev->type == KeyPress) || (ev->type == KeyRelease))) if (_XimExtForwardKeyEvent(ic, (XKeyEvent *)ev, sync)) -@@ -703,6 +714,19 @@ _XimUnregRealCommitInfo( - else - ic->private.proto.commit_info = info->next; +@@ -605,6 +616,19 @@ + Xfree(info->keysym); + ic->private.proto.commit_info = info->next; Xfree(info); + + /* @@ -44,10 +31,21 @@ diff -up libX11-1.6.3/modules/im/ximcp/imDefLkup.c.jx libX11-1.6.3/modules/im/xi + * event will be ignored at _XimProtoKeypressFilter() and it + * will not be passed to IM engine. + */ -+ if (IS_FABRICATED(ic)) { -+ UNMARK_FABRICATED(ic); ++ if (IS_FABLICATED(ic)) { ++ UNMARK_FABLICATED(ic); + } + return; } +--- libX11-1.0.3/modules/im/ximcp/imDefFlt.c.dont-forward-keycode-0 2006-06-22 17:22:22.000000000 -0400 ++++ libX11-1.0.3/modules/im/ximcp/imDefFlt.c 2006-09-20 17:57:49.000000000 -0400 +@@ -147,7 +147,7 @@ + Xim im = (Xim)ic->core.im; + #endif + +- if (IS_FABLICATED(ic)) { ++ if ((ev->keycode == 0) || IS_FABLICATED(ic)) { + _XimPendingFilter(ic); + UNMARK_FABLICATED(ic); + return NOTFILTERD; diff --git a/libX11.spec b/libX11.spec index 293e8fe..25dc2f6 100644 --- a/libX11.spec +++ b/libX11.spec @@ -1,41 +1,38 @@ -%global tarball libX11 -#global gitdate 20130524 -#global gitversion a3bdd2b09 +%define tarball libX11 +#define gitdate 20090805 Summary: Core X11 protocol client library Name: libX11 -Version: 1.8.12 -Release: 2%{?gitdate:.%{gitdate}git%{gitversion}}%{?dist} -License: MIT AND X11 +Version: 1.3.4 +Release: 4%{?dist} +License: MIT +Group: System Environment/Libraries URL: http://www.x.org +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -%if 0%{?gitdate} -Source0: %{tarball}-%{gitdate}.tar.bz2 -Source1: make-git-snapshot.sh -Source2: commitid -%else -Source0: https://xorg.freedesktop.org/archive/individual/lib/%{name}-%{version}.tar.xz -%endif - +Source0: http://xorg.freedesktop.org/archive/individual/lib/%{name}-%{version}.tar.bz2 +#Source0: http://cgit.freedesktop.org/xorg/lib/libX11/snapshot/libX11-%{version}.tar.bz2 +#Source0: %{tarball}-%{gitdate}.tar.bz2 +#Source1: make-git-snapshot.sh Patch2: dont-forward-keycode-0.patch +Patch3: 54a963608d23d35cd9233b2223f880ac3671f10b.patch +Patch4: 0001-Add-XF86TouchpadOn-and-XF86TouchpadOff-to-keysymdb.patch -BuildRequires: libtool -BuildRequires: make -BuildRequires: xorg-x11-util-macros >= 1.11 +BuildRequires: xorg-x11-util-macros BuildRequires: pkgconfig(xproto) >= 7.0.15 BuildRequires: xorg-x11-xtrans-devel >= 1.0.3-4 BuildRequires: libxcb-devel >= 1.2 BuildRequires: pkgconfig(xau) pkgconfig(xdmcp) -BuildRequires: perl(Pod::Usage) -Requires: %{name}-common >= %{version}-%{release} +Requires: %{name}-common = %{version}-%{release} %description Core X11 protocol client library. %package common Summary: Common data for libX11 +Group: System Environment/Libraries BuildArch: noarch %description common @@ -43,33 +40,32 @@ libX11 common data %package devel Summary: Development files for %{name} +Group: Development/Libraries Requires: %{name} = %{version}-%{release} -Requires: %{name}-xcb = %{version}-%{release} %description devel X.Org X11 libX11 development package -%package xcb -Summary: XCB interop for libX11 -Conflicts: %{name} < %{version}-%{release} - -%description xcb -libX11/libxcb interoperability library - %prep -%autosetup -p1 -n %{tarball}-%{?gitdate:%{gitdate}}%{!?gitdate:%{version}} +%setup -q +#setup -q -n %{tarball}-%{gitdate} +%patch2 -p1 -b .dont-forward-keycode-0 +%patch3 -p1 +%patch4 -p1 %build -autoreconf -v --install --force -%configure --disable-silent-rules --disable-static +# sodding libtool +# autoreconf -v --install +%configure \ + --disable-dependency-tracking \ + --disable-static make %{?_smp_mflags} %install -make install DESTDIR=$RPM_BUILD_ROOT INSTALL="install -p" +rm -rf $RPM_BUILD_ROOT -# create/own compose cache dir -mkdir -p $RPM_BUILD_ROOT/var/cache/libX11/compose +make install DESTDIR=$RPM_BUILD_ROOT INSTALL="install -p" # We intentionally don't ship *.la files find $RPM_BUILD_ROOT -type f -name '*.la' -delete @@ -80,28 +76,28 @@ find $RPM_BUILD_ROOT -name 'Xcms.txt' -delete # FIXME package these properly rm -rf $RPM_BUILD_ROOT%{_docdir} -%check -make %{?_smp_mflags} check +%clean +rm -rf $RPM_BUILD_ROOT -%ldconfig_post -%ldconfig_postun +%post -p /sbin/ldconfig +%postun -p /sbin/ldconfig %files +%defattr(-,root,root,-) %{_libdir}/libX11.so.6 -%{_libdir}/libX11.so.6.4.0 - -%files xcb +%{_libdir}/libX11.so.6.3.0 %{_libdir}/libX11-xcb.so.1 %{_libdir}/libX11-xcb.so.1.0.0 %files common -%doc AUTHORS COPYING README.md +%defattr(-,root,root,-) +%doc AUTHORS COPYING README NEWS %{_datadir}/X11/locale/ %{_datadir}/X11/XErrorDB -%dir /var/cache/libX11 -%dir /var/cache/libX11/compose +%{_datadir}/X11/XKeysymDB %files devel +%defattr(-,root,root,-) %{_includedir}/X11/ImUtil.h %{_includedir}/X11/XKBlib.h %{_includedir}/X11/Xcms.h @@ -114,7 +110,6 @@ make %{?_smp_mflags} check %{_includedir}/X11/Xresource.h %{_includedir}/X11/Xutil.h %{_includedir}/X11/cursorfont.h -%{_includedir}/X11/extensions/XKBgeom.h %{_libdir}/libX11.so %{_libdir}/libX11-xcb.so %{_libdir}/pkgconfig/x11.pc @@ -123,238 +118,253 @@ make %{?_smp_mflags} check %{_mandir}/man5/*.5* %changelog -* Mon Dec 22 2025 Peter Hutterer - 1.8.12-2 -- Rebuild to pick up latest xorg proto keysyms (#2413818) +* Tue Mar 22 2011 Peter Hutterer 1.3.4-4 +- Add XF86TouchpadOn/Off to KeysymDB (#683950) -* Thu Jul 24 2025 Olivier Fourdan - 1.8.12-1 -- libX11 1.8.12 +* Tue Aug 10 2010 Bill Nottingham - 1.3.4-3 +- Merge upstream commit 54a96360, fixes use-after-free (fd.o 29412) -* Thu Jul 24 2025 Fedora Release Engineering - 1.8.11-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild +* Mon Jul 19 2010 Matěj Cepl - 1.3.4-2 +- don't own /usr/share/X11, filesystem owns it already (#569395) -* Mon Feb 03 2025 José Expósito - 1.8.11-1 -- libX11 1.8.11 +* Fri Jun 04 2010 Adam Jackson 1.3.4-1 +- libX11 1.3.4 -* Fri Jan 17 2025 Fedora Release Engineering - 1.8.10-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild +* Mon Apr 12 2010 Matěj Cepl - 1.3.1-3 +- Fix XCopyGC manpage (#579102) -* Thu Aug 22 2024 Florian Müllner - 1.8.10-2 -- Fix spurious Xerror when running synchronized +* Mon Oct 19 2009 Adam Jackson 1.3.1-2 +- libX11 1.3.1 -* Wed Jul 31 2024 José Expósito - 1.8.10-1 -- libX11 1.8.10 +* Tue Oct 06 2009 Peter Hutterer 1.3-1 +- libX11 1.3 -* Thu Jul 18 2024 Fedora Release Engineering - 1.8.9-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild +* Thu Aug 13 2009 Parag 1.2.99-5.20090805 +- Merge-review cleanups #226062 -* Mon Apr 08 2024 José Expósito - 1.8.9-1 -- libX11 1.8.9 +* Thu Aug 06 2009 Peter Hutterer 1.2.99-4.20090805 +- Today's git snapshot +- minor soname bump to 6.3.0 -* Mon Apr 01 2024 José Expósito - 1.8.8-1 -- libX11 1.8.8 +* Fri Jul 24 2009 Fedora Release Engineering - 1.2.99-3.20090712 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild -* Thu Jan 25 2024 Fedora Release Engineering - 1.8.7-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild +* Thu Jul 23 2009 Adam Jackson 1.2.99-2.20090712 +- Un-require xorg-x11-filesystem +- Remove useless %%dir -* Sun Jan 21 2024 Fedora Release Engineering - 1.8.7-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild +* Sun Jul 12 2009 Peter Hutterer 1.2.99-1.20090712 +- Today's git snapshot +- libX11-1.2.1-indic.patch: Drop. -* Wed Oct 04 2023 Peter Hutterer - 1.8.7-1 -- libX11 1.8.7 - - CVE-2023-43785 libX11: out-of-bounds memory access in _XkbReadKeySyms() - - CVE-2023-43786 libX11: stack exhaustion from infinite recursion in - PutSubImage() - - CVE-2023-43787 libX11: integer overflow in XCreateImage() leading to - a heap overflow - - CVE-2023-43788 libXpm: out of bounds read in XpmCreateXpmImageFromBuffer() - - CVE-2023-43789 libXpm: out of bounds read on XPM with corrupted colormap +* Mon Jul 06 2009 Adam Jackson 1.2.1-3 +- -common subpackage -* Thu Sep 07 2023 José Expósito - 1.8.6-3 -- SPDX Migration +* Tue May 26 2009 Peter Hutterer - 1.2.1-2 +- libX11-1.2.1-indic.patch: Add new Indic language information to nls + directory files (#497971) -* Thu Jul 20 2023 Fedora Release Engineering - 1.8.6-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild +* Tue May 26 2009 Peter Hutterer - 1.2.1-1 +- libX11 1.2.1 -* Fri Jun 16 2023 Peter Hutterer - 1.8.6-1 -- libX11 1.8.6 (CVE-2023-3138) +* Wed Feb 25 2009 Fedora Release Engineering - 1.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild -* Mon Jun 05 2023 Peter Hutterer 1.8.5-1 -- libX11 1.8.5 +* Sat Feb 21 2009 Adam Jackson 1.2-2 +- Merge review cleanups. (#226062) -* Wed Feb 08 2023 Peter Hutterer - 1.8.4-1 -- libX11 1.8.4 +* Wed Feb 18 2009 Adam Jackson 1.2-1 +- libX11 1.2 -* Thu Jan 19 2023 Fedora Release Engineering - 1.8.3-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild +* Wed Feb 04 2009 Adam Jackson 1.1.99.2-4 +- libX11-1.1.99.2-compose-updates.patch: Update compose sequences (from git) -* Mon Jan 16 2023 Peter Hutterer - 1.8.3-2 -- Fix XPutBackEvent() issues (#2161020) +* Mon Feb 02 2009 Caolán McNamara 1.1.99.2-3 +- Resolves: rhbz#477174 don't hang in OOo, acroread, ekiga, xine, etc. -* Fri Jan 06 2023 Peter Hutterer - 1.8.3-1 -- libX11 1.8.3 +* Thu Dec 18 2008 Adam Jackson 1.1.99.2-2 +- BR: util-macros -* Thu Jul 21 2022 Fedora Release Engineering - 1.8.1-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild +* Thu Dec 18 2008 Adam Jackson 1.1.99.2-1 +- libX11 1.1.99.2 -* Thu Jun 16 2022 Peter Hutterer - 1.8.1-1 -- libX11 1.8.1 +* Tue Nov 18 2008 Peter Hutterer 1.1.4-6 +- libX11-1.1.4-XF86Suspend.patch: add XF86Suspend and XF86Hibernate keysyms. -* Mon Apr 04 2022 Peter Hutterer - 1.7.5-1 -- libX11 1.7.5 +* Fri Oct 24 2008 Peter Hutterer 1.1.4-5 +- libX11-1.1.4-keysysm.patch: add a bunch of keysyms for remote controls and + special keys. -* Thu Mar 31 2022 Peter Hutterer - 1.7.4-1 -- libX11 1.7.4 +* Wed Sep 17 2008 Adam Jackson 1.1.4-4 +- libX11-1.1.4-xcb-xreply-leak.patch: Fix the BadFont case. -* Thu Jan 20 2022 Fedora Release Engineering - 1.7.3.1-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild +* Wed Sep 17 2008 Adam Jackson 1.1.4-3 +- libX11-1.1.4-xcb-xreply-leak.patch: Fix a leak when the client has a + non-fatal error handler. (mclasen, fdo #17616) -* Fri Dec 10 2021 Peter Hutterer - 1.7.3.1-1 -- libX11 1.7.3.1 +* Tue Jul 15 2008 Adam Jackson 1.1.4-2 +- Fix license tag. -* Tue Dec 07 2021 Peter Hutterer - 1.7.3-1 -- libX11 1.7.3 -- manually add ax_gcc_builtin, it's missing from the tarball +* Thu Mar 06 2008 Adam Jackson 1.1.4-1 +- libX11 1.1.4 -* Tue Jul 27 2021 Peter Hutterer - 1.7.2-3 -- Parse the new _EVDEVK symbols +* Tue Feb 19 2008 Fedora Release Engineering - 1.1.3-5 +- Autorebuild for GCC 4.3 -* Thu Jul 22 2021 Fedora Release Engineering - 1.7.2-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild +* Fri Oct 19 2007 Kristian Høgsberg - 1.1.3-4 +- Add patch from upstream to add keysyms for brightness buttons (#330491). -* Wed Jun 09 2021 Peter Hutterer 1.7.2-1 -- libX11 1.7.2 +* Tue Oct 16 2007 Adam Jackson 1.1.3-3 +- libX11-devel Requires: libxcb-devel. -* Tue May 18 2021 Adam Jackson - 1.7.1-1 -- libX11 1.7.1 (CVE-2021-31535) +* Wed Oct 10 2007 Adam Jackson 1.1.3-2 +- libX11-1.1.3-xkb-lock-fix.patch: Don't LockDisplay() recursively. Fixes + Gnome hang at logout. (#326461) -* Tue Jan 26 2021 Fedora Release Engineering - 1.7.0-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild +* Mon Sep 24 2007 Adam Jackson 1.1.3-1 +- libX11 1.1.3 -* Tue Dec 01 2020 Peter Hutterer 1.7.0-2 -- libX11 1.7.0 (with the tarball this time) +* Thu Sep 20 2007 Adam Jackson 1.1.2-4 +- Update xtrans dep and rebuild. -* Tue Dec 01 2020 Peter Hutterer 1.7.0-1 -- libX11 1.7.0 -- switch to using the autosetup rpm macro +* Mon Sep 17 2007 Adam Jackson 1.1.2-3 +- libX11-1.1.2-GetMotionEvents.patch: Fix the definition of XGetMotionEvents + to match the argument order in the headers. (#274671) -* Mon Nov 09 2020 Peter Hutterer 1.6.12-3 -- Fix a race-condition in poll_for_response (#1758384) +* Tue Aug 21 2007 Adam Jackson - 1.1.2-2 +- Rebuild for build id -* Thu Nov 5 11:12:56 AEST 2020 Peter Hutterer - 1.6.12-2 -- Add BuildRequires for make +* Mon Jul 23 2007 Adam Jackson 1.1.2-1 +- libX11 1.1.2. +- Enable XCB for libX11 transport. -* Wed Aug 26 2020 Peter Hutterer 1.6.12-1 -- libX11 1.6.12 (CVE-2020-14363, CVE 2020-14344) +* Sat Apr 21 2007 Matthias Clasen 1.0.3-9 +- Don't install INSTALL -* Fri Jul 31 2020 Adam Jackson - 1.6.9-5 -- Fix server reply validation issue in XIM (CVE 2020-14344) +* Fri Apr 06 2007 Adam Jackson 1.0.3-8 +- Fix for CVE 2007-1667. -* Tue Jul 28 2020 Fedora Release Engineering - 1.6.9-4 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild +* Mon Jan 29 2007 Adam Jackson 1.0.3-7 +- Fix xim fd leak. -* Wed Jan 29 2020 Fedora Release Engineering - 1.6.9-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild +* Thu Nov 09 2006 Caius Chance 1.0.3-6.fc7 +- Fix XIM hangs when switching input context (Soren Sandmann, #201284) -* Wed Dec 11 2019 Peter Hutterer 1.6.9-2 -- handle ssharp in XConvertCase +* Fri Oct 13 2006 Kristian Høgsberg 1.0.3-5.fc7 +- Add pkgconfig dependency for -devel package. -* Wed Oct 09 2019 Adam Jackson - 1.6.9-1 -- libX11 1.6.9 +* Sat Sep 30 2006 Soren Sandmann 1.0.3-4.fc6 +- Fix patch so it actually applies. (#208508) -* Thu Jul 25 2019 Fedora Release Engineering - 1.6.8-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild +* Sat Sep 30 2006 Soren Sandmann 1.0.3-4.fc6 +- Fix typos in patch for indic locales (#208580) -* Thu Jun 20 2019 Peter Hutterer 1.6.8-2 -- rebuild to pick up the new xorgproto keysyms +* Wed Sep 20 2006 Soren Sandmann 1.0.3-3.fc6 +- Add patch to not forward keycode 0 (#194357). -* Thu Jun 20 2019 Peter Hutterer 1.6.8-1 -- libX11 1.6.8 +* Wed Jul 19 2006 Mike A. Harris 1.0.3-2.fc6 +- Added libX11-nls-indic-locales-bug185376.patch to add support for various + indic locales which have now been committed upstream (#185376) -* Thu Mar 21 2019 Adam Jackson - 1.6.7-3 -- Rebuild for xtrans 1.4.0 +* Wed Jul 12 2006 Jesse Keating 1.0.3-1.1.fc6 +- rebuild -* Fri Feb 01 2019 Fedora Release Engineering - 1.6.7-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild +* Mon Jul 10 2006 Mike A. Harris 1.0.3-1.fc6 +- Updated libX11 to version 1.0.3 +- Remove libX11-1.0.1-setuid.diff as it is included in the 1.0.3 release. +- Added 'dist' tag to "Release:" -* Tue Oct 09 2018 Adam Jackson - 1.6.7-1 -- libX11 1.6.7 +* Wed Jun 28 2006 Mike A. Harris 1.0.2-1 +- Updated libX11 to version 1.0.2 +- Bump BuildRequires and Requires to "xorg-x11-proto-devel >= 7.1-2" to meet + new "xproto >= 7.0.6" dependency. +- Disable libX11-0.99.3-datadir-locale-dir-fix.patch as it is now included + upstream. +- Remove autoconf dependency as we no longer need it. -* Tue Aug 21 2018 Adam Jackson - 1.6.6-1 -- libX11 1.6.6 +* Tue Jun 20 2006 Mike A. Harris 1.0.1-3 +- Added libX11-1.0.1-setuid.diff to fix potential security issue (#196094) +- Change dependency on "filesystem" package to "xorg-x11-filesystem" package, + so we can control this dep centrally. +- Added NEWS to doc list. -* Fri Jul 13 2018 Fedora Release Engineering - 1.6.5-9 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild +* Wed Jun 07 2006 Mike A. Harris 1.0.1-2 +- Remove package ownership of mandir/libdir/etc. -* Fri Jun 29 2018 Adam Jackson - 1.6.5-8 -- Use ldconfig scriptlet macros +* Fri May 12 2006 Adam Jackson 1.0.1-1 +- Bump to 1.0.1 -* Fri Mar 23 2018 Peter Hutterer 1.6.5-7 -- Fix FTBS caused by fake size in the XimCacheStruct (#1556616) +* Thu Feb 23 2006 Christopher Aillon 1.0.0-3 +- Look for the versioned libXcursor.so.1 (fixes 179044) -* Wed Feb 07 2018 Fedora Release Engineering - 1.6.5-6 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild +* Fri Feb 10 2006 Jesse Keating 1.0.0-2.2 +- bump again for double-long bug on ppc(64) -* Tue Oct 17 2017 Peter Hutterer 1.6.5-5 -- run make check as part of the build (#1502658) +* Tue Feb 07 2006 Jesse Keating 1.0.0-2.1 +- rebuilt for new gcc4.1 snapshot and glibc changes -* Tue Aug 01 2017 Adam Jackson - 1.6.5-4 -- Split libX11-xcb to its own subpackage. This doesn't have much effect at - the moment because x11-xcb.pc still lists both libX11 and libxcb in - Requires, but once that's fixed eg. libEGL should be able to be installed - without libX11. +* Sat Dec 24 2005 Mike A. Harris 1.0.0-2 +- Added "Requires: libXau-devel, libXdmcp-devel" to -devel subpackage (#176313) -* Wed Jul 26 2017 Fedora Release Engineering - 1.6.5-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild +* Fri Dec 16 2005 Mike A. Harris 1.0.0-1 +- Updated libX11 to version 1.0.0 from X11R7 RC4 -* Fri May 12 2017 Hans de Goede - 1.6.5-2 -- Rebuild against new xproto to pick up support for new keysyms +* Tue Dec 13 2005 Mike A. Harris 0.99.4-1 +- Updated libX11 to version 0.99.4 from X11R7 RC3 +- Added "Requires(pre): xorg-x11-filesystem >= 0.99.2-3", to ensure + that /usr/lib/X11 and /usr/include/X11 pre-exist. +- Removed 'x' suffix from manpage directories to match RC3 upstream. -* Wed Apr 26 2017 Adam Jackson - 1.6.5-1 -- libX11 1.6.5 +* Fri Dec 09 2005 Jesse Keating +- rebuilt -* Thu Feb 16 2017 Rex Dieter - 1.6.4-6 -- create/own /var/cache/libx11/compose (#962764) -- %%build: --disable-silent-rules +* Tue Nov 22 2005 Mike A. Harris 0.99.3-4 +- Added libX11-0.99.3-datadir-locale-dir-fix.patch, to fix build to install + the locale data files into datadir instead of libdir. (#173282) -* Fri Feb 10 2017 Fedora Release Engineering - 1.6.4-5 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild +* Mon Nov 14 2005 Jeremy Katz 0.99.3-3 +- require newer filesystem package (#172610) -* Fri Jan 20 2017 Peter Hutterer 1.6.4-4 -- Actually apply the patch from 1.6.4-3 +* Fri Nov 11 2005 Mike A. Harris 0.99.3-2 +- Moved _smp_mflags from 'make install' to 'make' invocation, duh. -* Mon Jan 09 2017 Peter Hutterer 1.6.4-3 -- Fix a bug in the memory leak fix from 1.6.4-2 +* Fri Nov 11 2005 Mike A. Harris 0.99.3-1 +- Updated libX11 to version 0.99.3 from X11R7 RC2 +- Changed 'Conflicts: XFree86-devel, xorg-x11-devel' to 'Obsoletes' +- Changed 'Conflicts: XFree86-libs, xorg-x11-libs' to 'Obsoletes' -* Thu Jan 05 2017 Peter Hutterer 1.6.4-2 -- Plug a memory leak in XListFonts() +* Mon Nov 07 2005 Mike A. Harris 0.99.2-2 +- Fix devel subpackage summary and description with s/libXdmcp/libX11/ -* Wed Oct 05 2016 Adam Jackson - 1.6.4-1 -- libX11 1.6.4 +* Fri Oct 21 2005 Mike A. Harris 0.99.2-1 +- Updated to libX11-0.99.2 from the X11R7 RC1 release. +- Added en_GR.UTF-8 locale to file manifest. +- Forcibly remove Xcms.txt -* Thu Feb 04 2016 Fedora Release Engineering - 1.6.3-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild +* Sun Oct 02 2005 Mike A. Harris 0.99.0-4 +- Added _smp_mflags to make invocation to speed up SMP builds -* Thu Jan 28 2016 Peter Hutterer -- Remove unnecessary defattr - -* Wed Jun 17 2015 Fedora Release Engineering - 1.6.3-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild - -* Tue Mar 10 2015 Adam Jackson 1.6.3-1 -- libX11 1.6.3 - -* Sun Aug 17 2014 Fedora Release Engineering - 1.6.2-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild - -* Mon Jun 30 2014 Adam Jackson 1.6.2-1 -- libX11 1.6.2 plus a fix for interleaved xcb/xlib usage -- Use >= for the -common Requires - -* Sat Jun 07 2014 Fedora Release Engineering - 1.6.1-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild - -* Tue Jul 30 2013 Peter Hutterer 1.6.1-1 -- libX11 1.6.1 - -* Tue Jun 04 2013 Peter Hutterer 1.6.0-1 -- libX11 1.6.0 +* Thu Sep 29 2005 Mike A. Harris 0.99.0-3 +- Renamed package to remove xorg-x11 from the name due to unanimous decision + between developers. +- Use Fedora Extras style BuildRoot tag. +- Disable static library creation by default. +- Add missing defattr to devel subpackage +- Add missing documentation files to doc macro + +* Tue Aug 23 2005 Mike A. Harris 0.99.0-2 +- Renamed package to prepend "xorg-x11" to the name for consistency with + the rest of the X11R7 packages. +- Added "Requires: %%{name} = %%{version}-%%{release}" dependency to devel + subpackage to ensure the devel package matches the installed shared libs. +- Added virtual "Provides: lib" and "Provides: lib-devel" to + allow applications to use implementation agnostic dependencies. +- Added post/postun scripts which call ldconfig. +- Added Conflicts with XFree86-libs and xorg-x11-libs to runtime package, + and Conflicts with XFree86-devel and xorg-x11-devel to devel package. + +* Mon Aug 22 2005 Mike A. Harris 0.99.0-1.1 +- Added Requires: xorg-x11-proto-devel to libX11-devel subpackage + +* Mon Aug 22 2005 Mike A. Harris 0.99.0-1 +- Initial build. diff --git a/sources b/sources index 295b411..d83e65e 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (libX11-1.8.12.tar.xz) = cb7a284d9081a8b67f7d8568d56dc403a4b787e46ac497b07768d236084c01f80f4ea2ebd814f950ac9738adc3baea3912932fc333858195c4f8217744b6f730 +f65c9c7ecbfb64c19dbd7927160d63fd libX11-1.3.4.tar.bz2