-
Notifications
You must be signed in to change notification settings - Fork 0
/
elasticsearch-curator.spec
63 lines (43 loc) · 1.84 KB
/
elasticsearch-curator.spec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
########################################################################################
%define package_name curator
########################################################################################
Summary: Utility for tending Elasticsearch indices
Name: elasticsearch-%{package_name}
Version: 4.2.3
Release: 0%{?dist}
License: ASLv2.0
Group: Development/Libraries
URL: https://github.com/elastic/curator
Source: https://github.com/elastic/%{package_name}/archive/v%{version}.tar.gz
BuildRequires: python-devel python-setuptools python-certifi
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
Requires: python-elasticsearch >= 2.0 python-certifi
BuildArch: noarch
Provides: %{name} = %{verion}-%{release}
########################################################################################
%description
Like a museum curator manages the exhibits and collections on display, Elasticsearch
Curator helps you curate, or manage your indices.
########################################################################################
%prep
%setup -qn %{package_name}-%{version}
%clean
rm -rf %{buildroot}
%build
python setup.py build
%install
rm -rf %{buildroot}
python setup.py install --prefix=%{_prefix} --root=%{buildroot}
########################################################################################
%files
%defattr(-,root,root,-)
%{python_sitelib}/*
%{_bindir}/%{package_name}
%{_bindir}/%{package_name}_cli
%{_bindir}/es_repo_mgr
########################################################################################
%changelog
* Tue Nov 29 2016 Gleb Goncharov <ggoncharov@simtechdev.com> - 4.2.3-0
- Updated to latest version.
* Mon Sep 05 2016 Gleb Goncharov <ggoncharov@simtechdev.com> - 4.0.6-0
- Initial build