e0b30b
# The testsuite is unsuitable for running on buildsystems
e0b30b
%global tests_enabled 0
e0b30b
e0b30b
Summary: System and process monitoring utilities
e0b30b
Name: procps-ng
DistroBaker 190a06
Version: 3.3.17
Jan Rybar ef4d31
Release: 6%{?dist}
e0b30b
License: GPL+ and GPLv2 and GPLv2+ and GPLv3+ and LGPLv2+
e0b30b
URL: https://sourceforge.net/projects/procps-ng/
e0b30b
DistroBaker 9a55b8
Source0: https://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.xz
e0b30b
# README files are missing in latest tarball
e0b30b
# wget https://gitlab.com/procps-ng/procps/raw/e0784ddaed30d095bb1d9a8ad6b5a23d10a212c4/README.md
e0b30b
Source1: README.md
e0b30b
# wget https://gitlab.com/procps-ng/procps/raw/e0784ddaed30d095bb1d9a8ad6b5a23d10a212c4/top/README.top
e0b30b
Source2: README.top
e0b30b
DistroBaker 190a06
Patch1: pwait-to-pidwait.patch
Jan Rybar 24b2b8
Patch2: covscan_findings.patch
Jan Rybar ef095b
Patch3: uptime-pretty-mod.patch
Jan Rybar ef4d31
Patch4: free-new-used-calc.patch
Jan Rybar ef4d31
Patch5: sysctl-support-systemd-globs.patch
DistroBaker 190a06
e0b30b
DistroBaker 9a55b8
BuildRequires: make
e0b30b
BuildRequires: ncurses-devel
e0b30b
BuildRequires: libtool
e0b30b
BuildRequires: autoconf
e0b30b
BuildRequires: automake
e0b30b
BuildRequires: gcc
e0b30b
BuildRequires: gettext-devel
e0b30b
BuildRequires: systemd-devel
e0b30b
BuildRequires: git
DistroBaker 190a06
BuildRequires: po4a
e0b30b
e0b30b
%if %{tests_enabled}
e0b30b
BuildRequires: dejagnu
e0b30b
%endif
e0b30b
e0b30b
Provides: procps = %{version}-%{release}
e0b30b
Obsoletes: procps < 3.2.9-1
e0b30b
e0b30b
# usrmove hack - will be removed once initscripts are fixed
e0b30b
Provides: /sbin/sysctl
e0b30b
Provides: /bin/ps
e0b30b
e0b30b
e0b30b
%description
e0b30b
The procps package contains a set of system utilities that provide
e0b30b
system information. Procps includes ps, free, skill, pkill, pgrep,
DistroBaker 190a06
snice, tload, top, uptime, vmstat, pidof, pmap, slabtop, w, watch,
DistroBaker 190a06
pwdx and pidwait.
e0b30b
The ps command displays a snapshot of running processes. The top command
e0b30b
provides a repetitive update of the statuses of running processes.
e0b30b
The free command displays the amounts of free and used memory on your
e0b30b
system. The skill command sends a terminate command (or another
e0b30b
specified signal) to a specified set of processes. The snice
e0b30b
command is used to change the scheduling priority of specified
e0b30b
processes. The tload command prints a graph of the current system
e0b30b
load average to a specified tty. The uptime command displays the
e0b30b
current time, how long the system has been running, how many users
e0b30b
are logged on, and system load averages for the past one, five,
e0b30b
and fifteen minutes. The w command displays a list of the users
e0b30b
who are currently logged on and what they are running. The watch
e0b30b
program watches a running program. The vmstat command displays
e0b30b
virtual memory statistics about processes, memory, paging, block
e0b30b
I/O, traps, and CPU activity. The pwdx command reports the current
DistroBaker 190a06
working directory of a process or processes. The pidwait command
DistroBaker 190a06
waits for processes of specified names.
e0b30b
e0b30b
%package devel
e0b30b
Summary:  System and process monitoring utilities
e0b30b
Requires: %{name}%{?_isa} = %{version}-%{release}
e0b30b
Provides: procps-devel = %{version}-%{release}
e0b30b
Obsoletes: procps-devel < 3.2.9-1
e0b30b
e0b30b
%description devel
e0b30b
System and process monitoring utilities development headers
e0b30b
e0b30b
%package i18n
e0b30b
Summary:  Internationalization pack for procps-ng
e0b30b
Requires: %{name} = %{version}-%{release}
e0b30b
BuildArch: noarch
e0b30b
e0b30b
# fortunately the same release number for f21 and f22
e0b30b
Conflicts: man-pages-de < 1.7-3
e0b30b
Conflicts: man-pages-fr < 3.66-3
e0b30b
Conflicts: man-pages-pl < 0.7-5
e0b30b
e0b30b
%description i18n
e0b30b
Internationalization pack for procps-ng
e0b30b
e0b30b
%prep
DistroBaker 190a06
%setup -q -n procps-%{version}
Jan Rybar 24b2b8
%autopatch -p1
DistroBaker 190a06
e0b30b
cp -p %{SOURCE1} .
e0b30b
cp -p %{SOURCE2} top/
e0b30b
e0b30b
%build
e0b30b
# The following stuff is needed for git archives only
e0b30b
#echo "%{version}" > .tarball-version
e0b30b
#./autogen.sh
e0b30b
e0b30b
autoreconf --verbose --force --install
e0b30b
e0b30b
%configure \
e0b30b
           --exec-prefix=/ \
