Blame SPECS/gpm.spec

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