c5afd8
%global srcname psutil
c5afd8
%global sum A process and system utilities module for Python
c5afd8
c5afd8
%if 0%{?rhel} > 7
c5afd8
# Disable python2 build by default
c5afd8
%bcond_with python2
c5afd8
%else
c5afd8
%bcond_without python2
c5afd8
%endif
c5afd8
c5afd8
# Filter Python modules from Provides
c5afd8
%global __provides_exclude_from ^(%{python2_sitearch}|%{python3_sitearch})/.*\\.so$
c5afd8
c5afd8
Name:           python-%{srcname}
c5afd8
Version:        5.4.3
286abe
Release:        11%{?dist}
c5afd8
Summary:        %{sum}
c5afd8
c5afd8
License:        BSD
c5afd8
URL:            https://github.com/giampaolo/psutil
c5afd8
Source0:        https://github.com/giampaolo/psutil/archive/release-%{version}.tar.gz#/%{srcname}-%{version}.tar.gz
286abe
286abe
# Fix CVE-2019-18874: double free because of refcount mishandling
286abe
# Resolved upstream: https://github.com/giampaolo/psutil/commit/7d512c8e4442a896d56505be3e78f1156f443465
286abe
# and https://github.com/giampaolo/psutil/commit/3a9bccfd2c6d2e6538298cd3892058b1204056e0
286abe
Patch0:         CVE-2019-18874.patch
c5afd8
c5afd8
BuildRequires:  procps-ng
c5afd8
c5afd8
%description
c5afd8
psutil is a module providing an interface for retrieving information on all
c5afd8
running processes and system utilization (CPU, memory, disks, network, users) in
c5afd8
a portable way by using Python, implementing many functionalities offered by
c5afd8
command line tools such as: ps, top, df, kill, free, lsof, free, netstat,
c5afd8
ifconfig, nice, ionice, iostat, iotop, uptime, pidof, tty, who, taskset, pmap.
c5afd8
c5afd8
c5afd8
%if %{with python2}
c5afd8
%package -n python2-%{srcname}
c5afd8
Summary:        %{sum}
c5afd8
c5afd8
BuildRequires:  python2-devel
c5afd8
BuildRequires:  python2-mock
c5afd8
BuildRequires:  python2-ipaddress
c5afd8
c5afd8
%{?python_provide:%python_provide python2-%{srcname}}
c5afd8
Obsoletes:      python-%{srcname} < 3.1.1-3
c5afd8
c5afd8
%description -n python2-psutil
c5afd8
psutil is a module providing an interface for retrieving information on all
c5afd8
running processes and system utilization (CPU, memory, disks, network, users) in
c5afd8
a portable way by using Python 3, implementing many functionalities offered by
c5afd8
command line tools such as: ps, top, df, kill, free, lsof, free, netstat,
c5afd8
ifconfig, nice, ionice, iostat, iotop, uptime, pidof, tty, who, taskset, pmap.
c5afd8
%endif # with python2
c5afd8
c5afd8
%package -n python%{python3_pkgversion}-psutil
c5afd8
Summary:        %{sum}
c5afd8
c5afd8
BuildRequires:  python%{python3_pkgversion}-devel
c5afd8
BuildRequires:  python%{python3_pkgversion}-mock
c5afd8
c5afd8
%{?python_provide:%python_provide python%{python3_pkgversion}-%{srcname}}
c5afd8
c5afd8
%description -n python%{python3_pkgversion}-psutil
c5afd8
psutil is a module providing an interface for retrieving information on all
c5afd8
running processes and system utilization (CPU, memory, disks, network, users) in
c5afd8
a portable way by using Python 3, implementing many functionalities offered by
c5afd8
command line tools such as: ps, top, df, kill, free, lsof, free, netstat,
c5afd8
ifconfig, nice, ionice, iostat, iotop, uptime, pidof, tty, who, taskset, pmap.
c5afd8
c5afd8
c5afd8
%prep
286abe
%autosetup -p1 -n %{srcname}-release-%{version}
c5afd8
c5afd8
# Remove shebangs
c5afd8
find psutil -name \*.py | while read file; do
c5afd8
  sed -i.orig -e '1{/^#!/d}' $file && \
c5afd8
  touch -r $file.orig $file && \
