mirror of
https://github.com/gentoo-mirror/guru.git
synced 2025-04-20 08:18:49 -04:00
Bug: https://bugs.gentoo.org/928259 Closes: https://bugs.gentoo.org/931406 Signed-off-by: Julien Roy <julien@jroy.ca>
50 lines
951 B
Bash
50 lines
951 B
Bash
# Copyright 1999-2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
PYTHON_COMPAT=( python3_{10..12} )
|
|
DISTUTILS_USE_PEP517=setuptools
|
|
inherit databases distutils-r1 pypi
|
|
|
|
DESCRIPTION="A comprehensive, fast, pure-Python memcached client"
|
|
HOMEPAGE="
|
|
https://github.com/pinterest/pymemcache
|
|
https://pypi.org/project/pymemcache/
|
|
"
|
|
|
|
LICENSE="Apache-2.0"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64"
|
|
|
|
BDEPEND="
|
|
test? (
|
|
${DATABASES_DEPEND[memcached]}
|
|
dev-python/Faker[${PYTHON_USEDEP}]
|
|
dev-python/zstd[${PYTHON_USEDEP}]
|
|
)
|
|
"
|
|
|
|
DOCS=( {ChangeLog,README}.rst )
|
|
|
|
EPYTEST_IGNORE=(
|
|
# useless
|
|
pymemcache/test/test_benchmark.py
|
|
)
|
|
|
|
distutils_enable_tests pytest
|
|
|
|
#distutils_enable_sphinx docs \
|
|
# dev-python/sphinxcontrib-apidoc \
|
|
# dev-python/sphinx-rtd-theme
|
|
|
|
src_test() {
|
|
ememcached --start 11221
|
|
distutils-r1_src_test
|
|
ememcached --stop
|
|
}
|
|
|
|
python_test() {
|
|
epytest --override-ini="addopts=" --port 11221 pymemcache/test
|
|
}
|