Gentoo Archives: gentoo-commits

From: Tony Vroon <chainsaw@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/elasticsearch-curator/
Date: Wed, 11 Jul 2018 08:13:14
Message-Id: 1531296786.1c34cce3e660fbec2941f0a0c12ae1b61bd55b9d.chainsaw@gentoo
1 commit: 1c34cce3e660fbec2941f0a0c12ae1b61bd55b9d
2 Author: Tomas Mozes <hydrapolic <AT> gmail <DOT> com>
3 AuthorDate: Thu Jun 28 08:56:54 2018 +0000
4 Commit: Tony Vroon <chainsaw <AT> gentoo <DOT> org>
5 CommitDate: Wed Jul 11 08:13:06 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1c34cce3
7
8 dev-python/elasticsearch-curator: bump to 5.5.4
9
10 Package-Manager: Portage-2.3.40, Repoman-2.3.9
11 Closes: https://github.com/gentoo/gentoo/pull/9172
12
13 dev-python/elasticsearch-curator/Manifest | 2 +
14 .../elasticsearch-curator-5.5.4.ebuild | 123 +++++++++++++++++++++
15 2 files changed, 125 insertions(+)
16
17 diff --git a/dev-python/elasticsearch-curator/Manifest b/dev-python/elasticsearch-curator/Manifest
18 index 7f391561a5f..e94ad49ab4f 100644
19 --- a/dev-python/elasticsearch-curator/Manifest
20 +++ b/dev-python/elasticsearch-curator/Manifest
21 @@ -4,3 +4,5 @@ DIST elasticsearch-6.2.4.tar.gz 29056810 BLAKE2B 121be27ac1db4fa6bbe285161b3f2b2
22 DIST elasticsearch-curator-5.1.2.tar.gz 290616 BLAKE2B 57c02ddaf188b8dd08286e47d4eaf4e0af05d65d89139f77f5d71274c394defe491393a7043bb426fa4b260c199e92221c1e57b6d24922898e5e3b8e9e2de58b SHA512 4ac0ae789fe662d352c3d228acc6aaf78873bb02b7108f985fd0a048d0b90cb2b30572eaa5f984025ab0d4209eda9d6fe6ac66cd8cc856f0707e3f12bb2e574d
23 DIST elasticsearch-curator-5.4.1.tar.gz 294363 BLAKE2B 180882cee9ed3424569705beda727f823cea0cfc47897d06b1cb8258166e40fc9913eb266481b09155a0f5f88b52a680b9187f69417983c2d78b5d24874489c3 SHA512 a2f187d99ebcf8069bfd472316aefe501719400268120c250812670e5525209cebffa913f5fb988305d963bb2a7b61cf47426905b856e34f41afd3a9d67d28f3
24 DIST elasticsearch-curator-5.5.1.tar.gz 301351 BLAKE2B 1dfcf53995c203a7201e421bc9f01a840597d8c1099ae434be52ff27e47e30f509bf1c5a42d507b549f5fe8ce45cbe74614ea76c338b0ae9de1d51877c8b32fe SHA512 a0ccb35fe93cefb927020add9629d5879cb64ee41a25130150ee8c45867e210f611a5fca0a43357c6f68cbf0c3f0acf677a7f8d2b3b493f4c2815637640ed9f6
25 +DIST elasticsearch-curator-5.5.4.tar.gz 221161 BLAKE2B 41828800dd9237142767d3163b3d87770ea5b904858991598cce2feb7c3a22d85c0d73275a2f232099ea82e7346fc20080a3bfef692ee808b730d3e4e6de405d SHA512 99ed18592105d19791513ad713115b6e2a6b589ab8b4e3fc4435b2878e25f552e0bda8d63cb6279970afc6ba39d9f3db17af1b4fb44500fe8a14b060e1530258
26 +DIST elasticsearch-oss-6.3.1.tar.gz 29417012 BLAKE2B 356665cde2f12ae5813d95302398f5fced07c53d25e6e1dc7ad41c8dc8ad42cd3d5bd4ffa6cab24af8088c29800f6ec59a483710272b756af2f76b5967d4b932 SHA512 3df0f7f35e150198f7ff660cf4d90fbd1c2ca587287c6340d427f968711b6390123bfafd09a744c9bdf328d57423bcb75f6e4701ce14a7257388611abea62545
27
28 diff --git a/dev-python/elasticsearch-curator/elasticsearch-curator-5.5.4.ebuild b/dev-python/elasticsearch-curator/elasticsearch-curator-5.5.4.ebuild
29 new file mode 100644
30 index 00000000000..765bcfef370
31 --- /dev/null
32 +++ b/dev-python/elasticsearch-curator/elasticsearch-curator-5.5.4.ebuild
33 @@ -0,0 +1,123 @@
34 +# Copyright 1999-2018 Gentoo Foundation
35 +# Distributed under the terms of the GNU General Public License v2
36 +
37 +EAPI=6
38 +
39 +PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
40 +
41 +MY_PN="curator"
42 +ES_VERSION="6.3.1"
43 +
44 +inherit distutils-r1
45 +
46 +DESCRIPTION="Tending time-series indices in Elasticsearch"
47 +HOMEPAGE="https://github.com/elasticsearch/curator"
48 +SRC_URI="https://github.com/elasticsearch/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz
49 + test? ( https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-oss-${ES_VERSION}.tar.gz )"
50 +
51 +LICENSE="Apache-2.0"
52 +SLOT="0"
53 +KEYWORDS="~amd64 ~x86"
54 +# tests fail in chroot
55 +# https://github.com/elastic/elasticsearch/issues/12018
56 +RESTRICT="test"
57 +IUSE="doc test"
58 +
59 +RDEPEND="
60 + >=dev-python/elasticsearch-py-5.5.2[${PYTHON_USEDEP}]
61 + <dev-python/elasticsearch-py-7.0.0[${PYTHON_USEDEP}]
62 + >=dev-python/click-6.7[${PYTHON_USEDEP}]
63 + >=dev-python/certifi-2018.04.16[${PYTHON_USEDEP}]
64 + >=dev-python/urllib3-1.20[${PYTHON_USEDEP}]
65 + >=dev-python/voluptuous-0.9.3[${PYTHON_USEDEP}]"
66 +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
67 + >=dev-python/six-1.11.0[${PYTHON_USEDEP}]
68 + dev-python/sphinx[${PYTHON_USEDEP}]
69 + >=dev-python/pyyaml-3.10[${PYTHON_USEDEP}]
70 + test? ( ${RDEPEND}
71 + virtual/jre:1.8
72 + dev-python/mock[${PYTHON_USEDEP}]
73 + dev-python/nose[${PYTHON_USEDEP}]
74 + dev-python/coverage[${PYTHON_USEDEP}]
75 + dev-python/nosexcover[${PYTHON_USEDEP}]
76 + dev-python/six[${PYTHON_USEDEP}] )"
77 +
78 +S="${WORKDIR}/${MY_PN}-${PV}"
79 +
80 +python_prepare_all() {
81 + # avoid downloading from net
82 + sed -e '/^intersphinx_mapping/,+3d' -i docs/conf.py || die
83 +
84 + # requests_aws4auth not in portage
85 + sed -e '/boto3/d' \
86 + -e '/requests_aws4auth/d' \
87 + -i setup.cfg setup.py || die
88 +
89 + distutils-r1_python_prepare_all
90 +}
91 +
92 +python_compile_all() {
93 + emake -C docs -j1 man $(usex doc html "")
94 +}
95 +
96 +# running tests in non-chroot environments:
97 +# FEATURES="test -usersandbox" emerge dev-python/elasticsearch-curator
98 +python_test() {
99 + ES="${WORKDIR}/elasticsearch-${ES_VERSION}"
100 + ES_PORT="25123"
101 + ES_INSTANCE="gentoo-es-curator-test"
102 + ES_LOG="${ES}/logs/${ES_INSTANCE}.log"
103 + PID="${ES}/elasticsearch.pid"
104 +
105 + # run Elasticsearch instance on custom port
106 + sed -i "s/#http.port: 9200/http.port: ${ES_PORT}/g; \
107 + s/#cluster.name: my-application/cluster.name: ${ES_INSTANCE}/g" \
108 + "${ES}/config/elasticsearch.yml" || die
109 +
110 + # start local instance of elasticsearch
111 + "${ES}/bin/elasticsearch" -d -p "${PID}" -Epath.repo=/ || die
112 +
113 + local i
114 + local es_started=0
115 + for i in {1..20}; do
116 + grep -q "started" "${ES_LOG}" 2> /dev/null
117 + if [[ $? -eq 0 ]]; then
118 + einfo "Elasticsearch started"
119 + es_started=1
120 + eend 0
121 + break
122 + elif grep -q 'BindException\[Address already in use\]' "${ES_LOG}" 2>/dev/null; then
123 + eend 1
124 + eerror "Elasticsearch already running"
125 + die "Cannot start Elasticsearch for tests"
126 + else
127 + einfo "Waiting for Elasticsearch"
128 + eend 1
129 + sleep 2
130 + continue
131 + fi
132 + done
133 +
134 + [[ $es_started -eq 0 ]] && die "Elasticsearch failed to start"
135 +
136 + export TEST_ES_SERVER="localhost:${ES_PORT}"
137 + esetup.py test || die
138 +
139 + pkill -F ${PID}
140 +}
141 +
142 +python_install_all() {
143 + use doc && local HTML_DOCS=( docs/_build/html/. )
144 + doman docs/_build/man/*
145 + distutils-r1_python_install_all
146 +}
147 +
148 +pkg_postinst() {
149 + ewarn ""
150 + ewarn "For Python 3 support information please read: http://click.pocoo.org/latest/python3/"
151 + ewarn ""
152 + ewarn "Example usage on Python 3:"
153 + ewarn "export LC_ALL=en_US.UTF-8"
154 + ewarn "export LANG=en_US.UTF-8"
155 + ewarn "curator ..."
156 +}