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