dev-python/pylibmc: add 1.6.2

Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
This commit is contained in:
Arthur Zamarin
2022-08-05 21:50:26 +03:00
parent 6c9e213415
commit 60c0bd2eba
2 changed files with 62 additions and 0 deletions

View File

@@ -1,2 +1,3 @@
DIST pylibmc-1.6.1-no-nose.patch 26090 BLAKE2B 160e5b58107dcea0354462370eeeb12739c7fd1549e1c64ddf1fe2451654e50c1408505985eb6a7150ce60185bc7acebba7a20c6444615bef8c6991debfba4cc SHA512 84fb37505def84caaacb1343032d18bd644f5072e6ce7a2d6e88bc33bd2dedc8b303f4cf2a9b57b32c3c4b8e01bef1bebcc09ecb525568c928aed326bee2cace
DIST pylibmc-1.6.1.tar.gz 72061 BLAKE2B ebaa6f9dfc341d862a8b46bbbf0db1420ff400cb40390f7bee6bf198ff941ad7967b578040ffe1209721ea84a163a39649108a2a23f3dadc2d579db740b2ccf3 SHA512 a3874435389486b29bab5f1d29e5c179d67655d90995bb27fcb7cd46ce7eb3b60117b94f901602f8a65dc0e587d5f8edfcf15e259effd439411adb58ddb7065e
DIST pylibmc-1.6.2.gh.tar.gz 71581 BLAKE2B 4fc9216150e122b6d80537184422b52c0a518f5b9fbcf5b54f794fde33d5ac6fcd474e08f71b8d71f0443351e91ea5d8ac2c24e94bd568605cf1183259394091 SHA512 1a1575fd5c3644d53e0ed49818bd958e0e28fe0354f41578c944b260f402f1b51a74baca8f98b32adfd0024e61ec8df1795c6ca7363509e35e4f34a907de063e

View File

@@ -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
}