1d7019
# INFO: Package contains data-only, no binaries, so no debuginfo is needed
1d7019
%define debug_package %{nil}
1d7019
1d7019
#global gitdate 20110415
1d7019
#global gitversion 19a0026b5
1d7019
1d7019
Summary: X Keyboard Extension configuration data
1d7019
Name: xkeyboard-config
1d7019
Version: 2.24
1d7019
Release: 1%{?gitdate:.%{gitdate}git%{gitversion}}%{?dist}
1d7019
License: MIT
1d7019
Group: User Interface/X
1d7019
URL: http://www.freedesktop.org/wiki/Software/XKeyboardConfig
1d7019
%if 0%{?gitdate}
1d7019
Source0:    %{name}-%{gitdate}.tar.bz2
1d7019
Source1:    make-git-snapshot.sh
1d7019
Source2:    commitid
1d7019
%else
1d7019
Source0: http://xorg.freedesktop.org/archive/individual/data/xkeyboard-config/%{name}-%{version}.tar.bz2
1d7019
%endif
1d7019
1d7019
Patch01: 0001-Revert-rules-Move-Finnish-DAS-layout-to-extras.patch
1d7019
# Keycodes > 255 cannot be parsed by xkbcomp < 1.4.0
1d7019
Patch02: 0001-Revert-Map-evdev-keycode-KEY_KEYBOARD-to-XF86Keyboar.patch
1d7019
Patch03: 0002-Revert-Map-evdev-keycode-KEY_FAVORITES-to-XF86Favori.patch
1d7019
1d7019
BuildArch: noarch
1d7019
1d7019
BuildRequires: pkgconfig
1d7019
BuildRequires: xorg-x11-util-macros
1d7019
BuildRequires: xkbcomp
1d7019
BuildRequires: perl(XML::Parser)
1d7019
BuildRequires: intltool
1d7019
BuildRequires: gettext
1d7019
BuildRequires: git-core
1d7019
BuildRequires: automake autoconf libtool pkgconfig
1d7019
BuildRequires: glib2-devel
1d7019
BuildRequires: xorg-x11-proto-devel libX11-devel
1d7019
BuildRequires: libxslt
1d7019
1d7019
%description
1d7019
This package contains configuration data used by the X Keyboard Extension 
1d7019
(XKB), which allows selection of keyboard layouts when using a graphical 
1d7019
interface. 
1d7019
1d7019
%package devel
1d7019
Summary: Development files for %{name}
1d7019
Group: User Interface/X
1d7019
Requires: %{name} = %{version}-%{release}
1d7019
Requires: pkgconfig
1d7019
1d7019
%description devel
1d7019
%{name} development package
1d7019
1d7019
%prep
1d7019
%setup -q -n %{name}-%{?gitdate:%{gitdate}}%{!?gitdate:%{version}}
1d7019
1d7019
%if 0%{?gitdate}
1d7019
git checkout -b fedora
1d7019
sed -i 's/git/&+ssh/' .git/config
1d7019
if [ -z "$GIT_COMMITTER_NAME" ]; then
1d7019
    git config user.email "x@fedoraproject.org"
1d7019
    git config user.name "Fedora X Ninjas"
1d7019
fi
1d7019
git commit -am "%{name} %{version}"
1d7019
%else
1d7019
git init
1d7019
if [ -z "$GIT_COMMITTER_NAME" ]; then
1d7019
    git config user.email "x@fedoraproject.org"
1d7019
    git config user.name "Fedora X Ninjas"
1d7019
fi
1d7019
git add .
1d7019
git commit -a -q -m "%{name} %{version} baseline."
1d7019
%endif
1d7019
1d7019
git am -p1 %{patches} < /dev/null
1d7019
1d7019
%build
1d7019
AUTOPOINT="intltoolize --automake --copy" autoreconf -v --force --install || exit 1
1d7019
%configure \
1d7019
    --enable-compat-rules \
