summaryrefslogtreecommitdiff
path: root/dev-python/pymemcache
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
parent3dc05ee008364ac3c1722174d91e2ad554c6de20 (diff)
downloadbaldeagleos-repo-c4b9b18a8ddce79dbe5f155dafa7943229efcec8.tar.gz
baldeagleos-repo-c4b9b18a8ddce79dbe5f155dafa7943229efcec8.tar.xz
baldeagleos-repo-c4b9b18a8ddce79dbe5f155dafa7943229efcec8.zip
Adding metadata
Diffstat (limited to 'dev-python/pymemcache')
-rw-r--r--dev-python/pymemcache/Manifest1
-rw-r--r--dev-python/pymemcache/files/pymemcache-3.5.1-no-coverage.patch10
-rw-r--r--dev-python/pymemcache/metadata.xml18
-rw-r--r--dev-python/pymemcache/pymemcache-4.0.0.ebuild49
4 files changed, 0 insertions, 78 deletions
diff --git a/dev-python/pymemcache/Manifest b/dev-python/pymemcache/Manifest
deleted file mode 100644
index d64f511c7898..000000000000
--- a/dev-python/pymemcache/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST pymemcache-4.0.0.tar.gz 70176 BLAKE2B 23f8486138e7e4afa18c0b311887dac5220466df11c476018d34f14a34331c35881bd5c26c58a3214f5d40e9bb639be69a6dfcccd5d6200b9fe81f9aef3f3654 SHA512 1a19d887559630e5b991430b8206c2698909e0d6b234df0380f9da5647574560b0fdd98396959cb96670030a61f7d56fea4ecf3272b5c394fc8c31eb2144e1a3
diff --git a/dev-python/pymemcache/files/pymemcache-3.5.1-no-coverage.patch b/dev-python/pymemcache/files/pymemcache-3.5.1-no-coverage.patch
deleted file mode 100644
index a66193c2e126..000000000000
--- a/dev-python/pymemcache/files/pymemcache-3.5.1-no-coverage.patch
+++ /dev/null
@@ -1,10 +0,0 @@
---- a/setup.cfg
-+++ b/setup.cfg
-@@ -40,7 +40,6 @@
- --tb=short
- --capture=no
- -rfEsxX
-- --cov=pymemcache --cov-config=setup.cfg --cov-report=xml --cov-report=term-missing
- -m unit
- markers =
- unit
diff --git a/dev-python/pymemcache/metadata.xml b/dev-python/pymemcache/metadata.xml
deleted file mode 100644
index 3c23ab66011f..000000000000
--- a/dev-python/pymemcache/metadata.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://liguros.gitlab.io/dtd/metadata.dtd">
-<pkgmetadata>
- <longdescription lang="en">
-A comprehensive, fast, pure-Python memcached client.
-
-pymemcache supports the following features:
-
-Complete implementation of the memcached text protocol.
-Connections using UNIX sockets, or TCP over IPv4 or IPv6.
-Configurable timeouts for socket connect and send/recv calls.
-Access to the "noreply" flag, which can significantly increase the speed of writes.
-Flexible, modular and simple approach to serialization and deserialization.
-The (optional) ability to treat network and memcached errors as cache misses.
- </longdescription>
-
- <origin>gentoo-guru-overlay</origin>
-</pkgmetadata> \ No newline at end of file
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
-}