diff options
author | Louis Sautier <sautier.louis@gmail.com> | 2017-01-19 13:10:02 +0100 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2017-01-20 20:20:59 +0100 |
commit | 08cfa167f384fcec01041810d9f6c1b269cf8a87 (patch) | |
tree | b3d74c8b1364996c308e244c5700cea902ebf176 /dev-python/pylibmc/pylibmc-1.5.1-r1.ebuild | |
parent | profiles/arch/alpha: Clean obsolete package.use* entries (diff) | |
download | gentoo-08cfa167f384fcec01041810d9f6c1b269cf8a87.tar.gz gentoo-08cfa167f384fcec01041810d9f6c1b269cf8a87.tar.bz2 gentoo-08cfa167f384fcec01041810d9f6c1b269cf8a87.zip |
dev-python/pylibmc: add py3.5, doc, drop pypy
Tests fail with pypy as it doesn't have a sys.refcount method.
Package-Manager: Portage-2.3.3, Repoman-2.3.1
Closes: https://github.com/gentoo/gentoo/pull/3539
Diffstat (limited to 'dev-python/pylibmc/pylibmc-1.5.1-r1.ebuild')
-rw-r--r-- | dev-python/pylibmc/pylibmc-1.5.1-r1.ebuild | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/dev-python/pylibmc/pylibmc-1.5.1-r1.ebuild b/dev-python/pylibmc/pylibmc-1.5.1-r1.ebuild new file mode 100644 index 000000000000..fdee8662c45d --- /dev/null +++ b/dev-python/pylibmc/pylibmc-1.5.1-r1.ebuild @@ -0,0 +1,51 @@ +# Copyright 1999-2017 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} ) + +inherit distutils-r1 + +DESCRIPTION="Libmemcached wrapper written as a Python extension" +HOMEPAGE="http://sendapatch.se/projects/pylibmc/ https://pypi.python.org/pypi/pylibmc" +# One image is missing from the doc at PyPI +# https://github.com/lericson/pylibmc/pull/221 +SRC_URI="https://github.com/lericson/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="doc test" + +RDEPEND=">=dev-libs/libmemcached-0.32" +# Older sphinx versions fail to compile the doc +# https://github.com/sphinx-doc/sphinx/issues/3266 +DEPEND="${RDEPEND} + doc? ( >=dev-python/sphinx-1.5.1-r1[${PYTHON_USEDEP}] ) + test? ( + net-misc/memcached + dev-python/nose[${PYTHON_USEDEP}] + )" + +python_prepare_all() { + sed -e "/with-info=1/d" -i setup.cfg || die + distutils-r1_python_prepare_all +} + +python_compile_all() { + if use doc; then + # This variable is added to sys.path + # but it does not seem to be useful + PYLIBMC_DIR="." emake -C docs + HTML_DOCS=( docs/_build/html/. ) + fi +} + +python_test() { + memcached -d -p 11219 -u nobody -l localhost -P "${T}/m.pid" || die + MEMCACHED_PORT=11219 nosetests + local ret=${?} + kill "$(<"${T}/m.pid")" || die + [[ ${ret} == 0 ]] || die "Tests fail with ${EPYTHON}!" +} |