5cc68e
# The testsuite is unsuitable for running on buildsystems
5cc68e
%global tests_enabled 0
5cc68e
5cc68e
Summary: System and process monitoring utilities
5cc68e
Name: procps-ng
5cc68e
Version: 3.3.15
126879
Release: 13%{?dist}
5cc68e
License: GPL+ and GPLv2 and GPLv2+ and GPLv3+ and LGPLv2+
5cc68e
Group: Applications/System
5cc68e
URL: https://sourceforge.net/projects/procps-ng/
5cc68e
5cc68e
Source0: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.xz
5cc68e
# README files are missing in latest tarball
5cc68e
# wget https://gitlab.com/procps-ng/procps/raw/e0784ddaed30d095bb1d9a8ad6b5a23d10a212c4/README.md
5cc68e
Source1: README.md
5cc68e
# wget https://gitlab.com/procps-ng/procps/raw/e0784ddaed30d095bb1d9a8ad6b5a23d10a212c4/top/README.top
5cc68e
Source2: README.top
5cc68e
5e9bbf
Patch1: procps-ng-3.3.15-pidof-show-worker-threads.patch
5e9bbf
Patch2: procps-ng-3.3.15-pgrep-uid-conversion-overflow.patch
5e9bbf
Patch3: procps-ng-3.3.15-vmstat-watch-manpage.patch
13bf06
Patch4: procps-ng-3.3.15-pidof-kernel-workers-option.patch
cf5301
Patch5: procps-ng-3.3.15-pidof-separator-option-backport.patch
f4404b
Patch6: procps-ng-3.3.15-uptime-pretty-mod.patch
f4404b
Patch7: procps-ng-3.3.15-vmstat-omit-first-report.patch
f4404b
Patch8: procps-ng-3.3.15-sysctl-config-dir-order.patch
f4404b
Patch9: procps-ng-3.3.15-pgrep-uid-gid-overflow.patch
126879
Patch10: procps-ng-3.3.15-display-sig-unsafe.patch
126879
Patch11: procps-ng-3.3.15-ps-select.patch
126879
Patch12: procps-ng-3.3.15-ps-out-of-bonds-read.patch
5e9bbf
5cc68e
BuildRequires: ncurses-devel
5cc68e
BuildRequires: libtool
5cc68e
BuildRequires: autoconf
5cc68e
BuildRequires: automake
5cc68e
BuildRequires: gcc
5cc68e
BuildRequires: gettext-devel
5cc68e
BuildRequires: systemd-devel
5e9bbf
BuildRequires: git
5cc68e
5cc68e
%if %{tests_enabled}
5cc68e
BuildRequires: dejagnu
5cc68e
%endif
5cc68e
5cc68e
Provides: procps = %{version}-%{release}
5cc68e
Obsoletes: procps < 3.2.9-1
5cc68e
5cc68e
# usrmove hack - will be removed once initscripts are fixed
5cc68e
Provides: /sbin/sysctl
5cc68e
Provides: /bin/ps
5cc68e
5cc68e
5cc68e
%description
5cc68e
The procps package contains a set of system utilities that provide
5cc68e
system information. Procps includes ps, free, skill, pkill, pgrep,
5cc68e
snice, tload, top, uptime, vmstat, pidof, pmap, slabtop, w, watch
5cc68e
and pwdx.
5cc68e
The ps command displays a snapshot of running processes. The top command
5cc68e
provides a repetitive update of the statuses of running processes.
5cc68e
The free command displays the amounts of free and used memory on your
5cc68e
system. The skill command sends a terminate command (or another
5cc68e
specified signal) to a specified set of processes. The snice
5cc68e
command is used to change the scheduling priority of specified
5cc68e
processes. The tload command prints a graph of the current system
5cc68e
load average to a specified tty. The uptime command displays the
5cc68e
current time, how long the system has been running, how many users
5cc68e
are logged on, and system load averages for the past one, five,
5cc68e
and fifteen minutes. The w command displays a list of the users
5cc68e
who are currently logged on and what they are running. The watch
5cc68e
program watches a running program. The vmstat command displays
5cc68e
virtual memory statistics about processes, memory, paging, block
5cc68e
I/O, traps, and CPU activity. The pwdx command reports the current
5cc68e
working directory of a process or processes.
5cc68e
5cc68e
%package devel
5cc68e
Summary:  System and process monitoring utilities
5cc68e
Group:    Development/Libraries
5cc68e
Requires: %{name}%{?_isa} = %{version}-%{release}
5cc68e
Provides: procps-devel = %{version}-%{release}
5cc68e
Obsoletes: procps-devel < 3.2.9-1
5cc68e
5cc68e
%description devel
5cc68e
System and process monitoring utilities development headers
5cc68e
5cc68e
%package i18n
5cc68e
Summary:  Internationalization pack for procps-ng
5cc68e
Group:    Applications/System
5cc68e
Requires: %{name} = %{version}-%{release}
5cc68e
BuildArch: noarch
5cc68e
5cc68e
# fortunately the same release number for f21 and f22
5cc68e
Conflicts: man-pages-de < 1.7-3
5cc68e
Conflicts: man-pages-fr < 3.66-3
5cc68e
Conflicts: man-pages-pl < 0.7-5
5cc68e
5cc68e
%description i18n
5cc68e
Internationalization pack for procps-ng
5cc68e
5cc68e
%prep
5e9bbf
%autosetup -S git
5cc68e
cp -p %{SOURCE1} .
5cc68e
cp -p %{SOURCE2} top/
5cc68e
5cc68e
5cc68e
%build
5cc68e
# The following stuff is needed for git archives only
5cc68e
#echo "%{version}" > .tarball-version
5cc68e
#./autogen.sh
5cc68e
5cc68e
autoreconf --verbose --force --install
5cc68e
5cc68e
%configure \
5cc68e
           --exec-prefix=/ \