c5afd8
  rm $file.orig
c5afd8
done
c5afd8
c5afd8
c5afd8
%build
c5afd8
%if %{with python2}
c5afd8
%py2_build
c5afd8
%endif # with python2
c5afd8
%py3_build
c5afd8
c5afd8
c5afd8
%install
c5afd8
%if %{with python2}
c5afd8
%py2_install
c5afd8
%endif # with python2
c5afd8
%py3_install
c5afd8
c5afd8
c5afd8
#%check
c5afd8
# the main test target causes failures, investigating
c5afd8
%if %{with python2}
c5afd8
#make test-memleaks PYTHON=%{__python2}
c5afd8
%endif # with python2
c5afd8
#make test-memleaks PYTHON=%{__python3}
c5afd8
c5afd8
%if %{with python2}
c5afd8
%files -n python2-%{srcname}
c5afd8
%license LICENSE
c5afd8
%doc CREDITS HISTORY.rst README.rst
c5afd8
%{python2_sitearch}/%{srcname}/
c5afd8
%{python2_sitearch}/*.egg-info
c5afd8
%endif # with python2
c5afd8
c5afd8
c5afd8
%files -n python%{python3_pkgversion}-%{srcname}
c5afd8
%license LICENSE
c5afd8
%doc CREDITS HISTORY.rst README.rst
c5afd8
%{python3_sitearch}/%{srcname}/
c5afd8
%{python3_sitearch}/*.egg-info
c5afd8
c5afd8
c5afd8
%changelog
286abe
* Mon Jul 26 2021 Charalampos Stratakis <cstratak@redhat.com> - 5.4.3-11
286abe
- Security fix for CVE-2019-18874: double free because of refcount mishandling
286abe
Resolves: rhbz#1772014
286abe
c5afd8
* Mon Aug 05 2019 Athos Ribeiro <athos@redhat.com> - 5.4.3-10
c5afd8
- Smoke tests shall only run unicode tests
c5afd8
c5afd8
* Mon Aug 05 2019 Athos Ribeiro <athos@redhat.com> - 5.4.3-9
c5afd8
- Skip failing tests
c5afd8
c5afd8
* Mon Aug 05 2019 Athos Ribeiro <athos@redhat.com> - 5.4.3-8
c5afd8
- Add test content
c5afd8
c5afd8
* Mon Aug 05 2019 Athos Ribeiro <athos@redhat.com> - 5.4.3-7
c5afd8
- Bump release
c5afd8
- Rebuild for rhel 8 gating for rhbz#1720647
c5afd8
c5afd8
* Tue Jun 18 2019 Athos Ribeiro <athos@redhat.com> - 5.4.3-6
c5afd8
- Bump release
c5afd8
c5afd8
* Tue Jun 05 2018 Charalampos Stratakis <cstratak@redhat.com> - 5.4.3-5
c5afd8
- Conditionalize the python2 subpackage
c5afd8
c5afd8
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 5.4.3-4
c5afd8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
c5afd8
c5afd8
* Mon Jan 29 2018 Iryna Shcherbina <ishcherb@redhat.com> - 5.4.3-3
c5afd8
- Update Python 2 dependency declarations to new packaging standards
c5afd8
  (See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3)
c5afd8
c5afd8
* Mon Jan 22 2018 Gwyn Ciesla <limburgher@gmail.com> - 5.4.3-2
c5afd8
- Disable tests entirely.
c5afd8
c5afd8
* Mon Jan 22 2018 Gwyn Ciesla <limburgher@gmail.com> - 5.4.3-1
c5afd8
- 5.4.3
c5afd8
c5afd8
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 5.2.2-3
c5afd8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
c5afd8
c5afd8
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 5.2.2-2
c5afd8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
c5afd8
c5afd8
* Sun Apr 23 2017 Kevin Fenzi <kevin@scrye.com> - 5.2.2-1
c5afd8
- Update to 5.2.2. Fixes bug #1441010
c5afd8
c5afd8
* Sat Mar 25 2017 Kevin Fenzi <kevin@scrye.com> - 5.2.1-1
c5afd8
- Update to 5.2.1. Fixes bug #1418489
c5afd8
c5afd8
* Sat Feb 25 2017 Kevin Fenzi <kevin@scrye.com> - 5.1.3-1
c5afd8
- Update to 5.1.3. Fixes bug #1418489
c5afd8
c5afd8
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 5.0.1-2
c5afd8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
c5afd8
c5afd8
* Mon Jan 02 2017 Kevin Fenzi <kevin@scrye.com> - 5.0.1-1
c5afd8
- Update to 5.0.1. Fixes bug #1389579
c5afd8
- Disable failing test while upstream looks at it. 
c5afd8
c5afd8
* Wed Nov 09 2016 Kevin Fenzi <kevin@scrye.com> - 5.0.0-1
c5afd8
- Update to 5.0.0. Fixes bug #1389579
c5afd8
c5afd8
* Tue Oct 25 2016 Kevin Fenzi <kevin@scrye.com> - 4.4.0-1
c5afd8
- Update to 4.4.0. Fixes bug #1387942
c5afd8
c5afd8
* Sat Sep 03 2016 Kevin Fenzi <kevin@scrye.com> - 4.3.1-1
c5afd8
- Update to 4.3.1. Fixes bug #1372500
c5afd8
c5afd8
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.3.0-2
c5afd8
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
c5afd8
c5afd8
* Tue Jun 21 2016 Orion Poplawski <orion@cora.nwra.com> - 4.3.0-1
c5afd8
- Update to 4.3.0
c5afd8
c5afd8
* Mon May 16 2016 Orion Poplawski <orion@cora.nwra.com> - 3.2.1-6
c5afd8
- Use modern provides filter
c5afd8
- Update URL
c5afd8
- Use %%python3_pkgversion for EPEL7 compat
c5afd8
c5afd8
* Fri Mar 11 2016 Than Ngo <than@redhat.com> - 3.2.1-5
c5afd8
- fix endian issue on s390x/ppc64
c5afd8
c5afd8
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 3.2.1-4
c5afd8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
c5afd8
c5afd8
* Tue Nov 10 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.2.1-3
c5afd8
- Rebuilt for https://fedoraproject.org/wiki/Changes/python3.5
c5afd8
c5afd8
* Fri Sep  4 2015 Michel Alexandre Salim <salimma@fedoraproject.org> - 3.2.1-2
c5afd8
- Add Obsoletes for old package
c5afd8
c5afd8
* Fri Sep  4 2015 Michel Alexandre Salim <salimma@fedoraproject.org> - 3.2.1-1
c5afd8
- Update to 3.2.1
c5afd8
- Update to latest Python guidelines (https://fedorahosted.org/fpc/ticket/281)
c5afd8
c5afd8
* Wed Jul 22 2015 Michel Alexandre Salim <salimma@fedoraproject.org> - 3.1.1-2
c5afd8
- Restore *.so files
c5afd8
- Enable tests
c5afd8
c5afd8
* Tue Jul 21 2015 Michel Alexandre Salim <salimma@fedoraproject.org> - 3.1.1-1
c5afd8
- Update to 3.1.1
c5afd8
c5afd8
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.2.0-2
c5afd8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
c5afd8
c5afd8
* Wed Feb 18 2015 Ralph Bean <rbean@redhat.com> - 2.2.0-1
c5afd8
- new version
c5afd8
c5afd8
* Wed Dec  3 2014 Michel Alexandre Salim <salimma@fedoraproject.org> - 2.1.3-1
c5afd8
- Update to 2.1.3
c5afd8
c5afd8
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.1-5
c5afd8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
c5afd8
c5afd8
* Thu Jul 31 2014 Tom Callaway <spot@fedoraproject.org> - 1.2.1-4
c5afd8
- fix license handling
c5afd8
c5afd8
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.1-3
c5afd8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
c5afd8
c5afd8
* Wed May 28 2014 Kalev Lember <kalevlember@gmail.com> - 1.2.1-2
c5afd8
- Rebuilt for https://fedoraproject.org/wiki/Changes/Python_3.4
c5afd8
c5afd8
* Mon Jan 06 2014 Mohamed El Morabity <melmorabity@fedoraproject.org> - 1.2.1-1
c5afd8
- Update to 1.2.1
c5afd8
c5afd8
* Fri Aug 16 2013 Mohamed El Morabity <melmorabity@fedoraproject.org> - 1.0.1-1
c5afd8
- Update to 1.0.1
c5afd8
c5afd8
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.7.1-2
c5afd8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
c5afd8
c5afd8
* Sun May 12 2013 Mohamed El Morabity <melmorabity@fedoraproject.org> - 0.7.1-1
c5afd8
- Update to 0.7.1
c5afd8
c5afd8
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.1-2
c5afd8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
c5afd8
c5afd8
* Sun Aug 19 2012 Mohamed El Morabity <melmorabity@fedorapeople.org> - 0.6.1-1
c5afd8
- Update to 0.6.1
c5afd8
c5afd8
* Sat Aug 04 2012 David Malcolm <dmalcolm@redhat.com> - 0.5.1-3
c5afd8
- rebuild for https://fedoraproject.org/wiki/Features/Python_3.3
c5afd8
c5afd8
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.5.1-2
c5afd8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
c5afd8
c5afd8
* Sun Jul 01 2012 Mohamed El Morabity <melmorabity@fedoraproject.org> - 0.5.1-1
c5afd8
- Update to 0.5.1
c5afd8
c5afd8
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.4.1-2
c5afd8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
c5afd8
c5afd8
* Fri Dec 16 2011 Mohamed El Morabity <melmorabity@fedoraproject.org> - 0.4.1-1
c5afd8
- Update to 0.4.1
c5afd8
c5afd8
* Sun Nov 20 2011 Mohamed El Morabity <melmorabity@fedoraproject.org> - 0.4.0-1
c5afd8
- Update to 0.4.0
c5afd8
c5afd8
* Mon Jul 18 2011 Mohamed El Morabity <melmorabity@fedoraproject.org> - 0.3.0-1
c5afd8
- Update to 0.3.0
c5afd8
c5afd8
* Wed Mar 23 2011 Mohamed El Morabity <melmorabity@fedoraproject.org> - 0.2.1-1
c5afd8
- Update to 0.2.1
c5afd8
- Spec cleanup
c5afd8
c5afd8
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.2.0-2
c5afd8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
c5afd8
c5afd8
* Mon Nov 22 2010 Mohamed El Morabity <melmorabity@fedoraproject.org> - 0.2.0-1
c5afd8
- Update to 0.2.0
c5afd8
c5afd8
* Wed Aug 25 2010 Thomas Spura <tomspur@fedoraproject.org> - 0.1.3-5
c5afd8
- rebuild with python3.2
c5afd8
  http://lists.fedoraproject.org/pipermail/devel/2010-August/141368.html
c5afd8
c5afd8
* Fri Jul 30 2010 Thomas Spura <tomspur@fedoraproject.org> - 0.1.3-4
c5afd8
- bump, because previous build nvr already existed in F-14
c5afd8
c5afd8
* Thu Jul 22 2010 David Malcolm <dmalcolm@redhat.com> - 0.1.3-3
c5afd8
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
c5afd8
c5afd8
* Tue Apr 13 2010 ELMORABITY Mohamed <melmorabity@fedoraproject.org> 0.1.3-2
c5afd8
- Add missing popd in %%build
c5afd8
c5afd8
* Sat Mar 27 2010 ELMORABITY Mohamed <melmorabity@fedoraproject.org> 0.1.3-1
c5afd8
- Update to 0.1.3
c5afd8
- Remove useless call to 2to3 and corresponding BuildRequires
c5afd8
  python2-tools (this version supports Python 3)
c5afd8
c5afd8
* Sat Feb 20 2010 ELMORABITY Mohamed <melmorabity@fedoraproject.org> 0.1.2-4
c5afd8
- Change python-utils BuildRequires for python2-utils
c5afd8
c5afd8
* Sat Feb 20 2010 ELMORABITY Mohamed <melmorabity@fedoraproject.org> 0.1.2-3
c5afd8
- Add python3 subpackage
c5afd8
c5afd8
* Thu Jan 14 2010 ELMORABITY Mohamed <melmorabity@fedoraproject.org> 0.1.2-2
c5afd8
- Drop no-shebang patch for a sed command
c5afd8
- Drop test suite from %%doc tag
c5afd8
c5afd8
* Fri Jan  8 2010 ELMORABITY Mohamed <melmorabity@fedoraproject.org> 0.1.2-1
c5afd8
- Initial RPM release