Update tracer to 0.6.9-1
This commit is contained in:
parent
c513f90ea9
commit
a779064c00
1
.gitignore
vendored
1
.gitignore
vendored
@ -11,3 +11,4 @@
|
||||
/tracer-0.6.6.tar.gz
|
||||
/tracer-0.6.7.tar.gz
|
||||
/tracer-0.6.8.tar.gz
|
||||
/tracer-0.6.9.tar.gz
|
||||
|
||||
2
sources
2
sources
@ -1 +1 @@
|
||||
f814554c43873fedb8c7ff459349b789 tracer-0.6.8.tar.gz
|
||||
521028b75124c732ae1b6fdfe525187c tracer-0.6.9.tar.gz
|
||||
|
||||
25
tracer.spec
25
tracer.spec
@ -1,5 +1,5 @@
|
||||
Name: tracer
|
||||
Version: 0.6.8
|
||||
Version: 0.6.9
|
||||
Release: 1%{?dist}
|
||||
Summary: Finds outdated running applications in your system
|
||||
|
||||
@ -13,18 +13,31 @@ URL: http://tracer-package.com/
|
||||
# tito build --tgz
|
||||
Source0: %{name}-%{version}.tar.gz
|
||||
|
||||
BuildRequires: python2-devel
|
||||
BuildRequires: asciidoc
|
||||
BuildRequires: gettext
|
||||
BuildRequires: python2-devel
|
||||
BuildRequires: python3-devel
|
||||
%if 0%{?with_python3}
|
||||
BuildRequires: python3-sphinx
|
||||
BuildRequires: python3-beautifulsoup4
|
||||
BuildRequires: python3-psutil
|
||||
BuildRequires: python3-pygments
|
||||
BuildRequires: python3-lxml
|
||||
Requires: rpm-python3
|
||||
Requires: python3
|
||||
Requires: python3-beautifulsoup4
|
||||
Requires: python3-psutil
|
||||
%else
|
||||
BuildRequires: python-sphinx
|
||||
BuildRequires: python-beautifulsoup4
|
||||
BuildRequires: python-psutil
|
||||
BuildRequires: python-pygments
|
||||
BuildRequires: python-lxml
|
||||
BuildRequires: gettext
|
||||
Requires: rpm-python
|
||||
Requires: python
|
||||
Requires: python-beautifulsoup4
|
||||
Requires: python-psutil
|
||||
%endif
|
||||
|
||||
%description
|
||||
Tracer determines which applications use outdated files and prints them. For
|
||||
@ -47,9 +60,11 @@ mkdir -p %{buildroot}/%{_bindir}
|
||||
mkdir -p %{buildroot}/%{_datadir}/tracer
|
||||
mkdir -p %{buildroot}%{_mandir}/man8
|
||||
mkdir -p %{buildroot}/%{python2_sitelib}/tracer
|
||||
mkdir -p %{buildroot}/%{python3_sitelib}/tracer
|
||||
cp -a bin/tracer.py %{buildroot}/%{_bindir}/tracer
|
||||
cp -a data/* %{buildroot}/%{_datadir}/tracer/
|
||||
cp -ar tracer/* tests %{buildroot}/%{python2_sitelib}/tracer/
|
||||
cp -ar tracer/* tests %{buildroot}/%{python3_sitelib}/tracer/
|
||||
install -m644 doc/build/man/tracer.8 %{buildroot}/%{_mandir}/man8/
|
||||
make DESTDIR=%{buildroot}/usr/share/ mo
|
||||
%find_lang %{name}
|
||||
@ -61,8 +76,12 @@ make DESTDIR=%{buildroot}/usr/share/ mo
|
||||
%{_bindir}/tracer
|
||||
%{_datadir}/tracer/
|
||||
%{python2_sitelib}/tracer/
|
||||
%{python3_sitelib}/tracer/
|
||||
|
||||
%changelog
|
||||
* Thu Apr 14 2016 Jakub Kadlčík <frostyx@email.cz> 0.6.9-1
|
||||
- Declare official python3 support (frostyx@email.cz)
|
||||
|
||||
* Wed Feb 17 2016 Jakub Kadlčík <frostyx@email.cz> 0.6.8-1
|
||||
- Fix /etc/os-release issues on CentOS (tingping@tingping.se)
|
||||
- Add support for Arch Linux (tingping@tingping.se)
|
||||
|
||||
Loading…
Reference in New Issue
Block a user