blob: 2cae049bcf61f14844cf67c720d89f16e539fa49 (
plain)
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
|
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
PYTHON_COMPAT=( python3_{6,7,8} )
DISTUTILS_USE_SETUPTOOLS=bdepend
ES_VERSION="7.7.0"
inherit distutils-r1
MY_PN=${PN/-py/}
DESCRIPTION="Official Python low-level client for Elasticsearch"
HOMEPAGE="https://github.com/elastic/elasticsearch-py"
SRC_URI="https://github.com/elastic/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz
test? ( https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-oss-${ES_VERSION}-no-jdk-linux-x86_64.tar.gz )"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE="doc test"
# tests fail in chroot
# https://github.com/elastic/elasticsearch/issues/12018
RESTRICT="test"
RDEPEND="dev-python/certifi[${PYTHON_USEDEP}]
>=dev-python/urllib3-1.21.1[${PYTHON_USEDEP}]"
DEPEND="${RDEPEND}
dev-python/sphinx_rtd_theme[${PYTHON_USEDEP}]
test? (
>=dev-python/requests-2.0.0[${PYTHON_USEDEP}]
<dev-python/requests-3.0.0[${PYTHON_USEDEP}]
dev-python/nose[${PYTHON_USEDEP}]
dev-python/mock[${PYTHON_USEDEP}]
dev-python/pretty-yaml[${PYTHON_USEDEP}]
virtual/jre:*
)"
BDEPEND=">=dev-python/sphinx-1.3.1-r1"
python_prepare_all() {
# needs numpy/pandas
sed -e '/test_serializes_numpy_bool/,+79d' \
-e '/import numpy/d' \
-e '/import pandas/d' \
-i test_elasticsearch/test_serializer.py || die
sed -e '/coverage/d' \
-e '/nosexcover/d' \
-i setup.py || die
distutils-r1_python_prepare_all
}
python_compile_all() {
emake -C docs -j1 man $(usex doc html "")
}
# FEATURES="test -usersandbox" emerge dev-python/elasticsearch-py
python_test() {
local es="${WORKDIR}/elasticsearch-${ES_VERSION}"
local es_port="25124"
local es_instance="gentoo-es-py-test"
local es_log="${es}/logs/${es_instance}.log"
local pid="${es}/elasticsearch.pid"
export JAVA_HOME=$(java-config -g JAVA_HOME || die)
# run Elasticsearch instance on custom port
sed -i "s/#http.port: 9200/http.port: ${es_port}/g; \
s/#cluster.name: my-application/cluster.name: ${es_instance}/g" \
"${es}/config/elasticsearch.yml" || die
# start local instance of elasticsearch
"${es}"/bin/elasticsearch -d -p "${pid}" -Epath.repo=/ || die
local i
local es_started=0
for i in {1..20}; do
grep -q "started" ${es_log} 2> /dev/null
if [[ $? -eq 0 ]]; then
einfo "Elasticsearch started"
es_started=1
eend 0
break
elif grep -q 'BindException\[Address already in use\]' "${es_log}" 2>/dev/null; then
eend 1
eerror "Elasticsearch already running"
die "Cannot start Elasticsearch for tests"
else
einfo "Waiting for Elasticsearch"
eend 1
sleep 2
continue
fi
done
[[ $es_started -eq 0 ]] && die "Elasticsearch failed to start"
export ELASTICSEARCH_HOST="localhost:${es_port}"
nosetests -v || die
pkill -F ${pid} || die
}
python_install_all() {
use doc && HTML_DOCS=( docs/_build/html/. )
doman docs/_build/man/*
distutils-r1_python_install_all
}
|