Update tracer to 0.5.9-1

This commit is contained in:
FrostyX 2015-05-18 23:24:15 +02:00
parent b938151f02
commit fc2350fe15
3 changed files with 24 additions and 3 deletions

1
.gitignore vendored
View File

@ -3,3 +3,4 @@
/tracer-0.5.6.tar.gz
/tracer-0.5.7.tar.gz
/tracer-0.5.8.tar.gz
/tracer-0.5.9.tar.gz

View File

@ -1 +1 @@
a6cc54a82bb8df44c409713bc06197a4 tracer-0.5.8.tar.gz
91a339c71580a33c033c7ac0dd73c4d5 tracer-0.5.9.tar.gz

View File

@ -1,5 +1,5 @@
Name: tracer
Version: 0.5.8
Version: 0.5.9
Release: 1%{?dist}
Summary: Finds outdated running applications in your system
@ -17,6 +17,8 @@ BuildRequires: python2-devel
BuildRequires: asciidoc
BuildRequires: python-sphinx
BuildRequires: libxslt
BuildRequires: gettext
Requires: rpm-python
Requires: python
Requires: python-beautifulsoup4
Requires: python-psutil
@ -46,9 +48,11 @@ cp -a bin/tracer.py %{buildroot}/%{_bindir}/tracer
cp -a data/* %{buildroot}/%{_datadir}/tracer/
cp -ar tracer/* tests %{buildroot}/%{python2_sitelib}/tracer/
install -m644 doc/build/man/tracer.8 %{buildroot}/%{_mandir}/man8/
make DESTDIR=%{buildroot}/usr/share/ mo
%find_lang %{name}
%files
%files -f %{name}.lang
%doc LICENSE README.md
%doc %{_mandir}/man8/tracer.8*
%{_bindir}/tracer
@ -56,6 +60,22 @@ install -m644 doc/build/man/tracer.8 %{buildroot}/%{_mandir}/man8/
%{python2_sitelib}/tracer/
%changelog
* Mon May 18 2015 Jakub Kadlčík <frostyx@email.cz> 0.5.9-1
- Pick the most recent sqlite database (RhBug:1214961) (frostyx@email.cz)
- Obsolete positional arguments with --packages (frostyx@email.cz)
- Implement application rename functionality (frostyx@email.cz)
- Add LXDE applications (frostyx@email.cz)
- Add Xfce applications (frostyx@email.cz)
- Add MATE applications (frostyx@email.cz)
- Print if application affects something else (frostyx@email.cz)
- Add Czech translation (frostyx@email.cz)
- Use localization system and transifex
- Print python version in system view (frostyx@email.cz)
- Implement Python3 support
- Add setup.py script for pip (frostyx@email.cz)
- Add dependency to 'rpm-python' (frostyx@email.cz)
- Add small API
* Mon Feb 23 2015 Jakub Kadlčík <frostyx@email.cz> 0.5.8-1
- There is children instead of get_children in psutil2 (frostyx@email.cz)
- ProcessWrapper provides api of new version, so use it (frostyx@email.cz)