summaryrefslogtreecommitdiff
path: root/dev-python/pymemcache/pymemcache-4.0.0.ebuild
diff options
context:
space:
mode:
authorLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2025-03-27 18:44:57 +0000
committerLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2025-03-27 18:44:57 +0000
commitc4b9b18a8ddce79dbe5f155dafa7943229efcec8 (patch)
treecc3b77cdbe04b99c73ce540eb8813eea1b02a657 /dev-python/pymemcache/pymemcache-4.0.0.ebuild
parent3dc05ee008364ac3c1722174d91e2ad554c6de20 (diff)
downloadbaldeagleos-repo-c4b9b18a8ddce79dbe5f155dafa7943229efcec8.tar.gz
baldeagleos-repo-c4b9b18a8ddce79dbe5f155dafa7943229efcec8.tar.xz
baldeagleos-repo-c4b9b18a8ddce79dbe5f155dafa7943229efcec8.zip
Adding metadata
Diffstat (limited to 'dev-python/pymemcache/pymemcache-4.0.0.ebuild')
-rw-r--r--dev-python/pymemcache/pymemcache-4.0.0.ebuild49
1 files changed, 0 insertions, 49 deletions
diff --git a/dev-python/pymemcache/pymemcache-4.0.0.ebuild b/dev-python/pymemcache/pymemcache-4.0.0.ebuild
deleted file mode 100644
index 8fe252314506..000000000000
--- a/dev-python/pymemcache/pymemcache-4.0.0.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{9,10,11,12,13} )
-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
-}