diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..b524cec
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1 @@
+SOURCES/libX11-1.6.7.tar.bz2
diff --git a/.libX11.metadata b/.libX11.metadata
new file mode 100644
index 0000000..6a78a77
--- /dev/null
+++ b/.libX11.metadata
@@ -0,0 +1 @@
+5076f7853713d7db958a05f6fd1c18f7e111a0ad SOURCES/libX11-1.6.7.tar.bz2
diff --git a/SOURCES/0001-_XDefaultIOError-Reformat-to-be-less-ugly.patch b/SOURCES/0001-_XDefaultIOError-Reformat-to-be-less-ugly.patch
new file mode 100644
index 0000000..6f5c89f
--- /dev/null
+++ b/SOURCES/0001-_XDefaultIOError-Reformat-to-be-less-ugly.patch
@@ -0,0 +1,56 @@
+From 6d2cde9633b5ee020cb60caea1cf61e090b86dd2 Mon Sep 17 00:00:00 2001
+From: Adam Jackson <ajax@redhat.com>
+Date: Fri, 24 Mar 2017 11:07:35 -0400
+Subject: [PATCH 1/2] _XDefaultIOError: Reformat to be less ugly
+
+Signed-off-by: Adam Jackson <ajax@redhat.com>
+Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
+---
+ src/XlibInt.c | 26 +++++++++++++-------------
+ 1 file changed, 13 insertions(+), 13 deletions(-)
+
+diff --git a/src/XlibInt.c b/src/XlibInt.c
+index 73afe024..903e47f3 100644
+--- a/src/XlibInt.c
++++ b/src/XlibInt.c
+@@ -1243,24 +1243,24 @@ _X_NORETURN int _XDefaultIOError(
+ 	Display *dpy)
+ {
+ 	if (ECHECK(EPIPE)) {
+-	    (void) fprintf (stderr,
+-	"X connection to %s broken (explicit kill or server shutdown).\r\n",
+-			    DisplayString (dpy));
++	    fprintf (stderr,
++                     "X connection to %s broken (explicit kill or server shutdown).\r\n",
++                     DisplayString (dpy));
+ 	} else {
+-	    (void) fprintf (stderr,
+-			"XIO:  fatal IO error %d (%s) on X server \"%s\"\r\n",
++            fprintf (stderr,
++                     "XIO:  fatal IO error %d (%s) on X server \"%s\"\r\n",
+ #ifdef WIN32
+-			WSAGetLastError(), strerror(WSAGetLastError()),
++                      WSAGetLastError(), strerror(WSAGetLastError()),
+ #else
+-			errno, strerror (errno),
++                      errno, strerror (errno),
+ #endif
+-			DisplayString (dpy));
+-	    (void) fprintf (stderr,
+-	 "      after %lu requests (%lu known processed) with %d events remaining.\r\n",
+-			NextRequest(dpy) - 1, LastKnownRequestProcessed(dpy),
+-			QLength(dpy));
++                      DisplayString (dpy));
++	    fprintf (stderr,
++		     "      after %lu requests (%lu known processed) with %d events remaining.\r\n",
++		     NextRequest(dpy) - 1, LastKnownRequestProcessed(dpy),
++		     QLength(dpy));
++        }
+ 
+-	}
+ 	exit(1);
+ 	/*NOTREACHED*/
+ }
+-- 
+2.21.0
+
diff --git a/SOURCES/0002-_XDefaultIOError-Do-better-at-detecting-explicit-shu.patch b/SOURCES/0002-_XDefaultIOError-Do-better-at-detecting-explicit-shu.patch
new file mode 100644
index 0000000..c75c1d8
--- /dev/null
+++ b/SOURCES/0002-_XDefaultIOError-Do-better-at-detecting-explicit-shu.patch
@@ -0,0 +1,79 @@
+From 5538b3e4ae6dee32c47db9dfc85b07bbe7b90f6c Mon Sep 17 00:00:00 2001
+From: Adam Jackson <ajax@redhat.com>
+Date: Fri, 24 Mar 2017 11:07:36 -0400
+Subject: [PATCH 2/2] _XDefaultIOError: Do better at detecting explicit
+ shutdown
+
+Currently, when the X server crashes or a client is disconnected with
+XKillClient, you get a somewhat confusing error message from libX11
+along the lines of:
+
+XIO:  fatal IO error 11 (Resource temporarily unavailable) on X server ":0"
+      after 98 requests (40 known processed) with 0 events remaining.
+
+What's happening here is the previous recvmsg has thrown EAGAIN, since
+the socket is non-blocking. In this case, check whether the socket has
+any more data to read, and if not treat it like EPIPE.
+
+Signed-off-by: Adam Jackson <ajax@redhat.com>
+---
+ src/XlibInt.c | 29 ++++++++++++++++++++++++++++-
+ 1 file changed, 28 insertions(+), 1 deletion(-)
+
+diff --git a/src/XlibInt.c b/src/XlibInt.c
+index 903e47f3..dd39445b 100644
+--- a/src/XlibInt.c
++++ b/src/XlibInt.c
+@@ -50,6 +50,8 @@ from The Open Group.
+ #ifdef XTHREADS
+ #include "locking.h"
+ 
++#include <sys/ioctl.h>
++
+ /* these pointers get initialized by XInitThreads */
+ LockInfoPtr _Xglobal_lock = NULL;
+ void (*_XCreateMutex_fn)(LockInfoPtr) = NULL;
+@@ -1234,6 +1236,21 @@ _XWireToEvent(
+ 	return(True);
+ }
+ 
++static int
++SocketBytesReadable(Display *dpy)
++{
++    int bytes = 0, last_error;
++#ifdef WIN32
++    last_error = WSAGetLastError();
++    ioctlsocket(ConnectionNumber(dpy), FIONREAD, &bytes);
++    WSASetLastError(last_error);
++#else
++    last_error = errno;
++    ioctl(ConnectionNumber(dpy), FIONREAD, &bytes);
++    errno = last_error;
++#endif
++    return bytes;
++}
+ 
+ /*
+  * _XDefaultIOError - Default fatal system error reporting routine.  Called
+@@ -1242,7 +1259,17 @@ _XWireToEvent(
+ _X_NORETURN int _XDefaultIOError(
+ 	Display *dpy)
+ {
+-	if (ECHECK(EPIPE)) {
++	int killed = ECHECK(EPIPE);
++
++	/*
++	 * If the socket was closed on the far end, the final recvmsg in
++	 * xcb will have thrown EAGAIN because we're non-blocking. Detect
++	 * this to get the more informative error message.
++	 */
++	if (ECHECK(EAGAIN) && SocketBytesReadable(dpy) <= 0)
++	    killed = True;
++
++	if (killed) {
+ 	    fprintf (stderr,
+                      "X connection to %s broken (explicit kill or server shutdown).\r\n",
+                      DisplayString (dpy));
+-- 
+2.21.0
+
diff --git a/SOURCES/dont-forward-keycode-0.patch b/SOURCES/dont-forward-keycode-0.patch
new file mode 100644
index 0000000..c16d874
--- /dev/null
+++ b/SOURCES/dont-forward-keycode-0.patch
@@ -0,0 +1,53 @@
+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
+@@ -142,7 +142,7 @@ _XimProtoKeypressFilter(
+ {
+     Xim		im = (Xim)ic->core.im;
+ 
+-    if (IS_FABRICATED(im)) {
++    if ((ev->keycode == 0) || IS_FABRICATED(im)) {
+ 	_XimPendingFilter(ic);
+ 	UNMARK_FABRICATED(im);
+ 	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
+@@ -332,6 +332,17 @@ _XimForwardEvent(
+     XEvent	*ev,
+     Bool	 sync)
+ {
++    /*
++     * Don't forward a key event which has keycode=0.
++     * keycode=0 is reserved for special purpose to let Xmb/wcLookupString()
++     * functions know that there is a commited string available from IM.
++     */
++    if (((ev->type == KeyPress) || (ev->type == KeyRelease))) {
++        if (((XKeyEvent *)ev)->keycode == 0) {
++            return True;
++        }
++    }
++
+ #ifdef EXT_FORWARD
+     if (((ev->type == KeyPress) || (ev->type == KeyRelease)))
+ 	if (_XimExtForwardKeyEvent(ic, (XKeyEvent *)ev, sync))
+@@ -604,6 +615,19 @@ _XimUnregCommitInfo(
+     Xfree(info->keysym);
+     ic->private.proto.commit_info = info->next;
+     Xfree(info);
++
++    /*
++     * "Commit" uses fabricated flag to process a commited string
++     * from IM engine.  
++     * Turn off the fabricated flag here (unregister the commited
++     * information function). Otherwise, next regular key press
++     * event will be ignored at _XimProtoKeypressFilter() and it
++     * will not be passed to IM engine.
++     */
++    if (IS_FABRICATED(ic)) {
++        UNMARK_FABRICATED(ic);
++    }
++
+     return;
+ }
+ 
diff --git a/SPECS/libX11.spec b/SPECS/libX11.spec
new file mode 100644
index 0000000..a979050
--- /dev/null
+++ b/SPECS/libX11.spec
@@ -0,0 +1,486 @@
+%global tarball libX11
+#global gitdate 20130524
+%global gitversion a3bdd2b09
+
+Summary: Core X11 protocol client library
+Name: libX11
+Version: 1.6.7
+Release: 2%{?gitdate:.%{gitdate}git%{gitversion}}%{?dist}
+License: MIT
+Group: System Environment/Libraries
+URL: http://www.x.org
+
+%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.bz2
+%endif
+
+Patch2: dont-forward-keycode-0.patch
+Patch3: 0001-_XDefaultIOError-Reformat-to-be-less-ugly.patch
+Patch4: 0002-_XDefaultIOError-Do-better-at-detecting-explicit-shu.patch
+
+BuildRequires: xorg-x11-util-macros >= 1.11
+BuildRequires: pkgconfig(xproto) >= 7.0.15
+BuildRequires: xorg-x11-xtrans-devel >= 1.0.3-4
+BuildRequires: libxcb-devel >= 1.11-4
+BuildRequires: pkgconfig(xau) pkgconfig(xdmcp)
+BuildRequires: perl(Pod::Usage)
+
+Requires: %{name}-common >= %{version}-%{release}
+Conflicts: libxcb < 1.11-4
+
+%description
+Core X11 protocol client library.
+
+%package common
+Summary: Common data for libX11
+Group: System Environment/Libraries
+BuildArch: noarch
+
+%description common
+libX11 common data
+
+%package devel
+Summary: Development files for %{name}
+Group: Development/Libraries
+Requires: %{name} = %{version}-%{release}
+
+%description devel
+X.Org X11 libX11 development package
+
+%prep
+%setup -q -n %{tarball}-%{?gitdate:%{gitdate}}%{!?gitdate:%{version}}
+%patch2 -p1 -b .dont-forward-keycode-0
+%patch3 -p1 -b .reformat
+%patch4 -p1 -b .shutdown
+
+%build
+autoreconf -v --install --force
+%configure --disable-static
+
+make %{?_smp_mflags}
+
+%install
+rm -rf $RPM_BUILD_ROOT
+
+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
+
+# FIXME: Don't install Xcms.txt - find out why upstream still ships this.
+find $RPM_BUILD_ROOT -name 'Xcms.txt' -delete
+
+# FIXME package these properly
+rm -rf $RPM_BUILD_ROOT%{_docdir}
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%post -p /sbin/ldconfig
+%postun -p /sbin/ldconfig
+
+%files
+%{_libdir}/libX11.so.6
+%{_libdir}/libX11.so.6.3.0
+%{_libdir}/libX11-xcb.so.1
+%{_libdir}/libX11-xcb.so.1.0.0
+
+%files common
+%doc AUTHORS COPYING README NEWS
+%{_datadir}/X11/locale/
+%{_datadir}/X11/XErrorDB
+
+%files devel
+%{_includedir}/X11/ImUtil.h
+%{_includedir}/X11/XKBlib.h
+%{_includedir}/X11/Xcms.h
+%{_includedir}/X11/Xlib.h
+%{_includedir}/X11/XlibConf.h
+%{_includedir}/X11/Xlibint.h
+%{_includedir}/X11/Xlib-xcb.h
+%{_includedir}/X11/Xlocale.h
+%{_includedir}/X11/Xregion.h
+%{_includedir}/X11/Xresource.h
+%{_includedir}/X11/Xutil.h
+%{_includedir}/X11/cursorfont.h
+%{_libdir}/libX11.so
+%{_libdir}/libX11-xcb.so
+%{_libdir}/pkgconfig/x11.pc
+%{_libdir}/pkgconfig/x11-xcb.pc
+%{_mandir}/man3/*.3*
+%{_mandir}/man5/*.5*
+
+%changelog
+* Tue May 28 2019 Adam Jackson <ajax@redhat.com> - 1.6.7-2
+- Restore the less-alarming server-disconnect message
+
+* Mon Apr 15 2019 Adam Jackson <ajax@redhat.com> - 1.6.7-1
+- libX11 1.6.7
+
+* Fri Mar 01 2019 Adam Jackson <ajax@redhat.com> - 1.6.5-3
+- Make the server-disconnect message less alarming
+
+* Thu Jul 12 2018 Peter Hutterer <peter.hutterer@redhat.com> 1.6.5-2
+- Rebuild to pick up new xproto keysyms (#1600147)
+
+* Wed Apr 26 2017 Adam Jackson <ajax@redhat.com> - 1.6.5-1
+- libX11 1.6.5
+
+* Fri Jan 20 2017 Peter Hutterer <peter.hutterer@redhat.com> 1.6.4-4
+- Actually apply the patch from 1.6.4-3
+
+* Mon Jan 09 2017 Peter Hutterer <peter.hutterer@redhat.com> 1.6.4-3
+- Fix a bug in the memory leak fix from 1.6.4-2
+
+* Thu Jan 05 2017 Peter Hutterer <peter.hutterer@redhat.com> 1.6.4-2
+- Plug a memory leak in XListFonts()
+
+* Wed Oct 05 2016 Adam Jackson <ajax@redhat.com> - 1.6.4-1
+- libX11 1.6.4
+
+* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.6.3-3
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
+
+* Thu Jan 28 2016 Peter Hutterer <peter.hutterer@redhat.com>
+- Remove unnecessary defattr
+
+* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.6.3-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
+
+* Tue Mar 10 2015 Adam Jackson <ajax@redhat.com> 1.6.3-1
+- libX11 1.6.3
+
+* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.6.2-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
+
+* Mon Jun 30 2014 Adam Jackson <ajax@redhat.com> 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 <rel-eng@lists.fedoraproject.org> - 1.6.1-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
+
+* Tue Jul 30 2013 Peter Hutterer <peter.hutterer@redhat.com> 1.6.1-1
+- libX11 1.6.1
+
+* Tue Jun 04 2013 Peter Hutterer <peter.hutterer@redhat.com> 1.6.0-1
+- libX11 1.6.0
+
+* Mon May 27 2013 Peter Hutterer <peter.hutterer@redhat.com> 1.5.99.902-1
+- Update to 1.5.99.902 (same code-base, just easier in Requires)
+
+* Fri May 24 2013 Peter Hutterer <peter.hutterer@redhat.com> 1.5.99.901-3..20130524gita3bdd2b09
+- Udpate to git snapshot to fix CVEs listed below
+- CVE-2013-1997
+- CVE-2013-1981
+- CVE-2013-2004
+
+* Sun Mar 10 2013 Peter Hutterer <peter.hutterer@redhat.com> 1.5.99.901-2
+- Add BR for Pod::Usage, needed by compose-chart.pl
+
+* Sun Mar 10 2013 Peter Hutterer <peter.hutterer@redhat.com> 1.5.99.901.-1
+- libX11 1.6RC1
+
+* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.5.0-4
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
+
+* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.5.0-3
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
+
+* Tue Jun 12 2012 Peter Hutterer <peter.hutterer@redhat.com> 1.5.0-2
+- run autoreconf to get rid of rpath define (#828513)
+
+* Mon Jun 04 2012 Peter Hutterer <peter.hutterer@redhat.com> 1.5.0-1
+- libX11 1.5
+
+* Tue May 01 2012 Peter Hutterer <peter.hutterer@redhat.com> 1.4.99.901-2
+- Rebuild to pick up new compose symbols from updated x11 proto
+
+* Tue Mar 20 2012 Peter Hutterer <peter.hutterer@redhat.com> 1.4.99.901-1
+- libX11 1.5RC1
+
+* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.99.1-3
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
+
+* Thu Dec 22 2011 Peter Hutterer <peter.hutterer@redhat.com> 1.4.99.1-2
+- fix dont-forward-keycode-0.patch, symbol name change
+
+* Wed Dec 21 2011 Peter Hutterer <peter.hutterer@redhat.com> 1.4.99.1-1
+- libX11 1.4.99.1
+
+* Fri Jul 29 2011 Peter Hutterer <peter.hutterer@redhat.com> 1.4.4-1
+- libX11 1.4.4
+
+* Wed Apr 06 2011 Peter Hutterer <peter.hutterer@redhat.com> 1.4.3-1
+- libX11 1.4.3
+
+* Fri Mar 18 2011 Adam Jackson <ajax@redhat.com> 1.4.2-1
+- libX11 1.4.2
+
+* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.1-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
+
+* Mon Nov 22 2010 Peter Hutterer <peter.hutterer@redhat.com> 1.4.0-1
+- libX11 1.4
+
+* Mon Nov 01 2010 Peter Hutterer <peter.hutterer@redhat.com> 1.3.99.903-1
+- libX11 1.3.99.903 (1.4 RC1)
+
+* Mon Sep 06 2010 Peter Hutterer <peter.hutterer@redhat.com> 1.3.99.901-1
+- libX11 1.3.99.901 (1.4 RC1)
+
+* Thu Aug 12 2010 Peter Hutterer <peter.hutterer@redhat.com> 1.3.5-1
+- libX11 1.3.5
+- Drop 54a96360 patch, upstream.
+
+* Tue Aug 10 2010 Bill Nottingham <notting@redhat.com> - 1.3.4-3
+- Merge upstream commit 54a96360, fixes use-after-free (fd.o 29412)
+
+* Mon Jul 19 2010 Matěj Cepl <mcepl@redhat.com> - 1.3.4-2
+- don't own /usr/share/X11, filesystem owns it already (#569395)
+
+* Fri Jun 04 2010 Adam Jackson <ajax@redhat.com> 1.3.4-1
+- libX11 1.3.4
+
+* Mon Apr 12 2010 Matěj Cepl <mcepl@redhat.com> - 1.3.1-3
+- Fix XCopyGC manpage (#579102)
+
+* Mon Oct 19 2009 Adam Jackson <ajax@redhat.com> 1.3.1-2
+- libX11 1.3.1
+
+* Tue Oct 06 2009 Peter Hutterer <peter.hutterer@redhat.com> 1.3-1
+- libX11 1.3
+
+* Thu Aug 13 2009 Parag <paragn@fedoraproject.org> 1.2.99-5.20090805
+- Merge-review cleanups #226062
+
+* Thu Aug 06 2009 Peter Hutterer <peter.hutterer@redhat.com> 1.2.99-4.20090805
+- Today's git snapshot
+- minor soname bump to 6.3.0
+
+* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.99-3.20090712
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
+
+* Thu Jul 23 2009 Adam Jackson <ajax@redhat.com> 1.2.99-2.20090712
+- Un-require xorg-x11-filesystem
+- Remove useless %%dir
+
+* Sun Jul 12 2009 Peter Hutterer <peter.hutterer@redhat.com> 1.2.99-1.20090712
+- Today's git snapshot
+- libX11-1.2.1-indic.patch: Drop.
+
+* Mon Jul 06 2009 Adam Jackson <ajax@redhat.com> 1.2.1-3
+- -common subpackage
+
+* Tue May 26 2009 Peter Hutterer <peter.hutterer@redhat.com> - 1.2.1-2
+- libX11-1.2.1-indic.patch: Add new Indic language information to nls
+  directory files (#497971)
+
+* Tue May 26 2009 Peter Hutterer <peter.hutterer@redhat.com> - 1.2.1-1
+- libX11 1.2.1
+
+* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2-3
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
+
+* Sat Feb 21 2009 Adam Jackson <ajax@redhat.com> 1.2-2
+- Merge review cleanups. (#226062)
+
+* Wed Feb 18 2009 Adam Jackson <ajax@redhat.com> 1.2-1
+- libX11 1.2
+
+* Wed Feb 04 2009 Adam Jackson <ajax@redhat.com> 1.1.99.2-4
+- libX11-1.1.99.2-compose-updates.patch: Update compose sequences (from git)
+
+* Mon Feb 02 2009 Caolán McNamara <caolanm@redhat.com> 1.1.99.2-3
+- Resolves: rhbz#477174 don't hang in OOo, acroread, ekiga, xine, etc.
+
+* Thu Dec 18 2008 Adam Jackson <ajax@redhat.com> 1.1.99.2-2
+- BR: util-macros
+
+* Thu Dec 18 2008 Adam Jackson <ajax@redhat.com> 1.1.99.2-1
+- libX11 1.1.99.2
+
+* Tue Nov 18 2008 Peter Hutterer <peter.hutterer@redhat.com> 1.1.4-6
+- libX11-1.1.4-XF86Suspend.patch: add XF86Suspend and XF86Hibernate keysyms.
+
+* Fri Oct 24 2008 Peter Hutterer <peter.hutterer@redhat.com> 1.1.4-5
+- libX11-1.1.4-keysysm.patch: add a bunch of keysyms for remote controls and
+  special keys.
+
+* Wed Sep 17 2008 Adam Jackson <ajax@redhat.com> 1.1.4-4
+- libX11-1.1.4-xcb-xreply-leak.patch: Fix the BadFont case.
+
+* Wed Sep 17 2008 Adam Jackson <ajax@redhat.com> 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)
+
+* Tue Jul 15 2008 Adam Jackson <ajax@redhat.com> 1.1.4-2
+- Fix license tag.
+
+* Thu Mar 06 2008 Adam Jackson <ajax@redhat.com> 1.1.4-1
+- libX11 1.1.4
+
+* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 1.1.3-5
+- Autorebuild for GCC 4.3
+
+* Fri Oct 19 2007 Kristian Høgsberg <krh@redhat.com> - 1.1.3-4
+- Add patch from upstream to add keysyms for brightness buttons (#330491).
+
+* Tue Oct 16 2007 Adam Jackson <ajax@redhat.com> 1.1.3-3
+- libX11-devel Requires: libxcb-devel.
+
+* Wed Oct 10 2007 Adam Jackson <ajax@redhat.com> 1.1.3-2
+- libX11-1.1.3-xkb-lock-fix.patch: Don't LockDisplay() recursively.  Fixes
+  Gnome hang at logout. (#326461)
+
+* Mon Sep 24 2007 Adam Jackson <ajax@redhat.com> 1.1.3-1
+- libX11 1.1.3
+
+* Thu Sep 20 2007 Adam Jackson <ajax@redhat.com> 1.1.2-4
+- Update xtrans dep and rebuild.
+
+* Mon Sep 17 2007 Adam Jackson <ajax@redhat.com> 1.1.2-3
+- libX11-1.1.2-GetMotionEvents.patch: Fix the definition of XGetMotionEvents
+  to match the argument order in the headers. (#274671)
+
+* Tue Aug 21 2007 Adam Jackson <ajax@redhat.com> - 1.1.2-2
+- Rebuild for build id
+
+* Mon Jul 23 2007 Adam Jackson <ajax@redhat.com> 1.1.2-1
+- libX11 1.1.2.
+- Enable XCB for libX11 transport.
+
+* Sat Apr 21 2007 Matthias Clasen <mclasen@redhat.com> 1.0.3-9
+- Don't install INSTALL
+
+* Fri Apr 06 2007 Adam Jackson <ajax@redhat.com> 1.0.3-8
+- Fix for CVE 2007-1667.
+
+* Mon Jan 29 2007 Adam Jackson <ajax@redhat.com> 1.0.3-7
+- Fix xim fd leak.
+
+* Thu Nov 09 2006 Caius Chance <cchance@redhat.com> 1.0.3-6.fc7
+- Fix XIM hangs when switching input context (Soren Sandmann, #201284)
+
+* Fri Oct 13 2006 Kristian Høgsberg <krh@redhat.com> 1.0.3-5.fc7
+- Add pkgconfig dependency for -devel package.
+
+* Sat Sep 30 2006 Soren Sandmann <sandmann@redhat.com> 1.0.3-4.fc6
+- Fix patch so it actually applies. (#208508)
+
+* Sat Sep 30 2006 Soren Sandmann <sandmann@redhat.com> 1.0.3-4.fc6
+- Fix typos in patch for indic locales (#208580)
+
+* Wed Sep 20 2006 Soren Sandmann <sandmann@redhat.com> 1.0.3-3.fc6
+- Add patch to not forward keycode 0 (#194357).
+
+* Wed Jul 19 2006 Mike A. Harris <mharris@redhat.com> 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)
+
+* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> 1.0.3-1.1.fc6
+- rebuild
+
+* Mon Jul 10 2006 Mike A. Harris <mharris@redhat.com> 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:"
+
+* Wed Jun 28 2006 Mike A. Harris <mharris@redhat.com> 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 Jun 20 2006 Mike A. Harris <mharris@redhat.com> 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.
+
+* Wed Jun 07 2006 Mike A. Harris <mharris@redhat.com> 1.0.1-2
+- Remove package ownership of mandir/libdir/etc.
+
+* Fri May 12 2006 Adam Jackson <ajackson@redhat.com> 1.0.1-1
+- Bump to 1.0.1
+
+* Thu Feb 23 2006 Christopher Aillon <caillon@redhat.com> 1.0.0-3
+- Look for the versioned libXcursor.so.1 (fixes 179044)
+
+* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> 1.0.0-2.2
+- bump again for double-long bug on ppc(64)
+
+* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> 1.0.0-2.1
+- rebuilt for new gcc4.1 snapshot and glibc changes
+
+* Sat Dec 24 2005 Mike A. Harris <mharris@redhat.com> 1.0.0-2
+- Added "Requires: libXau-devel, libXdmcp-devel" to -devel subpackage (#176313)
+
+* Fri Dec 16 2005 Mike A. Harris <mharris@redhat.com> 1.0.0-1
+- Updated libX11 to version 1.0.0 from X11R7 RC4
+
+* Tue Dec 13 2005 Mike A. Harris <mharris@redhat.com> 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.
+
+* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
+- rebuilt
+
+* Tue Nov 22 2005 Mike A. Harris <mharris@redhat.com> 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)
+
+* Mon Nov 14 2005 Jeremy Katz <katzj@redhat.com> 0.99.3-3
+- require newer filesystem package (#172610)
+
+* Fri Nov 11 2005 Mike A. Harris <mharris@redhat.com> 0.99.3-2
+- Moved _smp_mflags from 'make install' to 'make' invocation, duh.
+
+* Fri Nov 11 2005 Mike A. Harris <mharris@redhat.com> 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'
+
+* Mon Nov 07 2005 Mike A. Harris <mharris@redhat.com> 0.99.2-2
+- Fix devel subpackage summary and description with s/libXdmcp/libX11/
+
+* Fri Oct 21 2005 Mike A. Harris <mharris@redhat.com> 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
+
+* Sun Oct 02 2005 Mike A. Harris <mharris@redhat.com> 0.99.0-4
+- Added _smp_mflags to make invocation to speed up SMP builds
+
+* Thu Sep 29 2005 Mike A. Harris <mharris@redhat.com> 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 <mharris@redhat.com> 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<name>" and "Provides: lib<name>-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 <mharris@redhat.com> 0.99.0-1.1
+- Added Requires: xorg-x11-proto-devel to libX11-devel subpackage
+
+* Mon Aug 22 2005 Mike A. Harris <mharris@redhat.com> 0.99.0-1
+- Initial build.