Blame SPECS/gpm.spec

a1ffe7
%define _hardened_build 1
a1ffe7
a1ffe7
Summary: A mouse server for the Linux console
a1ffe7
Name: gpm
a1ffe7
Version: 1.20.7
a1ffe7
Release: 6%{?dist}
a1ffe7
License: GPLv2 and GPLv2+ with exceptions and GPLv3+ and Verbatim and Copyright only
a1ffe7
Group: System Environment/Daemons
a1ffe7
URL: http://www.nico.schottelius.org/software/gpm/
a1ffe7
#URL2 : http://freecode.com/projects/gpm
a1ffe7
a1ffe7
# The upstream source contains PDF docs with unclear licensing,
a1ffe7
# and that's why we need to remove them and recreate the tarball
a1ffe7
#
a1ffe7
# 1.] mkdir docs-removal && cd docs-removal
a1ffe7
# 2.] wget http://www.nico.schottelius.org/software/gpm/archives/%%{name}-%%{version}.tar.lzma
a1ffe7
# 3.] tar xf %%{name}-%%{version}.tar.lzma
a1ffe7
# 3.] rm -rf %%{name}-%%{version}/doc/specs
a1ffe7
# 4.] tar cJf %%{name}-%%{version}.tar.xz %%{name}-%%{version}
a1ffe7
a1ffe7
Source: %{name}-%{version}.tar.xz
a1ffe7
Source1: gpm.service
a1ffe7
Patch1: gpm-1.20.6-multilib.patch
a1ffe7
Patch2: gpm-1.20.1-lib-silent.patch
a1ffe7
Patch4: gpm-1.20.5-close-fds.patch
a1ffe7
Patch5: gpm-1.20.1-weak-wgetch.patch
a1ffe7
Patch7: gpm-1.20.7-rhbz-668480-gpm-types-7-manpage-fixes.patch
a1ffe7
Patch8: gpm-1.20.6-missing-header-dir-in-make-depend.patch
a1ffe7
#Patch7: gpm-1.20.6-capability.patch
a1ffe7
Requires(post): systemd systemd-sysv info
a1ffe7
Requires(preun): systemd info
a1ffe7
Requires(postun): systemd
a1ffe7
# this defines the library version that this package builds.
a1ffe7
%define LIBVER 2.1.0
a1ffe7
BuildRequires: sed gawk texinfo bison ncurses-devel autoconf automake libtool libcap-ng-devel
a1ffe7
BuildRequires: systemd
a1ffe7
Requires: linuxconsoletools
a1ffe7
Requires: %{name}-libs = %{version}-%{release}
a1ffe7
a1ffe7
%description
a1ffe7
Gpm provides mouse support to text-based Linux applications like the
a1ffe7
Emacs editor and the Midnight Commander file management system.  Gpm
a1ffe7
also provides console cut-and-paste operations using the mouse and
a1ffe7
includes a program to allow pop-up menus to appear at the click of a
a1ffe7
mouse button.
a1ffe7
a1ffe7
%package libs
a1ffe7
Summary: Dynamic library for for the gpm
a1ffe7
Group: System Environment/Libraries
a1ffe7
a1ffe7
%description libs
a1ffe7
This package contains the libgpm.so dynamic library which contains
a1ffe7
the gpm system calls and library functions.
a1ffe7
a1ffe7
%package devel
a1ffe7
Requires: %{name} = %{version}-%{release}
a1ffe7
Requires: %{name}-libs = %{version}-%{release}
a1ffe7
Summary: Development files for the gpm library
a1ffe7
Group: Development/Libraries
a1ffe7
a1ffe7
%description devel
a1ffe7
The gpm-devel package includes header files and libraries necessary
a1ffe7
for developing programs which use the gpm library. The gpm provides
a1ffe7
mouse support to text-based Linux applications.
a1ffe7
a1ffe7
%package static
a1ffe7
Requires: %{name} = %{version}-%{release}
a1ffe7
Summary: Static development files for the gpm library
a1ffe7
Group: Development/Libraries
a1ffe7
a1ffe7
%description static
a1ffe7
The gpm-static package includes static libraries of gpm. The gpm provides
a1ffe7
mouse support to text-based Linux applications.
a1ffe7
a1ffe7
a1ffe7
%prep
a1ffe7
%setup -q
a1ffe7
%patch1 -p1 -b .multilib
a1ffe7
%patch2 -p1 -b .lib-silent
a1ffe7
%patch4 -p1 -b .close-fds
a1ffe7
%patch5 -p1 -b .weak-wgetch
a1ffe7
%patch7 -p1
a1ffe7
# not sure if this is really needed
a1ffe7
%patch8 -p1
a1ffe7
a1ffe7
#%%patch7 -p1 -b .capability
a1ffe7
a1ffe7
./autogen.sh
a1ffe7
a1ffe7
a1ffe7
%build
a1ffe7
%configure
a1ffe7
make %{?_smp_mflags}
a1ffe7
a1ffe7
%install
a1ffe7
%makeinstall
a1ffe7
a1ffe7
chmod 0755 %{buildroot}/%{_libdir}/libgpm.so.%{LIBVER}
a1ffe7
ln -sf libgpm.so.%{LIBVER} %{buildroot}/%{_libdir}/libgpm.so
a1ffe7
a1ffe7
rm -f %{buildroot}%{_datadir}/emacs/site-lisp/t-mouse.el
a1ffe7
a1ffe7
%ifnarch s390 s390x
a1ffe7
mkdir -p %{buildroot}%{_sysconfdir}/rc.d/init.d
a1ffe7
mkdir -p %{buildroot}%{_unitdir}
a1ffe7
install -m 644 conf/gpm-* %{buildroot}%{_sysconfdir}
a1ffe7
# Systemd
a1ffe7
mkdir -p %{buildroot}/usr/lib/systemd/system
a1ffe7
install -m644 %{SOURCE1} %{buildroot}%{_unitdir}
a1ffe7
rm -rf %{buildroot}%{_initrddir}
a1ffe7
%else
a1ffe7
# we're shipping only libraries in s390[x], so
a1ffe7
# remove stuff from the buildroot that we aren't shipping
a1ffe7
rm -rf %{buildroot}%{_sbindir}
a1ffe7
rm -rf %{buildroot}%{_bindir}
a1ffe7
rm -rf %{buildroot}%{_mandir}
a1ffe7
%endif
a1ffe7
a1ffe7
%post
a1ffe7
%ifnarch s390 s390x
a1ffe7
%systemd_post gpm.service
a1ffe7
%endif
a1ffe7
if [ -e %{_infodir}/gpm.info.gz ]; then
a1ffe7
  /sbin/install-info %{_infodir}/gpm.info.gz %{_infodir}/dir || :
