Added: new spec file
Change-Id: I5c10a9101361f4f04d8532d5f46cf729f65d7be7
This commit is contained in:
parent
956bf1f945
commit
4cb2524c49
@ -1,52 +1,181 @@
|
||||
%{!?__python2: %global __python2 /usr/bin/python2}
|
||||
%{!?python2_sitelib: %global python2_sitelib %(%{__python2} -c "from distutils.sysconfig import get_python_lib; print(get_python_lib())")}
|
||||
%{!?python2_sitearch: %global python2_sitearch %(%{__python2} -c "from distutils.sysconfig import get_python_lib; print(get_python_lib(1))")}
|
||||
%global with_python3 0
|
||||
%global with_docs 0
|
||||
|
||||
%define name python-timmy
|
||||
%{!?version: %define version 1.8.1}
|
||||
%{!?release: %define release 1}
|
||||
%global pypi_name timmy
|
||||
|
||||
Summary: Console utility for collecting cluster information
|
||||
Name: %{name}
|
||||
Version: %{version}
|
||||
Release: %{release}
|
||||
Source0: %{name}-%{version}.tar.gz
|
||||
License: Apache
|
||||
Group: Support/Tools
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-buildroot
|
||||
Prefix: %{_prefix}
|
||||
Name: python-%{pypi_name}
|
||||
Version: 1.23.6
|
||||
Release: 1%{?dist}~mos0
|
||||
Summary: Log collector tool for OpenStack Fuel
|
||||
|
||||
BuildArch: noarch
|
||||
License: ASL 2.0
|
||||
URL: https://github.com/adobdin/timmy
|
||||
Source0: https://pypi.io/packages/source/t/%{pypi_name}/%{pypi_name}-%{version}.tar.gz
|
||||
BuildArch: noarch
|
||||
|
||||
BuildRequires: python-setuptools
|
||||
BuildRequires: python2-devel
|
||||
BuildRequires: python-setuptools
|
||||
Requires: PyYAML >= 3.11
|
||||
|
||||
%if 0%{!?rhel:0} == 6
|
||||
Requires: python-argparse
|
||||
%endif
|
||||
|
||||
Requires: PyYAML
|
||||
|
||||
%description
|
||||
Summary: Console utility for collecting cluster information
|
||||
Mirantis OpenStack Ansible-like tool for parallel node operations: two-way data
|
||||
transfer, log collection, remote command execution.
|
||||
|
||||
%if 0%{?with_docs}
|
||||
%package doc
|
||||
Summary: Documentation for timmy tool
|
||||
Group: Documentation
|
||||
BuildRequires: python-sphinx
|
||||
|
||||
|
||||
%description doc
|
||||
Mirantis OpenStack Ansible-like tool for parallel node operations.
|
||||
This package contains auto-generated documentation.
|
||||
%endif
|
||||
|
||||
|
||||
%if 0%{?with_python3}
|
||||
%package -n python3-%{pypi_name}
|
||||
Summary: Log collector tool for OpenStack Fuel
|
||||
BuildRequires: python3-devel
|
||||
BuildRequires: python3-setuptools
|
||||
Requires: python3-PyYAML
|
||||
|
||||
%description -n python3-%{pypi_name}
|
||||
Mirantis OpenStack Ansible-like tool for parallel node operations: two-way data
|
||||
transfer, log collection, remote command execution.
|
||||
%endif
|
||||
|
||||
%prep
|
||||
%setup -cq -n %{name}-%{version}
|
||||
%setup -cq -n %{pypi_name}-%{version}
|
||||
# Remove bundled egg-info
|
||||
rm -rf %{pypi_name}.egg-info
|
||||
|
||||
%if 0%{?with_python3}
|
||||
rm -rf %{py3dir}
|
||||
cp -a . %{py3dir}
|
||||
%endif
|
||||
|
||||
%build
|
||||
cd %{_builddir}/%{name}-%{version} && %{__python2} setup.py build
|
||||
%{__python2} setup.py build
|
||||
%if 0%{?with_docs}
|
||||
# generate html docs
|
||||
#todo - switch to build_sphinx
|
||||
#%{__python2} setup.py build_sphinx
|
||||
export PYTHONPATH="%{python2_sitearch}:%{python2_sitelib}:%{buildroot}%{python2_sitelib}:."
|
||||
sphinx-build -b html doc/source/ doc/build/
|
||||
# remove the sphinx-build leftovers
|
||||
rm -rf html/.{doctrees,buildinfo}
|
||||
%endif
|
||||
|
||||
|
||||
%install
|
||||
rm -rf $RPM_BUILD_ROOT
|
||||
cd %{_builddir}/%{name}-%{version} && %{__python2} setup.py install --single-version-externally-managed -O1 --root=$RPM_BUILD_ROOT
|
||||
%{__python2} setup.py install --skip-build --root %{buildroot}
|
||||
|
||||
%clean
|
||||
rm -rf $RPM_BUILD_ROOT
|
||||
%if 0%{?with_python3}
|
||||
pushd %{py3dir}
|
||||
%{__python3} setup.py install --skip-build --root %{buildroot}
|
||||
popd
|
||||
%endif
|
||||
|
||||
|
||||
%files
|
||||
%doc README.md
|
||||
%{_bindir}/timmy
|
||||
%{python2_sitelib}/%{pypi_name}
|
||||
%{python2_sitelib}/%{pypi_name}_data
|
||||
%{python2_sitelib}/*.egg-info
|
||||
|
||||
%if 0%{?with_docs}
|
||||
%files doc
|
||||
%doc doc/build/html
|
||||
%license LICENSE
|
||||
%endif
|
||||
|
||||
%if 0%{?with_python3}
|
||||
%files -n python3-%{pypi_name}
|
||||
%doc README.md
|
||||
%{_bindir}/timmy
|
||||
%{python3_sitelib}/%{pypi_name}
|
||||
%{python3_sitelib}/%{pypi_name}_data
|
||||
%{python3_sitelib}/*.egg-info
|
||||
%endif
|
||||
|
||||
%files -n python-timmy
|
||||
/usr/bin/timmy
|
||||
/usr/share/timmy/*
|
||||
%{python2_sitelib}/timmy*
|
||||
|
||||
%changelog
|
||||
* Thu Jun 30 2016 Aleksandr Dobdin <adobdin@mirantis.com> - 1.8.1
|
||||
- Created spec
|
||||
* Wed Nov 30 2016 Dmitry Sutyagin <dstuaygin@mirantis.com> - 1.23.6
|
||||
- Fix: Fuel not skipped when shell mode used
|
||||
|
||||
* Tue Nov 29 2016 Dmitry Sutyagin <dstuyagin@mirantis.com> - 1.23.5
|
||||
- Change: fuel postgres dump collection
|
||||
- Add: timmy version in log and outdir
|
||||
- Change: collect /etc/fuel** instead of /etc/fuel
|
||||
- Add: debugging traceback on USR1
|
||||
|
||||
* Thu Nov 24 2016 Aleksandr Dobdin <adobdin@mirantis.com> - 1.23.3
|
||||
- Fix: timmy fails in "mdir" when using --dest-file
|
||||
- Fix: timmy stuck when calculating log size
|
||||
- Merge "fix: conf_assign_once can assign to skipped nodes"
|
||||
|
||||
* Tue Nov 22 2016 Dmitry Sutyagin <dsutyagin@mirantis.com> - 1.23.1
|
||||
- fix: conf_assign_once can assign to skipped nodes
|
||||
- Add: collect resolv.conf in Xenial (systemd)
|
||||
- Add: make rsync options configurable
|
||||
|
||||
* Fri Nov 18 2016 Aleksandr Dobdin <adobdin@mirantis.com> - 1.22.2
|
||||
- Add: load notice in usage doc
|
||||
- Fix: issue #65
|
||||
- Fix: modules not installed
|
||||
- Add: Timmy modular rewrite
|
||||
- Add: scripts_all_pairs - new functionality
|
||||
- Fix: regression - subs don't stop on Ctrl+C
|
||||
- Fix: main process stuck if subprocess killed
|
||||
- Fix: revert occasionally disabled get_nodes_api
|
||||
- Add: sample logrotate configuration
|
||||
- Fix: make logging honor logrotate, fix getLogger
|
||||
- Add: scripts_all_pairs - new functionality
|
||||
- Fix: regression - subs don't stop on Ctrl+C
|
||||
- Fix: main process stuck if subprocess killed
|
||||
- Fix: timmy exits 0 on unhandled exceptions
|
||||
- Add: login parameter for ssh
|
||||
- Fix: Too many open files
|
||||
|
||||
* Thu Sep 22 2016 Dmitry Sutyagin <dsutyagin@mirantis.com> - 1.20.4
|
||||
- Fix: exit properly on not enough space
|
||||
- Fix: trace when file missing in get_cluster_id
|
||||
- Change: increase default timeout for commands/scripts to 30
|
||||
- Add: debug messages with pid
|
||||
- Fix: logs-maxthreads set to 10; default was too high
|
||||
- Fix: require pytest-runner only for test command
|
||||
- Fix: wheel support
|
||||
- Change: iptables collection, remove iptables from env
|
||||
- Add: test for path sep in scripts in rq/default.yaml
|
||||
- Remove: fuelclient support in Fuel 9.1+
|
||||
- Add: conf collection for ironic and cinder-block-storage
|
||||
- Fix: fuel CLI auth, fuel CLI for 9.0+
|
||||
|
||||
* Thu Sep 15 2016 Dmitry Sutyagin <dsutyagin@mirantis.com> - 1.20.3
|
||||
- Fix: incorrect filelist names in rq
|
||||
|
||||
* Tue Sep 13 2016 Aleksandr Dobdin <adobdin@mirantis.com> - 1.20.1
|
||||
- Fix: check free space for archive directory
|
||||
|
||||
* Thu Sep 08 2016 Dmitry Sutyagin <dsutyagin@mirantis.com> - 1.19.5
|
||||
- no log exclusions by default, clearer size message
|
||||
fix: filter should be an instance
|
||||
|
||||
* Wed Sep 07 2016 Aleksandr Dobdin <adobdin@mirantis.com> - 1.19.3
|
||||
- Package update
|
||||
|
||||
* Tue Sep 06 2016 Dmitry <dsutyagin@mirantis.com> - 1.19.1
|
||||
- Fix: do not wipe archive_dir to prevent unexpected data deletion
|
||||
|
||||
* Tue Aug 23 2016 Aleksandr Dobdin <adobdin@mirantis.com> - 1.19.0
|
||||
- Package update
|
||||
|
||||
* Tue Aug 23 2016 Aleksandr Dobdin <adobdin@mirantis.com> - 1.16.2-1
|
||||
- Version bump
|
||||
|
||||
* Tue Aug 2 2016 Igor Yozhikov <iyozhikov@mirantis.com> - 1.14.3-1
|
||||
- Initial package
|
||||
|
Loading…
x
Reference in New Issue
Block a user