5cc68e
           --docdir=/unwanted \
5cc68e
           --disable-static \
5cc68e
           --enable-w-from \
5cc68e
           --disable-kill \
5cc68e
           --enable-watch8bit \
5cc68e
           --enable-skill \
5cc68e
           --enable-sigwinch \
5cc68e
           --enable-libselinux \
5cc68e
           --with-systemd \
5cc68e
           --disable-modern-top
5cc68e
5cc68e
make CFLAGS="%{optflags}"
5cc68e
5cc68e
5cc68e
%if %{tests_enabled}
5cc68e
%check
5cc68e
make check
5cc68e
%endif
5cc68e
5cc68e
5cc68e
%install
5cc68e
make DESTDIR=%{buildroot} install
5cc68e
5cc68e
# translated man pages
5cc68e
find man-po/ -type d -maxdepth 1 -mindepth 1 | while read dirname; do cp -a $dirname %{buildroot}%{_mandir}/ ; done
5cc68e
rm -f %{buildroot}%{_mandir}/{de,fr,uk}/man1/kill.1
5cc68e
5cc68e
%find_lang %{name} --all-name --with-man
5cc68e
5cc68e
ln -s %{_bindir}/pidof %{buildroot}%{_sbindir}/pidof
5cc68e
5cc68e
%ldconfig_scriptlets
5cc68e
5cc68e
%files
5cc68e
%doc AUTHORS Documentation/bugs.md Documentation/FAQ NEWS README.md top/README.top Documentation/TODO
5cc68e
%{!?_licensedir:%global license %%doc}
5cc68e
%license COPYING COPYING.LIB
5cc68e
%{_libdir}/libprocps.so.*
5cc68e
%{_bindir}/*
5cc68e
%{_sbindir}/*
5cc68e
%{_mandir}/man1/*
5cc68e
%{_mandir}/man8/*
5cc68e
%{_mandir}/man5/*
5cc68e
5cc68e
5cc68e
%exclude %{_libdir}/libprocps.la
5cc68e
%exclude /unwanted/*
5cc68e
5cc68e
%files devel
5cc68e
%{!?_licensedir:%global license %%doc}
5cc68e
%license COPYING COPYING.LIB
5cc68e
%{_libdir}/libprocps.so
5cc68e
%{_libdir}/pkgconfig/libprocps.pc
5cc68e
%{_includedir}/proc
5cc68e
%{_mandir}/man3/*
5cc68e
5cc68e
%files i18n -f %{name}.lang
5cc68e
5cc68e
%changelog
126879
* Tue Jan 17 2023 Jan Rybar <jrybar@redhat.com> - 3.3.15-13
126879
- version bump requested to create -devel subpkg for CRB inclusion
126879
- Resolves: rhbz#2164781
126879
126879
* Tue Jan 17 2023 Jan Rybar <jrybar@redhat.com> - 3.3.15-12
126879
- ps: out-of-bonds read in quick mode
126879
- Resolves: rhbz#2153813
126879
126879
* Tue Dec 13 2022 Kyle Walker <kwalker@redhat.com> - 3.3.15-11
126879
- ps: revert increase command name length to 64 ____ (catch up)
126879
- Resolves: rhbz#2144978
126879
126879
* Wed Nov 23 2022 Jan Rybar <jrybar@redhat.com> - 3.3.15-10
126879
- display.c: backport: async-signal-unsafe handler deadlocks on SIGHUP
126879
- Resolves: rhbz#2141696
126879
f4404b
* Wed Aug 17 2022 Jan Rybar <jrybar@redhat.com> - 3.3.15-9
f4404b
- pgrep: backport uid/gid overflow fix
f4404b
- Resolves: rhbz#1827731
f4404b
f4404b
* Wed Jul 20 2022 Jan Rybar <jrybar@redhat.com> - 3.3.15-8
f4404b
- vmstat: added -y option to omit first report
f4404b
- Resolves: rhbz#2027350
f4404b
- sysctl: backport config directory order, align with systemd
f4404b
- Resolves: rhbz#2111915
f4404b
f4404b
* Wed Mar 23 2022 Jan Rybar <jrybar@redhat.com> - 3.3.15-7
f4404b
- uptime: human readable data not shown if 364 days up
f4404b
- Resolves: rhbz#1772999
f4404b
cf5301
* Tue Dec 01 2020 Jan Rybar <jrybar@redhat.com> - 3.3.15-6
cf5301
- pidof: option for separator collides with other option
cf5301
- Resolves: rhbz#1895985
cf5301
cf5301
* Mon Nov 09 2020 Jan Rybar <jrybar@redhat.com> - 3.3.15-5
cf5301
- version bump due to unspotted malformed backport patch
cf5301
- Resolves: rhbz#1860486
cf5301
- Resolves: rhbz#1894526
cf5301
- Related: rhbz#1803640
13bf06
cf5301
* Fri Nov 06 2020 Jan Rybar <jrybar@redhat.com> - 3.3.15-4
cf5301
- pidof: new option to show kernel worker threads
cf5301
- pidof: empty input causes to show kernel worker threads
cf5301
- Resolves: rhbz#1860486
cf5301
- Resolves: rhbz#1894526
cf5301
- Related: rhbz#1803640
cf5301
- 
5e9bbf
* Wed Jul 08 2020 Jan Rybar <jrybar@redhat.com> - 3.3.15-3
5e9bbf
- pgrep: uid/gid conversion overflow
5e9bbf
- vmstat: align manpage with procfs wording
5e9bbf
- watch: manpage presumes NTP on system
5e9bbf
- Resolves: rhbz#1827731
5e9bbf
- Resolves: rhbz#1829920
5e9bbf
- Resolves: rhbz#1583669
5e9bbf
5e9bbf
* Tue Apr 14 2020 Jan Rybar <jrybar@redhat.com> - 3.3.15-2
5e9bbf
- pidof: show kernel workers
5e9bbf
- gating activated
5e9bbf
- Resolves: rhbz#1803640
5e9bbf
5cc68e
* Wed Jul 04 2018 Jan Rybar <jrybar@redhat.com> - 3.3.15-1
5cc68e
- Rebase to 3.3.15
5cc68e
- Translated manual pages moved to -i18n subpackage
5cc68e
5cc68e
* Wed Feb 21 2018 Michael Cronenworth <mike@cchtml.com> - 3.3.12-1
5cc68e
- Upgrading to 3.3.12
5cc68e
5cc68e
* Fri Feb 09 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 3.3.10-18
5cc68e
- Escape macros in %%changelog
5cc68e
5cc68e
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 3.3.10-17
5cc68e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
5cc68e
5cc68e
* Sat Feb 03 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 3.3.10-16
5cc68e
- Switch to %%ldconfig_scriptlets
5cc68e
5cc68e
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.3.10-15
5cc68e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
5cc68e
5cc68e
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.3.10-14
5cc68e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
5cc68e
5cc68e
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.3.10-13
5cc68e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
5cc68e
5cc68e
* Mon Nov 28 2016 Lubomir Rintel - 3.3.10-12
5cc68e
- Fix FTBFS with new systemd
5cc68e
5cc68e
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 3.3.10-11
5cc68e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
5cc68e
5cc68e
* Thu Jan 14 2016 Jaromir Capik <jcapik@redhat.com> - 3.3.10-10
5cc68e
- Enhancing find_elf_note to allow calling lib functions with dlopen (#1287752)
5cc68e
5cc68e
* Fri Aug 14 2015 Adam Jackson <ajax@redhat.com> 3.3.10-9
5cc68e
- Use %%configure so the hardened cflags get applied correctly
5cc68e
5cc68e
* Mon Aug 10 2015 Jaromir Capik <jcapik@redhat.com> - 3.3.10-8
5cc68e
- Fixing crashes in 'top' when a deep forking appears (#1153642)
5cc68e
5cc68e
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.3.10-7
5cc68e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
5cc68e
5cc68e
* Sat Feb 21 2015 Till Maas <opensource@till.name> - 3.3.10-6
5cc68e
- Rebuilt for Fedora 23 Change
5cc68e
  https://fedoraproject.org/wiki/Changes/Harden_all_packages_with_position-independent_code
5cc68e
5cc68e
* Tue Nov 25 2014 Jaromir Capik <jcapik@redhat.com> - 3.3.10-5
5cc68e
- Fixing locale dirs ownership (#1167443)
5cc68e
5cc68e
* Mon Oct 20 2014 Jaromir Capik <jcapik@redhat.com> - 3.3.10-4
5cc68e
- Bringing the old 'top' defaults back (#1153049)
5cc68e
5cc68e
* Mon Oct 06 2014 Jaromir Capik <jcapik@redhat.com> - 3.3.10-3
5cc68e
- Resolving file conflicts with man-pages-*
5cc68e
- Replacing hardcoded paths with macros
5cc68e
- Making the i18n subpackage noarch
5cc68e
5cc68e
* Tue Sep 30 2014 Jaromir Capik <jcapik@redhat.com> - 3.3.10-2
5cc68e
- Removing explicit dependency on systemd-libs
5cc68e
- Removing /etc/sysctl.d (ownership quietly stolen by systemd)
5cc68e
5cc68e
* Tue Sep 09 2014 Jaromir Capik <jcapik@redhat.com> - 3.3.10-1
5cc68e
- Upgrading to 3.3.10
5cc68e
5cc68e
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.3.9-12
5cc68e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
5cc68e
5cc68e
* Thu Jul 31 2014 Tom Callaway <spot@fedoraproject.org> - 3.3.9-11
5cc68e
- fix license handling
5cc68e
5cc68e
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.3.9-10
5cc68e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
5cc68e
5cc68e
* Wed Apr 30 2014 Jaromir Capik <jcapik@redhat.com> - 3.3.9-9
5cc68e
- Dropping Cached -= Shmem (#963799)
5cc68e
5cc68e
* Tue Apr 08 2014 Jaromir Capik <jcapik@redhat.com> - 3.3.9-8
5cc68e
- Documenting the 't' process state code in the ps manual (#946864)
5cc68e
5cc68e
* Fri Mar 14 2014 Jaromir Capik <jcapik@redhat.com> - 3.3.9-7
5cc68e
- Fixing sysctl line length limit (#1071530)
5cc68e
5cc68e
* Thu Feb 27 2014 Jaromir Capik <jcapik@redhat.com> - 3.3.9-6
5cc68e
- Subtracting Shmem from Cached (#1070736)
5cc68e
5cc68e
* Wed Feb 05 2014 Jaromir Capik <jcapik@redhat.com> - 3.3.9-5
5cc68e
- Support for timestamps & wide diskstat (#1053428, #1025833)
5cc68e
- Fixing fd leak in watch
5cc68e
- Fixing format-security build issues
5cc68e
5cc68e
* Fri Jan 24 2014 Jaromir Capik <jcapik@redhat.com> - 3.3.9-4
5cc68e
- Skipping trailing zeros in read_unvectored (#1057600)
5cc68e
5cc68e
* Mon Jan 20 2014 Jaromir Capik <jcapik@redhat.com> - 3.3.9-3
5cc68e
- 'vmstat -w' was not wide enough (#1025833)
5cc68e
5cc68e
* Tue Jan 07 2014 Jaromir Capik <jcapik@redhat.com> - 3.3.9-2
5cc68e
- Replacing the /sbin/pidof wrapper with symlink
5cc68e
5cc68e
* Tue Dec 03 2013 Jaromir Capik <jcapik@redhat.com> - 3.3.9-1
5cc68e
- Update to 3.3.9
5cc68e
5cc68e
* Mon Nov 04 2013 Jaromir Capik <jcapik@redhat.com> - 3.3.8-17
5cc68e
- Fixing pidof compilation warnings
5cc68e
- RPM workaround - changing sysvinit-tools Conflicts/Obsoletes (#1026504)
5cc68e
5cc68e
* Wed Oct 16 2013 Jaromir Capik <jcapik@redhat.com> - 3.3.8-16
5cc68e
- Introducing pidof (#987064)
5cc68e
5cc68e
* Tue Sep 17 2013 Aristeu Rozanski <aris@redhat.com> - 3.3.8-15
5cc68e
- Introduce namespaces support (#1016242)
5cc68e
5cc68e
* Tue Sep 17 2013 Jaromir Capik <jcapik@redhat.com> - 3.3.8-14
5cc68e
- top: Fixing missing newline when running in the batch mode (#1008674)
5cc68e
5cc68e
* Fri Aug 09 2013 Jaromir Capik <jcapik@redhat.com> - 3.3.8-13
5cc68e
- Including forgotten man fixes (#948522)
5cc68e
5cc68e
* Wed Aug 07 2013 Jaromir Capik <jcapik@redhat.com> - 3.3.8-12
5cc68e
- Fixing the license tag
5cc68e
5cc68e
* Wed Aug 07 2013 Jaromir Capik <jcapik@redhat.com> - 3.3.8-11
5cc68e
- Support for libselinux (#975459)
5cc68e
- Support for systemd (#994457)
5cc68e
- Support for 'Shmem' in free (#993271)
5cc68e
5cc68e
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.3.8-10
5cc68e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
5cc68e
5cc68e
* Fri Jul 19 2013 Jaromir Capik <jcapik@redhat.com> - 3.3.8-9
5cc68e
- RH man page scan (#948522)
5cc68e
5cc68e
* Tue Jul 02 2013 Jaromir Capik <jcapik@redhat.com> - 3.3.8-8
5cc68e
- Extending the end-of-job patch disabling the screen content restoration
5cc68e
5cc68e
* Mon Jul 01 2013 Jaromir Capik <jcapik@redhat.com> - 3.3.8-7
5cc68e
- Disabling screen content restoration when exiting 'top' (#977561)
5cc68e
- Enabling SIGWINCH flood prevention
5cc68e
5cc68e
* Wed Jun 26 2013 Jaromir Capik <jcapik@redhat.com> - 3.3.8-6
5cc68e
- Avoiding "write error" messages when piping to grep (#976199)
5cc68e
5cc68e
* Wed Jun 26 2013 Jaromir Capik <jcapik@redhat.com> - 3.3.8-5
5cc68e
- Disabling tests - unsuitable for running on buildsystems
5cc68e
5cc68e
* Mon Jun 17 2013 Jaromir Capik <jcapik@redhat.com> - 3.3.8-4
5cc68e
- Enabling skill and snice (#974752)
5cc68e
5cc68e
* Wed Jun 12 2013 Jaromir Capik <jcapik@redhat.com> - 3.3.8-3
5cc68e
- Adding major version in the libnuma soname
5cc68e
5cc68e
* Thu May 30 2013 Jaromir Capik <jcapik@redhat.com> - 3.3.8-2
5cc68e
- watch: enabling UTF-8 (#965867)
5cc68e
5cc68e
* Wed May 29 2013 Jaromir Capik <jcapik@redhat.com> - 3.3.8-1
5cc68e
- Update to 3.3.8
5cc68e
5cc68e
* Wed May 22 2013 Jaromir Capik <jcapik@redhat.com> - 3.3.7-4
5cc68e
- top: inoculated against a window manager like 'screen' (#962022)
5cc68e
5cc68e
* Tue Apr 16 2013 Jaromir Capik <jcapik@redhat.com> - 3.3.7-3
5cc68e
- Avoid segfaults when reading zero bytes - file2str (#951391)
5cc68e
5cc68e
* Mon Apr 15 2013 Jaromir Capik <jcapik@redhat.com> - 3.3.7-2
5cc68e
- Moving libprocps.pc to the devel subpackage (#951726)
5cc68e
5cc68e
* Tue Mar 26 2013 Jaromir Capik <jcapik@redhat.com> - 3.3.7-1
5cc68e
- Update to 3.3.7
5cc68e
- Reverting upstream commit for testsuite/unix.exp
5cc68e
5cc68e
* Tue Feb 05 2013 Jaromir Capik <jcapik@redhat.com> - 3.3.6-4
5cc68e
- Fixing empty pmap output on ppc/s390 (#906457)
5cc68e
5cc68e
* Tue Jan 15 2013 Jaromir Capik <jcapik@redhat.com> - 3.3.6-3
5cc68e
- Typo in the description, pdwx instead of pwdx (#891476)
5cc68e
5cc68e
* Tue Jan 08 2013 Jaromir Capik <jcapik@redhat.com> - 3.3.6-2
5cc68e
- Rebuilding with tests disabled (koji issue #853084)
5cc68e
5cc68e
* Tue Jan 08 2013 Jaromir Capik <jcapik@redhat.com> - 3.3.6-1
5cc68e
- Update to 3.3.6
5cc68e
- Changing URL/Source from gitorious to recently created sourceforge page
5cc68e
- Replacing autogen.sh with autoreconf
5cc68e
5cc68e
* Mon Jan 07 2013 Jaromir Capik <jcapik@redhat.com> - 3.3.5-1
5cc68e
- Update to 3.3.5
5cc68e
5cc68e
* Tue Dec 11 2012 Jaromir Capik <jcapik@redhat.com> - 3.3.4-2
5cc68e
- fixing the following regressions:
5cc68e
-   negative ETIME field in ps (#871819)
5cc68e
-   procps states a bug is hit when receiving a signal (#871824)
5cc68e
-   allow core file generation by ps command (#871825)
5cc68e
5cc68e
* Tue Dec 11 2012 Jaromir Capik <jcapik@redhat.com> - 3.3.4-1
5cc68e
- Update to 3.3.4
5cc68e
5cc68e
* Tue Sep 25 2012 Jaromir Capik <jcapik@redhat.com> - 3.3.3-3.20120807git
5cc68e
- SELinux spelling fixes (#859900)
5cc68e
5cc68e
* Tue Aug 21 2012 Jaromir Capik <jcapik@redhat.com> - 3.3.3-2.20120807git
5cc68e
- Tests enabled
5cc68e
5cc68e
* Tue Aug 07 2012 Jaromir Capik <jcapik@redhat.com> - 3.3.3-1.20120807git
5cc68e
- Update to 3.3.3-20120807git
5cc68e
5cc68e
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.3.2-4
5cc68e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
5cc68e
5cc68e
* Thu Mar 08 2012 Jaromir Capik <jcapik@redhat.com> - 3.3.2-3
5cc68e
- Second usrmove hack - providing /bin/ps
5cc68e
5cc68e
* Tue Mar 06 2012 Jaromir Capik <jcapik@redhat.com> - 3.3.2-2
5cc68e
- Fixing requires in the devel subpackage (missing %%{?_isa} macro)
5cc68e
- License statement clarification (upstream patch referrenced in the spec header)
5cc68e
5cc68e
* Mon Feb 27 2012 Jaromir Capik <jcapik@redhat.com> - 3.3.2-1
5cc68e
- Initial version