1d7019
    --with-xkb-base=%{_datadir}/X11/xkb \
1d7019
    --disable-xkbcomp-symlink \
1d7019
    --with-xkb-rules-symlink=xorg
1d7019
1d7019
make %{?_smp_mflags}
1d7019
1d7019
%install
1d7019
make install DESTDIR=$RPM_BUILD_ROOT INSTALL="install -p"
1d7019
1d7019
# Remove unnecessary symlink
1d7019
rm -f $RPM_BUILD_ROOT%{_datadir}/X11/xkb/compiled
1d7019
%find_lang %{name} 
1d7019
1d7019
# Create filelist
1d7019
{
1d7019
   FILESLIST=${PWD}/files.list
1d7019
   pushd $RPM_BUILD_ROOT
1d7019
   find .%{_datadir}/X11/xkb -type d | sed -e "s/^\./%dir /g" > $FILESLIST
1d7019
   find .%{_datadir}/X11/xkb -type f | sed -e "s/^\.//g" >> $FILESLIST
1d7019
   popd
1d7019
}
1d7019
1d7019
%files -f files.list -f %{name}.lang
1d7019
%defattr(-,root,root,-)
1d7019
%doc AUTHORS README NEWS TODO COPYING docs/README.* docs/HOWTO.*
1d7019
%{_datadir}/X11/xkb/rules/xorg
1d7019
%{_datadir}/X11/xkb/rules/xorg.lst
1d7019
%{_datadir}/X11/xkb/rules/xorg.xml
1d7019
%{_mandir}/man7/xkeyboard-config.*
1d7019
1d7019
%files devel
1d7019
%defattr(-,root,root,-)
1d7019
%{_datadir}/pkgconfig/xkeyboard-config.pc
1d7019
1d7019
%changelog
1d7019
* Wed Jun 06 2018 Peter Hutterer <peter.hutterer@redhat.com> 2.24-1
1d7019
- xkeyboard-config 2.24 (#1564615)
1d7019
- Revert the high-keycode patches to avoid conflicts with xkbcomp < 1.4
1d7019
1d7019
* Tue May 15 2018 Peter Hutterer <peter.hutterer@redhat.com> 2.23.1-1
1d7019
- xkeyboard-config 2.23.1 (#1564615)
1d7019
1d7019
* Wed Feb 08 2017 Peter Hutterer <peter.hutterer@redhat.com> 2.20-1
1d7019
- xkeyboard-config 2.20 (#1401753)
1d7019
1d7019
* Tue Jun 16 2015 Peter Hutterer <peter.hutterer@redhat.com> 2.14-1
1d7019
- xkeyboard-config 2.14 (#1194871)
1d7019
1d7019
* Fri Dec 27 2013 Daniel Mach <dmach@redhat.com> - 2.9-4
1d7019
- Mass rebuild 2013-12-27
1d7019
1d7019
* Wed Jul 17 2013 Peter Hutterer <peter.hutterer@redhat.com> 2.9-3
1d7019
- Fix changelog - percent sign needs to be escaped
1d7019
1d7019
* Wed Jul 17 2013 Peter Hutterer <peter.hutterer@redhat.com> 2.9-2
1d7019
- Fix up three bogus changelog dates
1d7019
1d7019
* Thu May 30 2013 Peter Hutterer <peter.hutterer@redhat.com> 2.9-1
1d7019
- xkeyboard-config 2.9
1d7019
1d7019
* Wed May 15 2013 Daniel Drake <dsd@laptop.org> 2.8-3
1d7019
- Add upstream patches for OLPC mechanical keyboard support
1d7019
1d7019
* Tue Apr 16 2013 Peter Hutterer <peter.hutterer@redhat.com> 2.8-2
1d7019
- Fix a bunch of language codes (#952510, #952519)
1d7019
1d7019
* Thu Jan 31 2013 Peter Hutterer <peter.hutterer@redhat.com> 2.8-1
1d7019
- xkeyboard-config 2.8
1d7019
1d7019
* Wed Jan 02 2013 Peter Hutterer <peter.hutterer@redhat.com> 2.7-4
1d7019
- Fix Mali layout previously mapped to in(mal) (#647433)
1d7019
1d7019
* Wed Nov 14 2012 Peter Hutterer <peter.hutterer@redhat.com> - 2.7-3
1d7019
- Rebuild with fixed xkbcomp, re-create the right directory listing (not
1d7019
  that anyone actually uses it)
1d7019
1d7019
* Wed Oct 31 2012 Peter Hutterer <peter.hutterer@redhat.com> - 2.7-2
1d7019
- Fix {?dist} tag
1d7019
1d7019
* Thu Sep 27 2012 Peter Hutterer <peter.hutterer@redhat.com> 2.7-1
1d7019
- xkeyboard-config 2.7
1d7019
1d7019
* Sun Jul 22 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.6-3
1d7019
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
1d7019
1d7019
* Tue Jun 26 2012 Peter Hutterer <peter.hutterer@redhat.com> 2.6-2
1d7019
- Revert broken fix for is keyboard (#826220)
1d7019
1d7019
* Thu May 31 2012 Peter Hutterer <peter.hutterer@redhat.com> 2.6-1
1d7019
- xkeyboard-config 2.6
1d7019
- change source URL, 2.6 is in a different directory
1d7019
- force autoreconf, update to use intltoolize as autopoint
1d7019
1d7019
* Wed May 23 2012 Peter Robinson <pbrobinson@fedoraproject.org> - 2.5.1-2
1d7019
- Add upstream patch to fix OLPC azerty keyboard
1d7019
1d7019
* Thu Feb 02 2012 Peter Hutterer <peter.hutterer@redhat.com> 2.5.1-1
1d7019
- xkeyboard-config 2.5.1
1d7019
1d7019
* Mon Jan 23 2012 Peter Hutterer <peter.hutterer@redhat.com> 2.5-1
1d7019
- xkeyboard-config 2.5
1d7019
1d7019
* Thu Jan 19 2012 Peter Hutterer <peter.hutterer@redhat.com> 2.4.1-4
1d7019
- Move Ungrab and ClearGrab from the default layout to option
1d7019
  grab:break_actions (#783044)
1d7019
1d7019
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.4.1-3
1d7019
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
1d7019
1d7019
* Thu Dec 22 2011 Peter Hutterer <peter.hutterer@redhat.com> 2.4.1-2
1d7019
- Change Serbian layouts to mark the cyrillic ones (#769751)
1d7019
1d7019
* Wed Oct 05 2011 Peter Hutterer <peter.hutterer@redhat.com> 2.4.1-1
1d7019
- xkeyboard-config 2.4.1
1d7019
- change source URL from ftp.x.org to http://xorg.freedesktop.org, ftp takes
1d7019
  too long to update
1d7019
1d7019
* Tue Jun 14 2011 Peter Hutterer <peter.hutterer@redhat.com> 2.3-2
1d7019
- Add 0001-Use-XSL-to-generate-man-page-from-the-rules-XML.patch, ship
1d7019
  man-page
1d7019
- Fix up broken git repo initialization when building from a tarball
1d7019
1d7019
* Thu Jun 02 2011 Peter Hutterer <peter.hutterer@redhat.com> 2.3-1
1d7019
- xkeyboard-config 2.3
1d7019
1d7019
* Fri Apr 15 2011 Peter Hutterer <peter.hutterer@redhat.com> 2.2.1-2.20110415git19a0026b5
1d7019
- Snapshot from git to fix French Canadian layouts (#694472)
1d7019
1d7019
* Wed Apr 06 2011 Peter Hutterer <peter.hutterer@redhat.com> 2.2.1-1
1d7019
- xkeyboard-config 2.2.1, 2.2 had a broken configure check
1d7019
- Add new BR and don't disable build/runtime deps checks
1d7019
1d7019
* Mon Apr 04 2011 Peter Hutterer <peter.hutterer@redhat.com> 2.2-1
1d7019
- xkeyboard-config 2.2
1d7019
- reinstate the git bits removed in previous commit
1d7019
1d7019
* Fri Mar 25 2011 Matthias Clasen <mclasen@redhat.com> - 2.1.99-2
1d7019
- Update to 2.1.99 release
1d7019
1d7019
* Fri Mar 11 2011 Peter Hutterer <peter.hutterer@redhat.com> 2.1.99-1.20110311-git9333b2f3
1d7019
- add bits required to build from git
1d7019
- update to today's git snapshot
1d7019
1d7019
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.1-2
1d7019
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
1d7019
1d7019
* Thu Jan 27 2011 Peter Hutterer <peter.hutterer@redhat.com> 2.1-1
1d7019
- xkeyboard-config 2.1
1d7019
1d7019
* Thu Nov 25 2010 Bastien Nocera <bnocera@redhat.com> 2.0-2
1d7019
- Use new touchpad toggle keysyms
1d7019
1d7019
* Wed Sep 29 2010 Peter Hutterer <peter.hutterer@redhat.com> 2.0-1
1d7019
- xkeyboard-config 2.0
1d7019
1d7019
* Mon Aug 16 2010 Peter Hutterer <peter.hutterer@redhat.com> 1.9-1
1d7019
- xkeyboard-config 1.9
1d7019
- update Source URL, hosted on x.org now.
1d7019
- add -devel package for pkgconfig file added in 1.9.
1d7019
- drop upstreamed patches.
1d7019
1d7019
* Tue Jul 20 2010 Peter Hutterer <peter.hutterer@redhat.com> 1.8-6
1d7019
- spec file cleanup. Patch by Parag An (#226562)
1d7019
1d7019
* Tue May 04 2010 Peter Hutterer <peter.hutterer@redhat.com> 1.8-5
1d7019
- 0001-Remove-duplicate-BKSL-key-mappings-from-hin-wx-layou.patch: remove
1d7019
  the duplicate mapping from hin-wx layout, it breaks iok (FDO 26947).
1d7019
1d7019
* Tue Apr 06 2010 Peter Hutterer <peter.hutterer@redhat.com> 1.8-4
1d7019
- Move F-12 patches forward, upstream is a bit unresponsive.
1d7019
1d7019
* Tue Mar 02 2010 Peter Hutterer <peter.hutterer@redhat.com> 1.8-3
1d7019
- only package files in /usr/share/X11/xkb (#569400)
1d7019
1d7019
* Fri Feb 12 2010 Peter Hutterer <peter.hutterer@redhat.com> 1.8-2
1d7019
- Package the translations too (#563815).
1d7019
1d7019
* Mon Feb 01 2010 Peter Hutterer <peter.hutterer@redhat.com> 1.8-1
1d7019
- xkeyboard-config 1.8
1d7019
1d7019
* Fri Jan 08 2010 Peter Hutterer <peter.hutterer@redhat.com> 1.7-3
1d7019
- Remove xkbdata provides. The xkbdata provides was introduced when
1d7019
  xorg-x11-drv-xkbdata moved to xkeyboard-config. It's purpose was mainly to
1d7019
  protect against future renamings of this module which is unlikely to
1d7019
  happen anytime soon.
1d7019
1d7019
* Wed Jan 06 2010 Peter Hutterer <peter.hutterer@redhat.com> 1.7-2
1d7019
- Specify version for xkbdata provides and obsoletes. According to the
1d7019
  changelog, the last xkbdata version was 1.0.1-8. Although xkeyboard-config
1d7019
  restarted the versioning, by now we're well above 1.0, so a simple
1d7019
  Provides is enough.
1d7019
1d7019
* Wed Jan 06 2010 Peter Hutterer <peter.hutterer@redhat.com> 1.7-1
1d7019
- xkeyboard-config 1.7
1d7019
1d7019
* Tue Aug 18 2009 Peter Hutterer <peter.hutterer@redhat.com> 1.6-3
1d7019
- xkeyboard-config-1.6-caps-super.patch: add caps:super option (#505187)
1d7019
- xkeyboard-config-1.6-caps-hyper.patch: add caps:hyper option (#505187)
1d7019
1d7019
* Mon Jul 27 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.6-2
1d7019
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
1d7019
1d7019
* Fri May 29 2009 Peter Hutterer <peter.hutterer@redhat.com> - 1.6-1
1d7019
- xkeyboard-config 1.6
1d7019
- Dropping all patches, merged upstream.
1d7019
1d7019
* Tue Apr 07 2009 Peter Hutterer <peter.hutterer@redhat.com> - 1.5-5
1d7019
- xkeyboard-config-1.5-terminate.patch: remove Terminate_Server from default
1d7019
  pc symbols, add terminate:ctrl_alt_bksp.
1d7019
1d7019
* Thu Mar 05 2009 Peter Hutterer <peter.hutterer@redhat.com> - 1.5-4
1d7019
- xkeyboard-config-1.5-suspend-hibernate.patch: Map I213 to XF86Suspend, and
1d7019
  I255 to XF86Hibernate.
1d7019
1d7019
* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.5-3
1d7019
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
1d7019
1d7019
* Mon Feb 02 2009 Peter Hutterer <peter.hutterer@redhat.com> 1.5-2
1d7019
- xkeyboard-config-1.5-evdevkbds.patch: include model-specifics when using
1d7019
  evdev.
1d7019
1d7019
* Mon Feb 02 2009 Peter Hutterer <peter.hutterer@redhat.com> 
1d7019
- purge obsolete patches.
1d7019
1d7019
* Wed Jan 28 2009 Peter Hutterer <peter.hutterer@redhat.com> 1.5-1
1d7019
- xkeyboard-config 1.5
1d7019
1d7019
* Tue Jan 27 2009 Bernie Innocenti <bernie@codewiz.org> 1.4-9
1d7019
- Backport fix for the it(olpc) layout
1d7019
1d7019
* Mon Jan 05 2009 Peter Hutterer <peter.hutterer@redhat.com> - 1.4-8
1d7019
- xkeyboard-config-1.4-abnt2.patch: fix , and . mixup in abnt2 (#470153)
1d7019
1d7019
* Mon Nov 24 2008 Peter Hutterer <peter.hutterer@redhat.com> - 1.4-7
1d7019
- Switch to using git patches, modelled after xorg-x11-server.
1d7019
- CVS remove unused patches.
1d7019
1d7019
* Sat Nov 22 2008 Matthias Clasen <mclasen@redhat.com> - 1.4-6
1d7019
- Improve %%summary and %%description
1d7019
- Better URL
1d7019
1d7019
* Thu Nov 13 2008 Peter Hutterer  <peter.hutterer@redhat.com> - 1.4-5
1d7019
- xkeyboard-config-1.4-jp-tilde.patch: TLDE in jp is Zenkaku/Hankaku, and BKSL
1d7019
  should be bracket right/brace right (#469537).
1d7019
1d7019
* Fri Oct 24 2008 Peter Hutterer  <peter.hutterer@redhat.com> - 1.4-4
1d7019
- xkeyboard-config-1.4-battery.patch: add XF86 syms for Battery, Bluetooth,
1d7019
  Wlan and UWB to usinet.
1d7019
1d7019
* Tue Oct 14 2008 Peter Hutterer  <peter.hutterer@redhat.com> - 1.4-3
1d7019
- xkeyboard-config-1.4-tj-variant.patch: add legacy and basic tj layouts
1d7019
  (#455796)
1d7019
1d7019
* Wed Oct  1 2008 Matthias Clasen  <mclasen@redhat.com> - 1.4-2
1d7019
- Update to 1.4
1d7019
1d7019
* Mon Sep 29 2008 Peter Hutterer  <peter.hutterer@redhat.com> - 1.3-2
1d7019
- xkeyboard-config-1.3-AC11-mapping-is.patch: fix AC11 mapping for icelandic
1d7019
  keyboard layout (#241564)
1d7019
1d7019
* Wed May 28 2008 Matthias Clasen  <mclasen@redhat.com> - 1.3-1
1d7019
- Update to 1.3
1d7019
1d7019
* Mon Apr 14 2008 Matthias Clasen  <mclasen@redhat.com> - 1.2-3
1d7019
- Also add back and forward keys to pc105 (#441398)
1d7019
1d7019
* Wed Apr  9 2008 Matthias Clasen  <mclasen@redhat.com> - 1.2-2
1d7019
- Make pc105 have inet keys, not 100% correct, but better than
1d7019
  having the kbd driver report "us+inet" which confused XKB and
1d7019
  higher layers (#441398)
1d7019
1d7019
* Thu Feb  7 2008 Matthias Clasen  <mclasen@redhat.com> - 1.2-1
1d7019
- Update to 1.2
1d7019
- Remove upstreamed olpc patches
1d7019
1d7019
* Mon Nov 19 2007 Bernardo Innocenti <bernie@codewiz.org> 1.1-5.20071119cvs
1d7019
- Upgrade xkeyboard-config snapshot to cvs20071119
1d7019
- Add olpc-xkeyboard-config-af.patch
1d7019
- Add olpc-xkeyboard-config-kz-group.patch
1d7019
- Add olpc-xkeyboard-config-ng-group.patch
1d7019
- Add olpc-xkeyboard-config-ng-h.patch
1d7019
- Remove olpc-xkeyboard-config-ara-fixes.patch (integrated upstream)
1d7019
- Remove olpc-xkeyboard-config-br-accents.patch (integrated upstream)
1d7019
- Remove olpc-xkeyboard-config-es-accents.patch (integrated upstream)
1d7019
- Remove olpc-xkeyboard-config-us-typo.patch (integrated upstream)
1d7019
1d7019
* Sat Oct 27 2007 Bernardo Innocenti <bernie@codewiz.org> 1.1-5.20071009cvs
1d7019
- Add olpc-xkeyboard-config-ara-fixes.patch
1d7019
- Add olpc-xkeyboard-config-br-accents.patch
1d7019
- Add olpc-xkeyboard-config-es-accents.patch
1d7019
- Add olpc-xkeyboard-config-us-typo.patch
1d7019
1d7019
* Tue Oct 09 2007 Bernardo Innocenti <bernie@codewiz.org> - 1.1-4.20071009cvs
1d7019
- Upgrade xkeyboard-config snapshot to cvs20071009
1d7019
1d7019
* Sat Oct 06 2007 Bernardo Innocenti <bernie@codewiz.org> - 1.1-4.20071006cvs
1d7019
- Resync with Fedora Development
1d7019
- Upgrade xkeyboard-config snapshot to cvs20071006
1d7019
1d7019
* Sat Oct  6 2007 Matthias Clasen <mclasen@redhat.com> - 1.1-3
1d7019
- Somehow the Dell M65 model lost its vendor
1d7019
1d7019
* Wed Sep 26 2007 Matthias Clasen <mclasen@redhat.com> - 1.1-2
1d7019
- Pick up the respun 1.1 release
1d7019
1d7019
* Wed Sep 26 2007 Matthias Clasen <mclasen@redhat.com> - 1.1-1
1d7019
- Update to 1.1
1d7019
- Drop upstreamed patches
1d7019
1d7019
* Wed Sep  5 2007 Matthias Clasen <mclasen@redhat.com> - 1.0-1
1d7019
- Update to 1.0
1d7019
- Drop upstreamed patches
1d7019
- Update remaining patches
1d7019
1d7019
* Tue Sep 04 2007 Bernardo Innocenti <bernie@codewiz.org> - 0.8.20070829cvs
1d7019
- Update OLPC patch to take11 (use old evdev key name for the "view source"
1d7019
  key)
1d7019
1d7019
* Tue Sep 04 2007 Bernardo Innocenti <bernie@codewiz.org> - 0.8.20070829cvs
1d7019
- Downgrade xkeyboard-config snapshot to cvs20070829 to revert
1d7019
  recent evdev changes (the version of xkbcomp we ship chokes on them).
1d7019
1d7019
* Fri Aug 31 2007 Bernardo Innocenti <bernie@codewiz.org> - 0.7.20070831cvs
1d7019
- Update OLPC patch to take10 (integrate changes requested by
1d7019
  upstream reviewer)
1d7019
1d7019
* Wed Aug 22 2007 Bernardo Innocenti <bernie@codewiz.org> - 0.6.20070820cvs
1d7019
- Update OLPC patch to take9 (fix 'h' key on us layout)
1d7019
1d7019
* Wed Aug 22 2007 Bernardo Innocenti <bernie@codewiz.org> - 0.5.20070820cvs
1d7019
- Update OLPC patch to take8 (don't use olpc variant for et layout)
1d7019
1d7019
* Wed Aug 22 2007 Bernardo Innocenti <bernie@codewiz.org> - 0.4.20070820cvs
1d7019
- Update OLPC patch to take7
1d7019
1d7019
* Mon Aug 20 2007 Bernardo Innocenti <bernie@codewiz.org> - 0.3.20070820cvs
1d7019
- Update to CVS snapshot 20070820
1d7019
1d7019
* Fri Jun 29 2007 Bernardo Innocenti <bernie@codewiz.org> - 0.2.20070629cvs
1d7019
- Update to CVS snapshot 20070629
1d7019
- Add OLPC patch
1d7019
- Drop patches already integrated upstream
1d7019
1d7019
* Fri Sep  1 2006 Alexander Larsson <alexl@redhat.com> - 0.8-7
1d7019
- Update macbook patch to be closer to what got in upstream
1d7019
- (kp enter is ralt, not the option key)
1d7019
1d7019
* Fri Sep  1 2006 Matthias Clasen <mclasen@redhat.com> - 0.8-6
1d7019
- Add support for Korean 106 key keyboards (204158)
1d7019
1d7019
* Tue Aug 29 2006 Alexander Larsson <alexl@redhat.com> - 0.8-5
1d7019
- Add MacBook model and geometry, plus alt_win option
1d7019
1d7019
* Tue Aug 22 2006 Matthias Clasen <mclasen@redhat.com> 0.8-4
1d7019
- Fix geometry description for Thinkpads
1d7019
- Add a Kinesis model
1d7019
- Add Dell Precision M65 geometry and model
1d7019
1d7019
* Tue Aug 22 2006 Adam Jackson <ajackson@redhat.com> 0.8-3
1d7019
- Add Compose semantics to right Alt when that's ISO_Level3_Shift (#193922)
1d7019
1d7019
* Fri Jul 07 2006 Mike A. Harris <mharris@redhat.com> 0.8-2
1d7019
- Rename spec file from xorg-x11-xkbdata to xkeyboard-config.spec
1d7019
1d7019
* Fri Jul 07 2006 Mike A. Harris <mharris@redhat.com> 0.8-1
1d7019
- Renamed package from 'xorg-x11-xkbdata' to 'xkeyboard-config' to match the
1d7019
  upstream project name and tarball.  I kept the rpm changelog intact however
1d7019
  to preserve history, so all entries older than today, are from the
1d7019
  prior 'xorg-x11-xkbdata' package.  (#196229,197939)
1d7019
- Added "Obsoletes: xorg-x11-xkbdata"
1d7019
- Removed 'pre' script from spec file, as that was a temporary hack to help
1d7019
  transition from modular X.Org xkbdata to modular xkeyboard-config during
1d7019
  FC5 development.  The issue it resolved is not present in any officially
1d7019
  released distribution release or updates, so the hack is no longer needed.
1d7019
1d7019
* Wed Jun 21 2006 Mike A. Harris <mharris@redhat.com> 1.0.1-8.xkbc0.8.0
1d7019
- Embed xkeyboard-config version in Release field so we can tell from the
1d7019
  filename what is really in this package without having to look in the
1d7019
  spec file.  We should rename the package to xkeyboard-config and restart
1d7019
  the versioning.
1d7019
1d7019
* Tue Jun 06 2006 Mike A. Harris <mharris@redhat.com> 1.0.1-8
1d7019
- Added "BuildRequires: perl(XML::Parser)" for (#194188)
1d7019
1d7019
* Sat Mar 04 2006 Ray Strode <rstrode@redhat.com> 1.0.1-7
1d7019
- Update to 0.8.
1d7019
1d7019
* Wed Mar 01 2006 Ray Strode <rstrode@redhat.com> 1.0.1-6
1d7019
- Turn on compat symlink (bug 183521)
1d7019
1d7019
* Tue Feb 28 2006 Mike A. Harris <mharris@redhat.com> 1.0.1-5
1d7019
- Fixed rpm pre script upgrade/install testing
1d7019
- Rebuild package as 1.0.1-5 in rawhide, completing the transition to
1d7019
  xkeyboard-config.
1d7019
1d7019
* Tue Feb 28 2006 Mike A. Harris <mharris@redhat.com> 1.0.1-4.0.7.xkbcfg.5
1d7019
- Added rpm pre script, to pre-remove the symbols/pc during package upgrades,
1d7019
  to avoid an rpm cpio error if the X11R7.0 modular xkbdata package is already
1d7019
  installed, because rpm can not replace a directory with a file.  
1d7019
1d7019
* Fri Feb 24 2006 Mike A. Harris <mharris@redhat.com> 1.0.1-4.0.7.xkbcfg.1
1d7019
- Package renamed to xorg-x11-xkbdata and version/release tweaked since it
1d7019
  is too late to add new package names to Fedora Core 5 development.
1d7019
- Added "Provides: xkeyboard-config" virtual provide.
1d7019
1d7019
* Fri Feb 24 2006 Mike A. Harris <mharris@redhat.com> 0.7-1
1d7019
- Initial package created with xkeyboard-config-0.7.
1d7019
1d7019
* Tue Feb 21 2006 Mike A. Harris <mharris@redhat.com> 1.0.1-3
1d7019
- Added xkbdata-1.0.1-greek-fix-bug181313.patch to fix (#181313,181313)
1d7019
- Added xkbdata-1.0.1-cz-fix-bug177362.patch to fix (#177362,178892)
1d7019
1d7019
* Thu Feb 09 2006 Mike A. Harris <mharris@redhat.com> 1.0.1-2
1d7019
- Added xkbdata-1.0.1-sysreq-fix-bug175661.patch to fix (#175661)
1d7019
1d7019
* Wed Jan 18 2006 Mike A. Harris <mharris@redhat.com> 1.0.1-1
1d7019
- Updated to xbitmaps 1.0.1 from X11R7.0
1d7019
1d7019
* Sat Dec 17 2005 Mike A. Harris <mharris@redhat.com> 1.0.0-1
1d7019
- Updated to xbitmaps 1.0.0 from X11R7 RC4.
1d7019
1d7019
* Fri Nov 11 2005 Mike A. Harris <mharris@redhat.com> 0.99.1-2
1d7019
- Add a few missing rpm 'dir' directives to file manifest.
1d7019
- Bump release, and build as a 'noarch' package.
1d7019
1d7019
* Fri Nov 11 2005 Mike A. Harris <mharris@redhat.com> 0.99.1-1
1d7019
- Updated to xkbdata 0.99.1 from X11R7 RC2.