diff options
author | Arthur Zamarin <arthurzam@gentoo.org> | 2022-08-31 22:05:55 +0300 |
---|---|---|
committer | Arthur Zamarin <arthurzam@gentoo.org> | 2022-08-31 22:08:25 +0300 |
commit | 851d46aeb2b464e608198dd5b9eca5f2780d39c4 (patch) | |
tree | fbf8eb4b3820f2937221fd785024bfcd158d89f3 /dev-python/pylibmc/pylibmc-1.6.3.ebuild | |
parent | dev-python/python-neutronclient: add 8.1.0 (diff) | |
download | gentoo-851d46aeb2b464e608198dd5b9eca5f2780d39c4.tar.gz gentoo-851d46aeb2b464e608198dd5b9eca5f2780d39c4.tar.bz2 gentoo-851d46aeb2b464e608198dd5b9eca5f2780d39c4.zip |
dev-python/pylibmc: add 1.6.3
Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
Diffstat (limited to 'dev-python/pylibmc/pylibmc-1.6.3.ebuild')
-rw-r--r-- | dev-python/pylibmc/pylibmc-1.6.3.ebuild | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/dev-python/pylibmc/pylibmc-1.6.3.ebuild b/dev-python/pylibmc/pylibmc-1.6.3.ebuild new file mode 100644 index 000000000000..b37179120315 --- /dev/null +++ b/dev-python/pylibmc/pylibmc-1.6.3.ebuild @@ -0,0 +1,61 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{8..11} pypy3 ) + +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 ~ia64 ~ppc ~ppc64 ~x86" + +DEPEND=" + >=dev-libs/libmemcached-0.32 +" +RDEPEND="${DEPEND}" +BDEPEND=" + test? ( + net-misc/memcached + ) +" + +PATCHES=( + "${FILESDIR}/pylibmc-1.6.1-fix-test-failures-r1.patch" +) + +distutils_enable_sphinx docs +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 +} |