blob: da41539cba76c00a1436ecd0db01540116d494fc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
# 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_{13..14} )
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"
)
EPYTEST_PLUGINS=()
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
)
epytest --doctest-modules --doctest-glob='doctests.txt' src/pylibmc tests
}
|