diff options
author | 2016-12-18 07:30:25 +0000 | |
---|---|---|
committer | 2016-12-27 13:44:13 -0500 | |
commit | 61aee0d8a0914dd9ae1f96b54ed7c42fa70ce756 (patch) | |
tree | 2e3240025984f2bba6f379fdb333076b75824795 /dev-python/elasticsearch-curator/elasticsearch-curator-4.2.4.ebuild | |
parent | sci-geosciences/opencpn-plugin-weather_routing: remove old version (diff) | |
download | gentoo-61aee0d8a0914dd9ae1f96b54ed7c42fa70ce756.tar.gz gentoo-61aee0d8a0914dd9ae1f96b54ed7c42fa70ce756.tar.bz2 gentoo-61aee0d8a0914dd9ae1f96b54ed7c42fa70ce756.zip |
dev-python/elasticsearch-curator: bump to 4.2.4
Diffstat (limited to 'dev-python/elasticsearch-curator/elasticsearch-curator-4.2.4.ebuild')
-rw-r--r-- | dev-python/elasticsearch-curator/elasticsearch-curator-4.2.4.ebuild | 120 |
1 files changed, 120 insertions, 0 deletions
diff --git a/dev-python/elasticsearch-curator/elasticsearch-curator-4.2.4.ebuild b/dev-python/elasticsearch-curator/elasticsearch-curator-4.2.4.ebuild new file mode 100644 index 000000000000..5f0b8fa7d50b --- /dev/null +++ b/dev-python/elasticsearch-curator/elasticsearch-curator-4.2.4.ebuild @@ -0,0 +1,120 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +PYTHON_COMPAT=( python{2_7,3_4,3_5} ) + +MY_PN="curator" +ES_VERSION="5.1.1" + +inherit distutils-r1 + +DESCRIPTION="Tending time-series indices in Elasticsearch" +HOMEPAGE="https://github.com/elasticsearch/curator" +SRC_URI="https://github.com/elasticsearch/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz + test? ( https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-${ES_VERSION}.tar.gz )" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="doc test" + +RDEPEND=" + >=dev-python/elasticsearch-py-2.4.0[${PYTHON_USEDEP}] + <dev-python/elasticsearch-py-3.0.0[${PYTHON_USEDEP}] + >=dev-python/click-6.0[${PYTHON_USEDEP}] + >=dev-python/certifi-2016.9.26[${PYTHON_USEDEP}] + >=dev-python/urllib3-1.8.3[${PYTHON_USEDEP}] + >=dev-python/voluptuous-0.9.3[${PYTHON_USEDEP}]" +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] + dev-python/sphinx[${PYTHON_USEDEP}] + >=dev-python/pyyaml-3.10[${PYTHON_USEDEP}] + test? ( ${RDEPEND} + || ( virtual/jre:1.8 virtual/jre:1.7 ) + dev-python/mock[${PYTHON_USEDEP}] + dev-python/nose[${PYTHON_USEDEP}] + dev-python/coverage[${PYTHON_USEDEP}] + dev-python/nosexcover[${PYTHON_USEDEP}] + dev-python/six[${PYTHON_USEDEP}] )" + +S="${WORKDIR}/${MY_PN}-${PV}" + +python_test() { + ES="${WORKDIR}/elasticsearch-${ES_VERSION}" + ES_PORT="25123" + ES_LOG="${ES}/logs/elasticsearch.log" + PID="${ES}/elasticsearch.pid" + + # run Elasticsearch instance on custom port + sed -i "s/#http.port: 9200/http.port: ${ES_PORT}/g; \ + s/#cluster.name: my-application/cluster.name: gentoo-es-curator-test/g" \ + "${ES}/config/elasticsearch.yml" || die + + # Elasticsearch 1.6+ needs to set path.repo + grep -q "^path.repo" "${ES}/config/elasticsearch.yml" + if [[ $? -ne 0 ]]; then + echo "path.repo: /" >> "${ES}/config/elasticsearch.yml" || die + fi + + # start local instance of elasticsearch + "${ES}/bin/elasticsearch" -d -p "${PID}" || die + + local i + for i in {1..10}; do + grep -q "started" ${ES_LOG} 2> /dev/null + if [[ $? -eq 0 ]]; then + einfo "Elasticsearch started" + 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 + + export TEST_ES_SERVER="localhost:${ES_PORT}" + esetup.py test || die + + pkill -F ${PID} +} + +python_prepare_all() { + # avoid downloading from net + sed -e '/^intersphinx_mapping/,+3d' -i docs/conf.py || die + + # test test_no_config fails because by default it connects + # to port 9200 and we run es on custom port + # https://github.com/elastic/curator/issues/843 + sed -e '39,57d' -i test/integration/test_cli.py || die + + distutils-r1_python_prepare_all +} + +python_compile_all() { + cd docs || die + emake man $(usex doc html "") +} + +python_install_all() { + use doc && local HTML_DOCS=( docs/_build/html/. ) + doman docs/_build/man/* + distutils-r1_python_install_all +} + +pkg_postinst() { + ewarn "" + ewarn "For Python 3 support information please read: http://click.pocoo.org/3/python3/" + ewarn "" + ewarn "Example usage on Python 3:" + ewarn "export LC_ALL=en_US.UTF-8" + ewarn "export LANG=en_US.UTF-8" + ewarn "curator ..." +} |