Update tracer to 0.7.0-1

This commit is contained in:
Jakub Kadlčík 2018-04-19 22:39:50 +02:00
parent 66f0461e61
commit 957734368d
3 changed files with 25 additions and 3 deletions

1
.gitignore vendored
View File

@ -17,3 +17,4 @@
/tracer-0.6.12.tar.gz
/tracer-0.6.13.tar.gz
/tracer-0.6.13.1.tar.gz
/tracer-0.7.0.tar.gz

View File

@ -1 +1 @@
SHA512 (tracer-0.6.13.1.tar.gz) = 0b765af5f0eee0f03d076c2edd6773ddda74e9e806c0199398f8233679d720035b1d0cb0908421f5afc91b337faa34fc7420724b09920c6988a01837d19e8cef
SHA512 (tracer-0.7.0.tar.gz) = 1837879eec9439eb046de213b60bfc643185cdd87b9327cc3c0a4ce131d6d72e73c5c813da14394aeaadb2ff9de4c6f87a5f34d6ad4eb9ee110a674a31b5c737

View File

@ -11,8 +11,8 @@
%endif
Name: tracer
Version: 0.6.13.1
Release: 4%{?dist}
Version: 0.7.0
Release: 1%{?dist}
Summary: Finds outdated running applications in your system
BuildArch: noarch
@ -55,11 +55,13 @@ BuildRequires: python2-beautifulsoup4
BuildRequires: python2-psutil
BuildRequires: python2-pygments
BuildRequires: python2-lxml
BuildRequires: python2-future
Requires: python2-rpm
Requires: python2-beautifulsoup4
Requires: python2-psutil
Requires: python2-lxml
Requires: python2-setuptools
Requires: python2-future
Requires: %{name}-common = %{version}-%{release}
%if ! %{with suggest}
Suggests: python2-argcomplete
@ -81,12 +83,14 @@ BuildRequires: python3-beautifulsoup4
BuildRequires: python3-psutil
BuildRequires: python3-pygments
BuildRequires: python3-lxml
BuildRequires: python3-future
Requires: rpm-python3
Requires: python3-beautifulsoup4
Requires: python3-psutil
Requires: python3-lxml
Requires: python3-setuptools
Requires: python3-dbus
Requires: python3-future
Requires: %{name}-common = %{version}-%{release}
%if ! %{with suggest}
Suggests: python3-argcomplete
@ -160,6 +164,23 @@ make DESTDIR=%{buildroot}%{_datadir} mo
%changelog
* Thu Apr 19 2018 Sean O'Keeffe <seanokeeffe797@gmail.com> 0.7.0-1
- Fixes #98 - Don't try appending `None`, helpers (seanokeeffe797@gmail.com)
- Fixes #104 - Replace None with "" when sorting (seanokeeffe797@gmail.com)
- Update Python 2 dependency declarations to new packaging standards
(seanokeeffe797@gmail.com)
- Fixes #105 - check ID_LIKE in /etc/os-release (seanokeeffe797@gmail.com)
- Cache process info (elyscape@gmail.com)
- Handle sshd sessions that use privilege separation (elyscape@gmail.com)
- fix typo in docs (seanokeeffe797@gmail.com)
- Switch Travis to container-based infrastructure (seanokeeffe797@gmail.com)
- Fix RHBug #1469282 - bash completion should exit cleanly if python-
argcomplete is not installed (seanokeeffe797@gmail.com)
- Fix argparse logic in spec (#94) (frostyx@email.cz)
- Update branches for fedora releaser (frostyx@email.cz)
- Add epel releaser (seanokeeffe797@gmail.com)
- rename tito releasers (seanokeeffe797@gmail.com)
* Wed Feb 21 2018 Iryna Shcherbina <ishcherb@redhat.com> - 0.6.13.1-4
- Update Python 2 dependency declarations to new packaging standards
(See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3)