a1ffe7
fi
a1ffe7
a1ffe7
%preun
a1ffe7
%ifnarch s390 s390x
a1ffe7
%systemd_preun gpm.service
a1ffe7
%endif
a1ffe7
if [ $1 = 0 -a -e %{_infodir}/gpm.info.gz ]; then
a1ffe7
  /sbin/install-info %{_infodir}/gpm.info.gz --delete %{_infodir}/dir || :
a1ffe7
fi
a1ffe7
a1ffe7
%postun
a1ffe7
%ifnarch s390 s390x
a1ffe7
%systemd_postun_with_restart gpm.service
a1ffe7
%endif
a1ffe7
a1ffe7
%post libs -p /sbin/ldconfig
a1ffe7
a1ffe7
%postun libs -p /sbin/ldconfig
a1ffe7
a1ffe7
%files
a1ffe7
%doc COPYING README TODO
a1ffe7
%doc doc/README* doc/FAQ doc/Announce doc/changelog
a1ffe7
%{_infodir}/*
a1ffe7
%ifnarch s390 s390x
a1ffe7
%config(noreplace) %{_sysconfdir}/gpm-*
a1ffe7
%{_unitdir}/gpm.service
a1ffe7
%{_sbindir}/*
a1ffe7
%{_bindir}/*
a1ffe7
%{_mandir}/man?/*
a1ffe7
%endif
a1ffe7
a1ffe7
%files libs
a1ffe7
%{_libdir}/libgpm.so.*
a1ffe7
a1ffe7
%files devel
a1ffe7
%{_includedir}/*
a1ffe7
%{_libdir}/libgpm.so
a1ffe7
a1ffe7
%files static
a1ffe7
%{_libdir}/libgpm.a
a1ffe7
a1ffe7
%changelog
a1ffe7
* Tue Mar 26 2019 Jiri Kucera <jkucera@redhat.com> - 1.20.7-6
a1ffe7
- Remove old scriptlets
a1ffe7
  Enable PIE and RELRO
a1ffe7
  ./autogen.sh runs too early
a1ffe7
  Resolves: #1092527, #1095444
a1ffe7
a1ffe7
* Fri Jan 24 2014 Daniel Mach <dmach@redhat.com> - 1.20.7-5
a1ffe7
- Mass rebuild 2014-01-24
a1ffe7
a1ffe7
* Fri Dec 27 2013 Daniel Mach <dmach@redhat.com> - 1.20.7-4
a1ffe7
- Mass rebuild 2013-12-27
a1ffe7
a1ffe7
* Wed Aug 07 2013 Jaromir Capik <jcapik@redhat.com> - 1.20.7-3
a1ffe7
- Removing PDF docs with unclear licensing from the source archive
a1ffe7
- Fixing the license tag
a1ffe7
a1ffe7
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.20.7-2
a1ffe7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
a1ffe7
a1ffe7
* Fri Jul 19 2013 Jaromir Capik <jcapik@redhat.com> - 1.20.7-1
a1ffe7
- Update to 1.20.7
a1ffe7
a1ffe7
* Wed Jul 03 2013 Jaromir Capik <jcapik@redhat.com> - 1.20.6-33
a1ffe7
- Replacing systemd unit path with _unitdir macro
a1ffe7
a1ffe7
* Wed Jul 03 2013 Jaromir Capik <jcapik@redhat.com> - 1.20.6-32
a1ffe7
- Fixing full RELRO ... bind_now -> now (#884017)
a1ffe7
a1ffe7
* Mon Apr 08 2013 Jaromir Capik <jcapik@redhat.com> - 1.20.6-31
a1ffe7
- fixing bogus dates in the changelog
a1ffe7
a1ffe7
* Thu Mar 28 2013 Jaromir Capik <jcapik@redhat.com> - 1.20.6-30
a1ffe7
- aarch64 support (#925474)
a1ffe7
a1ffe7
* Wed Mar 06 2013 Jaromir Capik <jcapik@redhat.com> - 1.20.6-29
a1ffe7
- Removing OPTFLAGS
a1ffe7
- Introducing full RELRO
a1ffe7
- Missing header dir in Makefile.in / depend
a1ffe7
- Fixing UsrMove for i686 (mv -f says 'directory not empty')
a1ffe7
a1ffe7
* Wed Mar 06 2013 Jaromir Capik <jcapik@redhat.com> - 1.20.6-28
a1ffe7
- Adding missing requires
a1ffe7
- Passing OPTFLAGS to make
a1ffe7
- UsrMove
a1ffe7
a1ffe7
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.20.6-27
a1ffe7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
a1ffe7
a1ffe7
* Thu Jan 03 2013 Jaromir Capik <jcapik@redhat.com> - 1.20.6-26
a1ffe7
- Removing bundled 'inputattach' tool (#875604)
a1ffe7
- ...gonna be shipped separately (linuxconsoletools)
a1ffe7
a1ffe7
* Mon Sep 17 2012 Václav Pavlín <vpavlin@redhat.com> - 1.20.6-25
a1ffe7
- Scriptlets replaced with new systemd macros (#850134)
a1ffe7
a1ffe7
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.20.6-24
a1ffe7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
a1ffe7
a1ffe7
* Mon Apr 16 2012 Peter Hutterer <peter.hutterer@redhat.com> 1.20.6-23
a1ffe7
- Add w8001 support to inputattach (#645235)
a1ffe7
a1ffe7
* Tue Jan 24 2012 Nikola Pajkovsky <npajkovs@redhat.com> - 1.20.6-22
a1ffe7
- 668480 - gpm-types(7) manpage fixes
a1ffe7
a1ffe7
* Tue Jan 24 2012 Nikola Pajkovsky <npajkovs@redhat.com> - 1.20.6-21
a1ffe7
- 753627 - Get an error message when installing the gpm package via yum
a1ffe7
a1ffe7
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.20.6-20
a1ffe7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
a1ffe7
a1ffe7
* Sun Dec  4 2011 Ville Skyttä <ville.skytta@iki.fi> - 1.20.6-19
a1ffe7
- Move scriptlet ldconfig calls from main package to -libs.
a1ffe7
a1ffe7
* Fri Aug 05 2011 Nikola Pajkovsky <npajkovs@redhat.com> 1.20.6-18
a1ffe7
- unpackaged files (do not install t-mouse.el)
a1ffe7
a1ffe7
* Tue Jul 26 2011 Jóhann B. Guðmundsson <johannbg@gmail.com> - 1.20.6-17
a1ffe7
- Drop SysV support
a1ffe7
a1ffe7
* Thu May 05 2011 Bill Nottingham <notting@redhat.com> 1.20.6-16
a1ffe7
- Fix systemd scriptlets
a1ffe7
a1ffe7
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.20.6-15
a1ffe7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
a1ffe7
a1ffe7
* Mon Oct 25 2010 Nikola Pajkovsky <npajkovs@redhat.com> 1.20.6-14
a1ffe7
- fix url and source0(yaneti@declera.com)
a1ffe7
a1ffe7
* Tue Oct 19 2010 Nikola Pajkovsky <npajkovs@redhat.com> 1.20.6-13
a1ffe7
- 644318 - Incomplete systemd service file for gpm(yaneti@declera.com)
a1ffe7
a1ffe7
* Mon Oct 18 2010 Nikola Pajkovsky <npajkovs@redhat.com> 2.20.6-12
a1ffe7
- disable debuging mode in gpm.service
a1ffe7
a1ffe7
* Thu Aug 19 2010 Nikola Pajkovsky <npajkovs@redhat.com> 1.20.6-11
a1ffe7
- Resolved: #617327, #622665, #624253
a1ffe7
a1ffe7
* Wed Aug 11 2010 Nikola Pajkovsky <npajkovs@redhat.com> 1.20.6-10
a1ffe7
- Providing native systemd file for upcoming F14 Feature Systemd
a1ffe7
a1ffe7
* Thu Dec 10 2009 Nikola Pajkovsky <npajkovs@redhat.com> 1.20.6-9
a1ffe7
- add try-restart into gpm.init to be more LSB-compilant
a1ffe7
a1ffe7
* Thu Nov 19 2009 Nikola Pajkovsky <npajkovs@redhat.com> 1.20.6-8
a1ffe7
- drop patch7
a1ffe7
- resolved #537724(does not work with capabilities)
a1ffe7
a1ffe7
* Wed Sep 30 2009 Nikola Pajkovsky <npajkovs@redhat.com> 1.20.6-7
a1ffe7
- add BuildRequires: libcap-ng-devel
a1ffe7
- fix patch .capability
a1ffe7
a1ffe7
* Thu Aug 20 2009 Zdenek Prikryl <zprikryl@redhat.com> 1.20.6-6
a1ffe7
- Don't complain if installing with --excludedocs (#515927)
a1ffe7
- Drop unnecessary capabilities in gpm (#517659)
a1ffe7
a1ffe7
* Wed Aug 12 2009 Ville Skyttä <ville.skytta@iki.fi> - 1.20.6-5
a1ffe7
- Use lzma compressed upstream tarball.
a1ffe7
a1ffe7
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.20.6-4
a1ffe7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
a1ffe7
a1ffe7
* Tue Apr 14 2009 Zdenek Prikryl <zprikryl@redhat.com> 1.20.6-3
a1ffe7
- created new subpackage gpm-libs (#495124)
a1ffe7
a1ffe7
* Tue Feb 24 2009 Zdenek Prikryl <zprikryl@redhat.com> - 1.20.6-2
a1ffe7
- Fixed gpm.info.gz building
a1ffe7
a1ffe7
* Tue Feb 03 2009 Zdenek Prikryl <zprikryl@redhat.com> - 1.20.6-1
a1ffe7
- Spec review (#225856)
a1ffe7
- Updated to 1.20.6
a1ffe7
a1ffe7
* Tue Dec 02 2008 Zdenek Prikryl <zprikryl@redhat.com> - 1.20.5-2
a1ffe7
- Fixed debug mode (#473422)
a1ffe7
- Fixed description in init script (#474337)
a1ffe7
a1ffe7
* Thu Jul 17 2008 Zdenek Prikryl <zprikryl@redhat.com> - 1.20.5-1
a1ffe7
- Updated to 1.20.5
a1ffe7
- Removed doc patch
a1ffe7
- Removed lisp stuff, it is part of emacs-common now 
a1ffe7
- Spec clean up
a1ffe7
a1ffe7
* Wed Jun 04 2008 Zdenek Prikryl <zprikryl@redhat.com> - 1.20.3-2
a1ffe7
- Enable gpm in runlevel 5
a1ffe7
a1ffe7
* Thu May 29 2008 Zdenek Prikryl <zprikryl@redhat.com> - 1.20.3-1
a1ffe7
- Updated to 1.20.3
a1ffe7
- Fixed init script to comply with LSB standard (#246937)
a1ffe7
- Mass patch cleanup
a1ffe7
- Fixed typo in doc (#446679)
a1ffe7
a1ffe7
* Wed Feb 20 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 1.20.1-90
a1ffe7
- Autorebuild for GCC 4.3
a1ffe7
a1ffe7
* Fri Aug 24 2007 Tomas Janousek <tjanouse@redhat.com> - 1.20.1-89
a1ffe7
- license tag update (and rebuild for BuildID, etc.)
a1ffe7
a1ffe7
* Wed Jul 25 2007 Jesse Keating <jkeating@redhat.com> - 1.20.1-88
a1ffe7
- Rebuild for RH #249435
a1ffe7
a1ffe7
* Tue Jul 24 2007 Tomas Janousek <tjanouse@redhat.com> - 1.20.1-87
a1ffe7
- replace OPEN_MAX with sysconf(_SC_OPEN_MAX), fixing build with 2.6.23 kernel
a1ffe7
a1ffe7
* Tue Jul 24 2007 Tomas Janousek <tjanouse@redhat.com> - 1.20.1-86
a1ffe7
- don't install t-mouse.el, emacs-common contains a newer version,
a1ffe7
  fixes #249362
a1ffe7
a1ffe7
* Fri Jun 29 2007 Tomas Janousek <tjanouse@redhat.com> - 1.20.1-85
a1ffe7
- applied patch for #246219, fixing segfault with vsyslog on x86_64
a1ffe7
a1ffe7
* Wed May 23 2007 Tomas Janousek <tjanouse@redhat.com> - 1.20.1-84
a1ffe7
- applied patch for #240389, fixing default handlers
a1ffe7
a1ffe7
* Thu May 03 2007 Tomas Janousek <tjanouse@redhat.com> - 1.20.1-83
a1ffe7
- gpm-devel now requires version-release correctly, fixes #238785
a1ffe7
a1ffe7
* Mon Apr 02 2007 Tomas Janousek <tjanouse@redhat.com> - 1.20.1-82
a1ffe7
- updated inputattach.c to 1.24 from cvs, fixes #231635
a1ffe7
a1ffe7
* Fri Mar 23 2007 Tomas Janousek <tjanouse@redhat.com> - 1.20.1-81
a1ffe7
- the patch for #168076 caused a strange behaviour with ncurses, fixed it
a1ffe7
  differently
a1ffe7
a1ffe7
* Mon Jan 22 2007 Tomas Janousek <tjanouse@redhat.com> - 1.20.1-80
a1ffe7
- forgot to add the patch for #168076
a1ffe7
a1ffe7
* Mon Jan 22 2007 Tomas Janousek <tjanouse@redhat.com> - 1.20.1-79
a1ffe7
- added disttag to release
a1ffe7
a1ffe7
* Mon Jan 22 2007 Tomas Janousek <tjanouse@redhat.com> - 1.20.1-78
a1ffe7
- refuse connections while waiting for console, fixes #168076
a1ffe7
a1ffe7
* Mon Jan 22 2007 Tomas Janousek <tjanouse@redhat.com> - 1.20.1-77
a1ffe7
- #223696: non-failsafe install-info use in scriptlets
a1ffe7
a1ffe7
* Tue Oct 10 2006 Petr Rockai <prockai@redhat.com> - 1.20-1-76
a1ffe7
- align sleeps to tick boundary, should reduce cpu wakeups
a1ffe7
  on laptops, fixes #205064 (patch by Arjan van de Ven)
a1ffe7
- disable gpm altogether in runlevel 5, it is probably not
a1ffe7
  worth the overhead considering it is barely used at all
a1ffe7
a1ffe7
* Fri Sep 22 2006 Petr Rockai <prockai@redhat.com> - 1.20.1-75
a1ffe7
- fix a bug where gpm daemon kept stdin/out/err open after
a1ffe7
  detaching from terminal, causing eg. pipes from initscript
a1ffe7
  to hang for the lifetime of gpm
a1ffe7
a1ffe7
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 1.20.1-74.1
a1ffe7
- rebuild
a1ffe7
a1ffe7
* Wed Jun  7 2006 Jeremy Katz <katzj@redhat.com> - 1.20.1-74
a1ffe7
- rebuild for -devel deps
a1ffe7
a1ffe7
* Mon Feb 13 2006 Petr Rockai <prockai@redhat.com> - 1.20.1-73.3
a1ffe7
- rebuild due to failure on x86-64 (possibly a glitch?)
a1ffe7
a1ffe7
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 1.20.1-73.2
a1ffe7
- bump again for double-long bug on ppc(64)
a1ffe7
a1ffe7
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 1.20.1-73.1
a1ffe7
- rebuilt for new gcc4.1 snapshot and glibc changes
a1ffe7
a1ffe7
* Wed Jan 18 2006 Petr Rockai <prockai@redhat.com> 1.20.1-73
a1ffe7
- do not ooops in gpm when console device cannot be found, print
a1ffe7
  an error message instead and exit(1), as per BR 140025, 176178
a1ffe7
- do not print messages in libgpm, unless envvar GPM_VERBOSE
a1ffe7
  is set -- avoids unwanted clutter from libgpm in apps like dialog
a1ffe7
  or mc when gpm is not available
a1ffe7
a1ffe7
* Thu Dec 22 2005 Jesse Keating <jkeating@redhat.com> 1.20.1-72
a1ffe7
- rebuilt again
a1ffe7
a1ffe7
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
a1ffe7
- rebuilt
a1ffe7
- added autoconf as a BuildReq
a1ffe7
a1ffe7
* Fri Mar 04 2005 Petr Rockai <prockai@redhat.com>
a1ffe7
- rebuilt
a1ffe7
a1ffe7
* Mon Feb 14 2005 Adrian Havill <havill@redhat.com>
a1ffe7
- rebuilt
a1ffe7
a1ffe7
* Thu Oct 21 2004 Adrian Havill <havill@redhat.com> 1.20.1-66
a1ffe7
- avoid spawning multiple copies of inputattach, and kill process
a1ffe7
  when gpm shuts down (#135776)
a1ffe7
a1ffe7
* Wed Oct 20 2004 Bill Nottingham <notting@redhat.com> 1.20.1-65
a1ffe7
- remove buildroot paths from gpm.info, fixing #135305
a1ffe7
a1ffe7
* Wed Oct 20 2004 Adrian Havill <havill@redhat.com> 1.20.1-64
a1ffe7
- fixing multilib conflict (#135305):
a1ffe7
  o remove buildsys check/conditional for gziping info pages (let rpm
a1ffe7
    do it)
a1ffe7
  o don't pre-byte-compile emacs code
a1ffe7
a1ffe7
* Thu Oct 14 2004 Bill Nottingham <notting@redhat.com> 1.20.1-62
a1ffe7
- fix remaining sourcing of /etc/sysconfig/gpm (#135776)
a1ffe7
a1ffe7
* Wed Oct 13 2004 Adrian Havill <havill@redhat.com> 1.20.1-61
a1ffe7
- remove unnecessary diagnostic and check of the consolename (#129962)
a1ffe7
- remove /etc/sysconfig/gpm; set unset defaults in the init script instead
a1ffe7
  after mousecfg is (or is not) read
a1ffe7
a1ffe7
* Wed Oct 13 2004 Florian La Roche <laroche@redhat.com>
a1ffe7
- sysconfig/gpm should probably go away, that is more confusing than
a1ffe7
  helping anyone
a1ffe7
- read at least sysconfig/gpm first as it seems to have the default values
a1ffe7
  and sysconfig/mouse is getting probed values and probably has better
a1ffe7
  settings in it.
a1ffe7
a1ffe7
* Tue Oct 12 2004 Adrian Havill <havill@redhat.com> 1.20.1-57
a1ffe7
- read both the sysconfig/mouse and sysconfig/gpm (preferrence to gpm
a1ffe7
  settings), not just one of them, if both exist (#134389)
a1ffe7
a1ffe7
* Tue Oct 12 2004 Florian La Roche <Florian.LaRoche@redhat.de>
a1ffe7
- remove gzip of info pages within .spec file, #135305
a1ffe7
a1ffe7
* Sat Oct 09 2004 Florian La Roche <Florian.LaRoche@redhat.de>
a1ffe7
- initscript cleanup
a1ffe7
a1ffe7
* Thu Sep 23 2004 Adrian Havill <havill@redhat.com> 1.20.1-54
a1ffe7
- change init so that MOUSECFG fallsback to /etc/sysconfig/gpm if
a1ffe7
  /etc/sysconfig/mouse doesn't exist (#133141)
a1ffe7
- fixed compile vs new kernheaders (#131783)
a1ffe7
a1ffe7
* Tue May 04 2004 Adrian Havill <havill@redhat.com> 1.20.1-49
a1ffe7
- remove superfluous "i die" msg (#121845)
a1ffe7
a1ffe7
* Tue May 04 2004 Adrian Havill <havill@redhat.com> 1.20.1-48
a1ffe7
- restore gpmopen() NULL check that was removed with the
a1ffe7
  evdev superpatch (#118554)
a1ffe7
a1ffe7
* Fri Apr 16 2004 Adrian Havill <havill@redhat.com> 1.20.1-47
a1ffe7
- make presence of t-mouse.el flexible (#120958)
a1ffe7
a1ffe7
* Wed Mar 31 2004 Adrian Havill <havill@redhat.com> 1.20.1-46
a1ffe7
- revise nodebug patch as liblow reporting the VC to the console through
a1ffe7
  stderr has re-appeared (#117676)
a1ffe7
a1ffe7
* Mon Mar 22 2004 Adrian Havill <havill@redhat.com> 1.20.1-45
a1ffe7
- remove circular ncurses dep for prelink by restoring wgetch
a1ffe7
  patch (#117150)
a1ffe7
a1ffe7
* Wed Mar 17 2004 Bill Nottingham <notting@redhat.com> 1.20.1-44
a1ffe7
- include inputattach
a1ffe7
- if configured mouse has IMOUSETYPE, use inputattach
a1ffe7
a1ffe7
* Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com>
a1ffe7
- rebuilt
a1ffe7
a1ffe7
* Thu Feb 26 2004 Adrian Havill <havill@redhat.com> 1.20.1-43
a1ffe7
- add event device (for 2.6 kernel) superpatch-- includes all
a1ffe7
  patches up to release 38; thanks to Dmitry Torokhov
a1ffe7
- change default mouse device over to /dev/input/mice
a1ffe7
- set mouse type to Intellimouse Explorer (exps2), which is what
a1ffe7
  the 2.6 kernel exports by default
a1ffe7
a1ffe7
* Sat Feb 14 2004 Florian La Roche <Florian.LaRoche@redhat.de>
a1ffe7
- already add shared lib symlinks at install time
a1ffe7
- fix subscript #114289
a1ffe7
a1ffe7
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
a1ffe7
- rebuilt
a1ffe7
a1ffe7
* Tue Nov 18 2003 Adrian Havill <havill@redhat.com> 1.20.1-39
a1ffe7
- re-add the $OPTIONS that gets pulled in from /etc/sysconfig/gpm
a1ffe7
  to the init.d script (#110248)
a1ffe7
a1ffe7
* Thu Aug 07 2003 Adrian Havill <havill@redhat.com> 1.20.1-38
a1ffe7
- Gpm_Open() NULL deref revisited (#101104). Patch by
a1ffe7
  <leonardjo@hetnet.nl>
a1ffe7
* Wed Jul 30 2003 Adrian Havill <havill@redhat.com> 1.20.1-37
a1ffe7
- removed auto-add of repeat with -M (#84310)
a1ffe7
a1ffe7
* Tue Jul 29 2003 Adrian Havill <havill@redhat.com> 1.20.1-36
a1ffe7
- fixed grammar typos in the init script (#89109)
a1ffe7
- don't deref NULL string in Gpm_Open (#101104)
a1ffe7
a1ffe7
* Wed Jul 02 2003 Adrian Havill <havill@redhat.com> 1.20.1-35
a1ffe7
- remove debug output from gpm_report() to prevent spurious
a1ffe7
  debugging msgs even when not in debug mode (#98210)
a1ffe7
  
a1ffe7
* Thu Jun 26 2003 Adrian Havill <havill@redhat.com> 1.20.1-33
a1ffe7
- reversed -t and -m params in init script, removed $OPTION
a1ffe7
- add doc blurb regarding no auto-repeat with multiple mice
a1ffe7
a1ffe7
* Tue Jun 24 2003 Adrian Havill <havill@redhat.com> 1.20.1-32
a1ffe7
- update version
a1ffe7
- add -lm for ceil()
a1ffe7
- add hltest, mouse-test for all but zSeries
a1ffe7
a1ffe7
* Mon Jun 16 2003 Jakub Jelinek <jakub@redhat.com>
a1ffe7
- don't link against -lncurses, instead make wgetch and stdscr weak
a1ffe7
  undefined symbols to break library dependency cycle
a1ffe7
a1ffe7
* Thu Jun 12 2003 Elliot Lee <sopwith@redhat.com>
a1ffe7
- Remove pam requirement
a1ffe7
a1ffe7
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
a1ffe7
- rebuilt
a1ffe7
a1ffe7
* Wed Jan 29 2003 Bill Nottingham <notting@redhat.com> 1.19.13-27
a1ffe7
- ship libraries on s390/s390x
a1ffe7
a1ffe7
* Wed Jan 22 2003 Tim Powers <timp@redhat.com>
a1ffe7
- rebuilt
a1ffe7
a1ffe7
* Mon Jan 13 2003 Bill Nottingham <notting@redhat.com> 1.19.13-25
a1ffe7
- don't automatically enable the repeater when '-M' is in use
a1ffe7
a1ffe7
* Fri Nov 22 2002 Tim Powers <timp@redhat.com>
a1ffe7
- remove unpackaged files from the buildroot
a1ffe7
a1ffe7
* Fri Jun 21 2002 Tim Powers <timp@redhat.com>
a1ffe7
- automated rebuild
a1ffe7
a1ffe7
* Thu May 23 2002 Tim Powers <timp@redhat.com>
a1ffe7
- automated rebuild
a1ffe7
a1ffe7
* Tue Apr  9 2002 Bernhard Rosenkraenzer <bero@redhat.com> 
a1ffe7
- Revert to the version from 7.2 because later versions have some grave
a1ffe7
  issues I can't {reproduce,debug} with my hardware, such as
a1ffe7
  #62540 and #61691
a1ffe7
a1ffe7
* Thu Jul 19 2001 Preston Brown <pbrown@redhat.com>
a1ffe7
- more documentation fixes for Netmouse type devices (#48885)
a1ffe7
a1ffe7
* Tue Jun 26 2001 Florian La Roche <Florian.LaRoche@redhat.de>
a1ffe7
- add link from library major version number
a1ffe7
a1ffe7
* Mon Jun 25 2001 Preston Brown <pbrown@redhat.com>
a1ffe7
- small fixlet in init script (#36995)
a1ffe7
a1ffe7
* Tue Jun 19 2001 Florian La Roche <Florian.LaRoche@redhat.de>
a1ffe7
- add ExcludeArch: s390 s390x
a1ffe7
a1ffe7
* Fri Apr  6 2001 Preston Brown <pbrown@redhat.com>
a1ffe7
- work better with unsupported devfs (#23500, #34883)
a1ffe7
a1ffe7
* Mon Feb 05 2001 Karsten Hopp <karsten@redhat.de>
a1ffe7
- found another bug: tmpfile was never removed if
a1ffe7
  gpm was already running
a1ffe7
a1ffe7
* Mon Feb 05 2001 Karsten Hopp <karsten@redhat.de>
a1ffe7
- really fix tmpfile path
a1ffe7
a1ffe7
* Mon Feb 05 2001 Karsten Hopp <karsten@redhat.de>
a1ffe7
- fix tmpfile path (bugzilla  #25967)
a1ffe7
a1ffe7
* Tue Jan 30 2001 Preston Brown <pbrown@redhat.com>
a1ffe7
- don't make PID file world-writable.
a1ffe7
a1ffe7
* Mon Jan 29 2001 Preston Brown <pbrown@redhat.com>
a1ffe7
- fix up devel dependency on main package
a1ffe7
a1ffe7
* Sun Jan 28 2001 Bernhard Rosenkraenzer <bero@redhat.com>
a1ffe7
- Don't crash if we can't open /dev/console
a1ffe7
  (Happens with some devfs enabled kernels)
a1ffe7
a1ffe7
* Tue Jan 23 2001 Trond Eivind Glomsr�d <teg@redhat.com>
a1ffe7
- fix bug in i18n of initscript
a1ffe7
a1ffe7
* Tue Jan 23 2001 Preston Brown <pbrown@redhat.com>
a1ffe7
- bash2 style of i18n for initscript
a1ffe7
a1ffe7
* Wed Jan 17 2001 Preston Brown <pbrown@redhat.com>
a1ffe7
- i18n the initscript.
a1ffe7
a1ffe7
* Thu Jan 11 2001 Bernhard Rosenkraenzer <bero@redhat.com>
a1ffe7
- Add hooks for extra options in /etc/sysconfig/gpm (#23547)
a1ffe7
a1ffe7
* Fri Jan 05 2001 Preston Brown <pbrown@redhat.com>
a1ffe7
- patch added to abort if running on a serial console (#15784)
a1ffe7
a1ffe7
* Fri Jul 28 2000 Preston Brown <pbrown@redhat.com>
a1ffe7
- cleaned up post section
a1ffe7
a1ffe7
* Wed Jul 26 2000 Preston Brown <pbrown@redhat.com>
a1ffe7
- clarification: pam requirement added to fix permissions on /dev/gpmctl (#12849)
a1ffe7
a1ffe7
* Sat Jul 22 2000 Florian La Roche <Florian.LaRoche@redhat.de>
a1ffe7
- update to 1.19.3
a1ffe7
a1ffe7
* Sat Jul 15 2000 Bill Nottingham <notting@redhat.com>
a1ffe7
- move initscript back
a1ffe7
a1ffe7
* Thu Jul 13 2000 Prospector <bugzilla@redhat.com>
a1ffe7
- automatic rebuild
a1ffe7
a1ffe7
* Fri Jun 30 2000 Matt Wilson <msw@redhat.com>
a1ffe7
- use sysconf(_SC_OPEN_MAX)
a1ffe7
a1ffe7
* Tue Jun 27 2000 Preston Brown <pbrown@redhat.com>
a1ffe7
- don't prereq, only require initscripts
a1ffe7
a1ffe7
* Mon Jun 26 2000 Preston Brown <pbrown@redhat.com>
a1ffe7
- fix up and move initscript
a1ffe7
- prereq initscripts >= 5.20
a1ffe7
a1ffe7
* Sat Jun 17 2000 Bill Nottingham <notting@redhat.com>
a1ffe7
- fix %%config tag for initscript
a1ffe7
a1ffe7
* Thu Jun 15 2000 Bill Nottingham <notting@redhat.com>
a1ffe7
- move it back
a1ffe7
a1ffe7
* Thu Jun 15 2000 Preston Brown <pbrown@redhat.com>
a1ffe7
- move init script
a1ffe7
a1ffe7
* Wed Jun 14 2000 Preston Brown <pbrown@redhat.com>
a1ffe7
- security patch on socket descriptor from Chris Evans.  Thanks Chris.
a1ffe7
- include limits.h for OPEN_MAX
a1ffe7
a1ffe7
* Mon Jun 12 2000 Preston Brown <pbrown@redhat.com>
a1ffe7
- 1.19.2, fix up root (setuid) patch
a1ffe7
- FHS paths
a1ffe7
a1ffe7
* Thu Apr  6 2000 Jakub Jelinek <jakub@redhat.com>
a1ffe7
- 1.19.1
a1ffe7
- call initgroups in gpm-root before spawning command as user
a1ffe7
- make gpm-root work on big endian
a1ffe7
a1ffe7
* Sun Mar 26 2000 Florian La Roche <Florian.LaRoche@redhat.com>
a1ffe7
- call ldconfig directly in postun
a1ffe7
a1ffe7
* Wed Mar 22 2000 Bernhard Rosenkraenzer <bero@redhat.com>
a1ffe7
- rebuild with new libncurses
a1ffe7
a1ffe7
* Sat Mar 18 2000 Bernhard Rosenkraenzer <bero@redhat.com>
a1ffe7
- 1.19.0
a1ffe7
- fix build on systems that don't have emacs
a1ffe7
  (configure built t-mouse* only if emacs was installed)
a1ffe7
a1ffe7
* Tue Feb 29 2000 Preston Brown <pbrown@redhat.com>
a1ffe7
- important fix: improperly buildrooted for /usr/share/emacs/site-lisp, fixed.
a1ffe7
a1ffe7
* Tue Feb 15 2000 Jakub Jelinek <jakub@redhat.com>
a1ffe7
- avoid cluttering of syslog with gpm No data messages
a1ffe7
a1ffe7
* Mon Feb 14 2000 Preston Brown <pbrown@redhat.com>
a1ffe7
- disable-paste and mouse-test removed, they seem broken.
a1ffe7
a1ffe7
* Thu Feb 03 2000 Preston Brown <pbrown@redhat.com>
a1ffe7
- updated gpm.init to have better shutdown and descriptive messages
a1ffe7
- strip lib
a1ffe7
a1ffe7
* Wed Feb 02 2000 Cristian Gafton <gafton@redhat.com>
a1ffe7
- fix description
a1ffe7
- man pages are compressed
a1ffe7
a1ffe7
* Wed Jan 12 2000 Preston Brown <pbrown@redhat.com>
a1ffe7
- 1.18.1.
a1ffe7
a1ffe7
* Tue Sep 28 1999 Preston Brown <pbrown@redhat.com>
a1ffe7
- upgraded to 1.18, hopefully fixes sparc protocol issues
a1ffe7
a1ffe7
* Fri Sep 24 1999 Bill Nottingham <notting@redhat.com>
a1ffe7
- install-info sucks, and then you die.
a1ffe7
a1ffe7
* Fri Sep 10 1999 Bill Nottingham <notting@redhat.com>
a1ffe7
- chkconfig --del in %%preun, not %%postun
a1ffe7
a1ffe7
* Fri Aug 27 1999 Preston Brown <pbrown@redhat.com>
a1ffe7
- upgrade to 1.17.9
a1ffe7
- the maintainers are taking care of .so version now, removed patch
a1ffe7
a1ffe7
* Mon Aug 16 1999 Bill Nottingham <notting@redhat.com>
a1ffe7
- initscript munging
a1ffe7
a1ffe7
* Wed Jun  2 1999 Jeff Johnson <jbj@redhat.com>
a1ffe7
- disable-paste need not be setuid root in Red Hat 6.0 (#2654)
a1ffe7
a1ffe7
* Tue May 18 1999 Michael K. Johnson <johnsonm@redhat.com>
a1ffe7
- gpm.init had wrong pidfile name in comments; confused linuxconf
a1ffe7
a1ffe7
* Mon Mar 22 1999 Preston Brown <pbrown@redhat.com>
a1ffe7
- make sure all binaries are stripped, make init stuff more chkconfig style
a1ffe7
- removed sparc-specific mouse stuff
a1ffe7
- bumped libver to 1.17.5
a1ffe7
- fixed texinfo source
a1ffe7
a1ffe7
* Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com> 
a1ffe7
- auto rebuild in the new build environment (release 2)
a1ffe7
a1ffe7
* Thu Mar  4 1999 Matt Wilson <msw@redhat.com>
a1ffe7
- updated to 1.75.5
a1ffe7
a1ffe7
* Tue Feb 16 1999 Cristian Gafton <gafton@redhat.com>
a1ffe7
- avoid using makedev for internal functions (it is a #define in the system
a1ffe7
  headers)
a1ffe7
a1ffe7
* Wed Jan 13 1999 Preston Brown <pbrown@redhat.com>
a1ffe7
- upgrade to 1.17.2.
a1ffe7
a1ffe7
* Wed Jan 06 1999 Cristian Gafton <gafton@redhat.com>
a1ffe7
- enforce the use of -D_GNU_SOURCE so that it will compile on the ARM
a1ffe7
- build against glibc 2.1
a1ffe7
a1ffe7
* Tue Aug 11 1998 Jeff Johnson <jbj@redhat.com>
a1ffe7
- build root
a1ffe7
a1ffe7
* Thu May 07 1998 Prospector System <bugs@redhat.com>
a1ffe7
- translations modified for de, fr, tr
a1ffe7
a1ffe7
* Wed Apr 22 1998 Michael K. Johnson <johnsonm@redhat.com>
a1ffe7
- enhanced initscript
a1ffe7
a1ffe7
* Fri Apr 10 1998 Cristian Gafton <gafton@redhat.com>
a1ffe7
- recompiled for manhattan
a1ffe7
a1ffe7
* Wed Apr 08 1998 Erik Troan <ewt@redhat.com>
a1ffe7
- updated to 1.13
a1ffe7
a1ffe7
* Mon Nov 03 1997 Donnie Barnes <djb@redhat.com>
a1ffe7
- added patch from Richard to get things to build on the SPARC
a1ffe7
a1ffe7
* Tue Oct 28 1997 Donnie Barnes <djb@redhat.com>
a1ffe7
- fixed the emacs patch to install the emacs files in the right
a1ffe7
  place (hopefully).
a1ffe7
a1ffe7
* Mon Oct 13 1997 Erik Troan <ewt@redhat.com>
a1ffe7
- added chkconfig support
a1ffe7
- added install-info
a1ffe7
a1ffe7
* Thu Sep 11 1997 Donald Barnes <djb@redhat.com>
a1ffe7
- upgraded from 1.10 to 1.12
a1ffe7
- added status/restart functionality to init script
a1ffe7
- added define LIBVER 1.11
a1ffe7
a1ffe7
* Thu Jun 19 1997 Erik Troan <ewt@redhat.com>
a1ffe7
- built against glibc