From 7cef5a3f63834ef9f07c7a5ec1b7336bdc6620ac Mon Sep 17 00:00:00 2001 From: Peter Vielberth Date: Mon, 22 Feb 2021 00:55:41 +0100 Subject: dev-python/elasticsearch-py: added python 3.9 support Package-Manager: Portage-3.0.14, Repoman-3.0.2 Signed-off-by: Peter Vielberth Signed-off-by: Sam James --- .../elasticsearch-py-7.7.0-r1.ebuild | 109 +++++++++++++++++++++ 1 file changed, 109 insertions(+) create mode 100644 dev-python/elasticsearch-py/elasticsearch-py-7.7.0-r1.ebuild diff --git a/dev-python/elasticsearch-py/elasticsearch-py-7.7.0-r1.ebuild b/dev-python/elasticsearch-py/elasticsearch-py-7.7.0-r1.ebuild new file mode 100644 index 000000000000..ad8b35583dab --- /dev/null +++ b/dev-python/elasticsearch-py/elasticsearch-py-7.7.0-r1.ebuild @@ -0,0 +1,109 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{7..9} ) +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/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 +} -- cgit v1.2.3-65-gdbad