mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-07-31 10:58:21 -07:00
Also, drop a patch we don't seem to need anymore. Closes: https://bugs.gentoo.org/978301 Signed-off-by: Sam James <sam@gentoo.org>
69 lines
1.4 KiB
Bash
69 lines
1.4 KiB
Bash
# Copyright 1999-2026 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
DISTUTILS_EXT=1
|
|
DISTUTILS_USE_PEP517=setuptools
|
|
PYTHON_COMPAT=( python3_{12..15} )
|
|
|
|
inherit distutils-r1
|
|
|
|
DESCRIPTION="Libmemcached wrapper written as a Python extension"
|
|
HOMEPAGE="
|
|
https://sendapatch.se/projects/pylibmc/
|
|
https://pypi.org/project/pylibmc/
|
|
https://github.com/lericson/pylibmc/
|
|
"
|
|
SRC_URI="
|
|
https://github.com/lericson/pylibmc/archive/${PV}.tar.gz
|
|
-> ${P}.gh.tar.gz
|
|
"
|
|
|
|
LICENSE="BSD"
|
|
SLOT="0"
|
|
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~x86"
|
|
IUSE="sasl"
|
|
|
|
DEPEND="
|
|
|| (
|
|
dev-libs/libmemcached-awesome[sasl=]
|
|
>=dev-libs/libmemcached-0.32[sasl=]
|
|
)
|
|
virtual/zlib:=
|
|
"
|
|
RDEPEND="${DEPEND}"
|
|
BDEPEND="
|
|
test? (
|
|
net-misc/memcached
|
|
)
|
|
"
|
|
|
|
PATCHES=(
|
|
"${FILESDIR}/pylibmc-1.6.3-no-none-dict.patch"
|
|
"${FILESDIR}/pylibmc-1.6.3-doctest-libmemcached-1.0.18.patch"
|
|
)
|
|
|
|
distutils_enable_tests pytest
|
|
|
|
# needed for docs
|
|
export PYLIBMC_DIR=.
|
|
|
|
src_test() {
|
|
local -x MEMCACHED_PORT=11219
|
|
memcached -d -p "${MEMCACHED_PORT}" -u nobody -l localhost \
|
|
-P "${T}/m.pid" || die
|
|
distutils-r1_src_test
|
|
kill "$(<"${T}/m.pid")" || die
|
|
}
|
|
|
|
python_test() {
|
|
local EPYTEST_DESELECT=(
|
|
# these require "AmazonElastiCache" running
|
|
tests/test_autoconf.py
|
|
)
|
|
|
|
local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
|
|
epytest --doctest-modules --doctest-glob='doctests.txt' src/pylibmc tests
|
|
}
|