gentoo/dev-python/pylibmc/pylibmc-1.5.0.ebuild
Agostino Sarubbo 0ed4912490
dev-python/pylibmc: x86 stable wrt bug #593048
Package-Manager: portage-2.3.0
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo <ago@gentoo.org>
2017-01-04 16:29:27 +01:00

35 lines
873 B
Bash

# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI="5"
PYTHON_COMPAT=( python{2_7,3_4} pypy )
inherit distutils-r1
DESCRIPTION="Libmemcached wrapper written as a Python extension"
HOMEPAGE="http://sendapatch.se/projects/pylibmc/ https://pypi.python.org/pypi/pylibmc"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE="test"
RDEPEND=">=dev-libs/libmemcached-0.32"
DEPEND="${RDEPEND}
test? ( dev-python/nose[${PYTHON_USEDEP}] )"
python_prepare_all() {
sed -e "/with-info=1/d" -i setup.cfg
distutils-r1_python_prepare_all
}
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}!"
}