e0b30b
           --docdir=/unwanted \
e0b30b
           --disable-static \
e0b30b
           --disable-w-from \
e0b30b
           --disable-kill \
e0b30b
           --enable-watch8bit \
e0b30b
           --enable-skill \
e0b30b
           --enable-sigwinch \
e0b30b
           --enable-libselinux \
e0b30b
           --with-systemd \
DistroBaker 190a06
           --disable-modern-top\
DistroBaker 190a06
           --enable-pidwait
e0b30b
e0b30b
make CFLAGS="%{optflags}"
e0b30b
e0b30b
e0b30b
%if %{tests_enabled}
e0b30b
%check
e0b30b
make check
e0b30b
%endif
e0b30b
e0b30b
e0b30b
%install
e0b30b
%make_install
e0b30b
DistroBaker 190a06
# these are created by make, yet empty. This causes rpmbuild errors.
DistroBaker 190a06
rm -rf %{buildroot}%{_mandir}/{pl,pt_BR,sv}/man5
e0b30b
e0b30b
%find_lang %{name} --all-name --with-man
e0b30b
e0b30b
ln -s %{_bindir}/pidof %{buildroot}%{_sbindir}/pidof
e0b30b
e0b30b
%ldconfig_scriptlets
e0b30b
e0b30b
%files
e0b30b
%doc AUTHORS Documentation/bugs.md Documentation/FAQ NEWS README.md top/README.top Documentation/TODO
e0b30b
%license COPYING COPYING.LIB
e0b30b
%{_libdir}/libprocps.so.*
e0b30b
%{_bindir}/*
e0b30b
%{_sbindir}/*
e0b30b
%{_mandir}/man1/*
e0b30b
%{_mandir}/man8/*
e0b30b
%{_mandir}/man5/*
e0b30b
e0b30b
e0b30b
%exclude %{_libdir}/libprocps.la
e0b30b
%exclude /unwanted/*
e0b30b
e0b30b
%files devel
e0b30b
%license COPYING COPYING.LIB
e0b30b
%{_libdir}/libprocps.so
e0b30b
%{_libdir}/pkgconfig/libprocps.pc
e0b30b
%{_includedir}/proc
e0b30b
%{_mandir}/man3/*
e0b30b
e0b30b
%files i18n -f %{name}.lang
e0b30b
e0b30b
%changelog
Jan Rybar ef4d31
* Fri Jul 29 2022 Jan Rybar <jrybar@redhat.com> - 3.3.17-6
Jan Rybar ef4d31
- free: backport new 'used' calculation
Jan Rybar ef4d31
- sysctl: backport support of systemd glob patterns
Jan Rybar ef4d31
- Resolves: rhbz#2003033
Jan Rybar ef4d31
- Resolves: rhbz#2052536
Jan Rybar ef4d31
Jan Rybar ef095b
* Fri Mar 25 2022 Jan Rybar <jrybar@redhat.com> - 3.3.17-5
Jan Rybar ef095b
- uptime: human readable data not shown if 364 days up
Jan Rybar ef095b
- Resolves: rhbz#2067166
Jan Rybar ef095b
Mohan Boddu 6c3262
* Tue Aug 10 2021 Mohan Boddu <mboddu@redhat.com> - 3.3.17-4
Mohan Boddu 6c3262
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
Mohan Boddu 6c3262
  Related: rhbz#1991688
Mohan Boddu 6c3262
Jan Rybar 24b2b8
* Fri Jul 09 2021 Jan Rybar <jrybar@redhat.com> - 3.3.17-3
Jan Rybar 24b2b8
- Coverity scan findings fix
Jan Rybar 24b2b8
- Resolves: rhbz#1938848
Jan Rybar 24b2b8
Mohan Boddu 63cd08
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 3.3.17-2
Mohan Boddu 63cd08
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
Mohan Boddu 63cd08
DistroBaker 190a06
* Thu Feb 18 2021 Jan Rybar <jrybar@redhat.com> - 3.3.17-1
DistroBaker 190a06
- rebase to procps-ng-3.3.17
DistroBaker 190a06
- new distribution of i18n manpages
DistroBaker 190a06
- new pidwait command
DistroBaker 190a06
DistroBaker 1a5651
* Tue Feb 02 2021 Jan Rybar <jrybar@redhat.com> - 3.3.16-4
DistroBaker 1a5651
- version bump to apply latest specfile changes into build
DistroBaker 1a5651
DistroBaker 9a55b8
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 3.3.16-3
DistroBaker 9a55b8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
DistroBaker 9a55b8
DistroBaker 660347
* Tue Dec 22 2020 Jan Rybar <jrybar@redhat.com> - 3.3.16-2
DistroBaker 660347
- ps: new exe format option to show real path to exe
DistroBaker 660347
- pidof: new -w option to show kernel worker threads
DistroBaker 660347
- pkill: manpage to document -e option
DistroBaker 660347
- Resolves: bz#1629413
DistroBaker 660347
- Resolves: bz#1399206
DistroBaker 660347
e0b30b
* Tue Aug 18 2020 Jan Rybar <jrybar@redhat.com> - 3.3.16-1
e0b30b
- Rebase to newest upstream version
e0b30b
e0b30b
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 3.3.15-9
e0b30b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
e0b30b
e0b30b
* Fri Jul 24 2020 Jan Rybar <jrybar@redhat.com> - 3.3.15-8
e0b30b
- pidof: show PIDs for kernel worker threads
e0b30b
e0b30b
* Tue Jul 14 2020 Tom Stellard <tstellar@redhat.com> - 3.3.15-8
e0b30b
- Use make macros
e0b30b
- https://fedoraproject.org/wiki/Changes/UseMakeBuildInstallMacro
e0b30b
e0b30b
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 3.3.15-7
e0b30b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
e0b30b
e0b30b
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 3.3.15-6
e0b30b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
e0b30b
e0b30b
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 3.3.15-5
e0b30b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
e0b30b
e0b30b
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 3.3.15-4
e0b30b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
e0b30b
e0b30b
* Mon Jul 02 2018 Jan Rybar <jrybar@redhat.com> - 3.3.15-3
e0b30b
- Translated manual pages moved to i18n subpackage
e0b30b
- Spec file cleanup
e0b30b
e0b30b
* Thu Jun 14 2018 Jan Rybar <jrybar@redhat.com> - 3.3.15-2
e0b30b
- General rebuild after commit revert
e0b30b
e0b30b
* Wed Jun 06 2018 Jan Rybar <jrybar@redhat.com> - 3.3.15-1
e0b30b
- Rebase to 3.3.15 (contains a LOT of CVE fixes)
e0b30b
- Manpage translations temporarily unavailable
e0b30b
e0b30b
* Fri May 18 2018 Kamil Dudka <kdudka@redhat.com> - 3.3.14-2
e0b30b
- fix integer overflows leading to heap overflow (CVE-2018-1124 CVE-2018-1126)
e0b30b
e0b30b
* Mon Apr 16 2018 Jan Rybar <jrybar@redhat.com> - 3.3.14-1
e0b30b
- Rebase to 3.3.14
e0b30b
- Translated man-pages returned
e0b30b
e0b30b
* Thu Apr 05 2018 Jan Rybar <jrybar@redhat.com> - 3.3.13-2
e0b30b
- Build fails due to removal of libio.h from glibc-headers
e0b30b
- Translated manpages deactivated since missing from 3.3.13 tarball
e0b30b
e0b30b
* Tue Apr 03 2018 Jan Rybar <jrybar@redhat.com> - 3.3.13-1
e0b30b
- Rebase to 3.3.13
e0b30b
e0b30b
* Mon Feb 26 2018 Jan Rybar <jrybar@redhat.com> - 3.3.12-2
e0b30b
- ps: LUID (LoginID) format option available
e0b30b
e0b30b
* Wed Feb 21 2018 Michael Cronenworth <mike@cchtml.com> - 3.3.12-1
e0b30b
- Upgrading to 3.3.12
e0b30b
e0b30b
* Fri Feb 09 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 3.3.10-18
e0b30b
- Escape macros in %%changelog
e0b30b
e0b30b
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 3.3.10-17
e0b30b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
e0b30b
e0b30b
* Sat Feb 03 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 3.3.10-16
e0b30b
- Switch to %%ldconfig_scriptlets
e0b30b
e0b30b
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.3.10-15
e0b30b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
e0b30b
e0b30b
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.3.10-14
e0b30b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
e0b30b
e0b30b
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.3.10-13
e0b30b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
e0b30b
e0b30b
* Mon Nov 28 2016 Lubomir Rintel - 3.3.10-12
e0b30b
- Fix FTBFS with new systemd
e0b30b
e0b30b
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 3.3.10-11
e0b30b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
e0b30b
e0b30b
* Thu Jan 14 2016 Jaromir Capik <jcapik@redhat.com> - 3.3.10-10
e0b30b
- Enhancing find_elf_note to allow calling lib functions with dlopen (#1287752)
e0b30b
e0b30b
* Fri Aug 14 2015 Adam Jackson <ajax@redhat.com> 3.3.10-9
e0b30b
- Use %%configure so the hardened cflags get applied correctly
e0b30b
e0b30b
* Mon Aug 10 2015 Jaromir Capik <jcapik@redhat.com> - 3.3.10-8
e0b30b
- Fixing crashes in 'top' when a deep forking appears (#1153642)
e0b30b
e0b30b
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.3.10-7
e0b30b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
e0b30b
e0b30b
* Sat Feb 21 2015 Till Maas <opensource@till.name> - 3.3.10-6
e0b30b
- Rebuilt for Fedora 23 Change
e0b30b
  https://fedoraproject.org/wiki/Changes/Harden_all_packages_with_position-independent_code
e0b30b
e0b30b
* Tue Nov 25 2014 Jaromir Capik <jcapik@redhat.com> - 3.3.10-5
e0b30b
- Fixing locale dirs ownership (#1167443)
e0b30b
e0b30b
* Mon Oct 20 2014 Jaromir Capik <jcapik@redhat.com> - 3.3.10-4
e0b30b
- Bringing the old 'top' defaults back (#1153049)
e0b30b
e0b30b
* Mon Oct 06 2014 Jaromir Capik <jcapik@redhat.com> - 3.3.10-3
e0b30b
- Resolving file conflicts with man-pages-*
e0b30b
- Replacing hardcoded paths with macros
e0b30b
- Making the i18n subpackage noarch
e0b30b
e0b30b
* Tue Sep 30 2014 Jaromir Capik <jcapik@redhat.com> - 3.3.10-2
e0b30b
- Removing explicit dependency on systemd-libs
e0b30b
- Removing /etc/sysctl.d (ownership quietly stolen by systemd)
e0b30b
e0b30b
* Tue Sep 09 2014 Jaromir Capik <jcapik@redhat.com> - 3.3.10-1
e0b30b
- Upgrading to 3.3.10
e0b30b
e0b30b
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.3.9-12
e0b30b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
e0b30b
e0b30b
* Thu Jul 31 2014 Tom Callaway <spot@fedoraproject.org> - 3.3.9-11
e0b30b
- fix license handling
e0b30b
e0b30b
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.3.9-10
e0b30b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
e0b30b
e0b30b
* Wed Apr 30 2014 Jaromir Capik <jcapik@redhat.com> - 3.3.9-9
e0b30b
- Dropping Cached -= Shmem (#963799)
e0b30b
e0b30b
* Tue Apr 08 2014 Jaromir Capik <jcapik@redhat.com> - 3.3.9-8
e0b30b
- Documenting the 't' process state code in the ps manual (#946864)
e0b30b
e0b30b
* Fri Mar 14 2014 Jaromir Capik <jcapik@redhat.com> - 3.3.9-7
e0b30b
- Fixing sysctl line length limit (#1071530)
e0b30b
e0b30b
* Thu Feb 27 2014 Jaromir Capik <jcapik@redhat.com> - 3.3.9-6
e0b30b
- Subtracting Shmem from Cached (#1070736)
e0b30b
e0b30b
* Wed Feb 05 2014 Jaromir Capik <jcapik@redhat.com> - 3.3.9-5
e0b30b
- Support for timestamps & wide diskstat (#1053428, #1025833)
e0b30b
- Fixing fd leak in watch
e0b30b
- Fixing format-security build issues
e0b30b
e0b30b
* Fri Jan 24 2014 Jaromir Capik <jcapik@redhat.com> - 3.3.9-4
e0b30b
- Skipping trailing zeros in read_unvectored (#1057600)
e0b30b
e0b30b
* Mon Jan 20 2014 Jaromir Capik <jcapik@redhat.com> - 3.3.9-3
e0b30b
- 'vmstat -w' was not wide enough (#1025833)
e0b30b
e0b30b
* Tue Jan 07 2014 Jaromir Capik <jcapik@redhat.com> - 3.3.9-2
e0b30b
- Replacing the /sbin/pidof wrapper with symlink
e0b30b
e0b30b
* Tue Dec 03 2013 Jaromir Capik <jcapik@redhat.com> - 3.3.9-1
e0b30b
- Update to 3.3.9
e0b30b
e0b30b
* Mon Nov 04 2013 Jaromir Capik <jcapik@redhat.com> - 3.3.8-17
e0b30b
- Fixing pidof compilation warnings
e0b30b
- RPM workaround - changing sysvinit-tools Conflicts/Obsoletes (#1026504)
e0b30b
e0b30b
* Wed Oct 16 2013 Jaromir Capik <jcapik@redhat.com> - 3.3.8-16
e0b30b
- Introducing pidof (#987064)
e0b30b
e0b30b
* Tue Sep 17 2013 Aristeu Rozanski <aris@redhat.com> - 3.3.8-15
e0b30b
- Introduce namespaces support (#1016242)
e0b30b
e0b30b
* Tue Sep 17 2013 Jaromir Capik <jcapik@redhat.com> - 3.3.8-14
e0b30b
- top: Fixing missing newline when running in the batch mode (#1008674)
e0b30b
e0b30b
* Fri Aug 09 2013 Jaromir Capik <jcapik@redhat.com> - 3.3.8-13
e0b30b
- Including forgotten man fixes (#948522)
e0b30b
e0b30b
* Wed Aug 07 2013 Jaromir Capik <jcapik@redhat.com> - 3.3.8-12
e0b30b
- Fixing the license tag
e0b30b
e0b30b
* Wed Aug 07 2013 Jaromir Capik <jcapik@redhat.com> - 3.3.8-11
e0b30b
- Support for libselinux (#975459)
e0b30b
- Support for systemd (#994457)
e0b30b
- Support for 'Shmem' in free (#993271)
e0b30b
e0b30b
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.3.8-10
e0b30b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
e0b30b
e0b30b
* Fri Jul 19 2013 Jaromir Capik <jcapik@redhat.com> - 3.3.8-9
e0b30b
- RH man page scan (#948522)
e0b30b
e0b30b
* Tue Jul 02 2013 Jaromir Capik <jcapik@redhat.com> - 3.3.8-8
e0b30b
- Extending the end-of-job patch disabling the screen content restoration
e0b30b
e0b30b
* Mon Jul 01 2013 Jaromir Capik <jcapik@redhat.com> - 3.3.8-7
e0b30b
- Disabling screen content restoration when exiting 'top' (#977561)
e0b30b
- Enabling SIGWINCH flood prevention
e0b30b
e0b30b
* Wed Jun 26 2013 Jaromir Capik <jcapik@redhat.com> - 3.3.8-6
e0b30b
- Avoiding "write error" messages when piping to grep (#976199)
e0b30b
e0b30b
* Wed Jun 26 2013 Jaromir Capik <jcapik@redhat.com> - 3.3.8-5
e0b30b
- Disabling tests - unsuitable for running on buildsystems
e0b30b
e0b30b
* Mon Jun 17 2013 Jaromir Capik <jcapik@redhat.com> - 3.3.8-4
e0b30b
- Enabling skill and snice (#974752)
e0b30b
e0b30b
* Wed Jun 12 2013 Jaromir Capik <jcapik@redhat.com> - 3.3.8-3
e0b30b
- Adding major version in the libnuma soname
e0b30b
e0b30b
* Thu May 30 2013 Jaromir Capik <jcapik@redhat.com> - 3.3.8-2
e0b30b
- watch: enabling UTF-8 (#965867)
e0b30b
e0b30b
* Wed May 29 2013 Jaromir Capik <jcapik@redhat.com> - 3.3.8-1
e0b30b
- Update to 3.3.8
e0b30b
e0b30b
* Wed May 22 2013 Jaromir Capik <jcapik@redhat.com> - 3.3.7-4
e0b30b
- top: inoculated against a window manager like 'screen' (#962022)
e0b30b
e0b30b
* Tue Apr 16 2013 Jaromir Capik <jcapik@redhat.com> - 3.3.7-3
e0b30b
- Avoid segfaults when reading zero bytes - file2str (#951391)
e0b30b
e0b30b
* Mon Apr 15 2013 Jaromir Capik <jcapik@redhat.com> - 3.3.7-2
e0b30b
- Moving libprocps.pc to the devel subpackage (#951726)
e0b30b
e0b30b
* Tue Mar 26 2013 Jaromir Capik <jcapik@redhat.com> - 3.3.7-1
e0b30b
- Update to 3.3.7
e0b30b
- Reverting upstream commit for testsuite/unix.exp
e0b30b
e0b30b
* Tue Feb 05 2013 Jaromir Capik <jcapik@redhat.com> - 3.3.6-4
e0b30b
- Fixing empty pmap output on ppc/s390 (#906457)
e0b30b
e0b30b
* Tue Jan 15 2013 Jaromir Capik <jcapik@redhat.com> - 3.3.6-3
e0b30b
- Typo in the description, pdwx instead of pwdx (#891476)
e0b30b
e0b30b
* Tue Jan 08 2013 Jaromir Capik <jcapik@redhat.com> - 3.3.6-2
e0b30b
- Rebuilding with tests disabled (koji issue #853084)
e0b30b
e0b30b
* Tue Jan 08 2013 Jaromir Capik <jcapik@redhat.com> - 3.3.6-1
e0b30b
- Update to 3.3.6
e0b30b
- Changing URL/Source from gitorious to recently created sourceforge page
e0b30b
- Replacing autogen.sh with autoreconf
e0b30b
e0b30b
* Mon Jan 07 2013 Jaromir Capik <jcapik@redhat.com> - 3.3.5-1
e0b30b
- Update to 3.3.5
e0b30b
e0b30b
* Tue Dec 11 2012 Jaromir Capik <jcapik@redhat.com> - 3.3.4-2
e0b30b
- fixing the following regressions:
e0b30b
-   negative ETIME field in ps (#871819)
e0b30b
-   procps states a bug is hit when receiving a signal (#871824)
e0b30b
-   allow core file generation by ps command (#871825)
e0b30b
e0b30b
* Tue Dec 11 2012 Jaromir Capik <jcapik@redhat.com> - 3.3.4-1
e0b30b
- Update to 3.3.4
e0b30b
e0b30b
* Tue Sep 25 2012 Jaromir Capik <jcapik@redhat.com> - 3.3.3-3.20120807git
e0b30b
- SELinux spelling fixes (#859900)
e0b30b
e0b30b
* Tue Aug 21 2012 Jaromir Capik <jcapik@redhat.com> - 3.3.3-2.20120807git
e0b30b
- Tests enabled
e0b30b
e0b30b
* Tue Aug 07 2012 Jaromir Capik <jcapik@redhat.com> - 3.3.3-1.20120807git
e0b30b
- Update to 3.3.3-20120807git
e0b30b
e0b30b
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.3.2-4
e0b30b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
e0b30b
e0b30b
* Thu Mar 08 2012 Jaromir Capik <jcapik@redhat.com> - 3.3.2-3
e0b30b
- Second usrmove hack - providing /bin/ps
e0b30b
e0b30b
* Tue Mar 06 2012 Jaromir Capik <jcapik@redhat.com> - 3.3.2-2
e0b30b
- Fixing requires in the devel subpackage (missing %%{?_isa} macro)
e0b30b
- License statement clarification (upstream patch referrenced in the spec header)
e0b30b
e0b30b
* Mon Feb 27 2012 Jaromir Capik <jcapik@redhat.com> - 3.3.2-1
e0b30b
- Initial version