summaryrefslogtreecommitdiff
path: root/dev-python/aiocache/files
diff options
context:
space:
mode:
authorBernard Cafarelli <voyageur@gentoo.org>2023-02-09 22:50:54 +0100
committerBernard Cafarelli <voyageur@gentoo.org>2023-02-10 00:26:27 +0100
commitc33b26139bdcab17fd76f0a3a5028b2f0b07eebc (patch)
tree876fc365bb3844cf6a1786d3a8916283cac4a9f1 /dev-python/aiocache/files
parent0720e0f958216d87fd4c8e11e995300254cda09f (diff)
downloadgentoo-c33b26139bdcab17fd76f0a3a5028b2f0b07eebc.tar.gz
gentoo-c33b26139bdcab17fd76f0a3a5028b2f0b07eebc.tar.bz2
gentoo-c33b26139bdcab17fd76f0a3a5028b2f0b07eebc.zip
dev-python/aiocache: new package, add 0.12.0
Signed-off-by: Bernard Cafarelli <voyageur@gentoo.org>
Diffstat (limited to 'dev-python/aiocache/files')
-rw-r--r--dev-python/aiocache/files/aiocache-0.12.0-fix-test-installation.patch12
1 files changed, 12 insertions, 0 deletions
diff --git a/dev-python/aiocache/files/aiocache-0.12.0-fix-test-installation.patch b/dev-python/aiocache/files/aiocache-0.12.0-fix-test-installation.patch
new file mode 100644
index 000000000000..a64f618931ed
--- /dev/null
+++ b/dev-python/aiocache/files/aiocache-0.12.0-fix-test-installation.patch
@@ -0,0 +1,12 @@
+diff -Naur aiocache-0.12.0.orig/setup.py aiocache-0.12.0/setup.py
+--- aiocache-0.12.0.orig/setup.py 2023-01-13 21:54:07.000000000 +0100
++++ aiocache-0.12.0/setup.py 2023-02-09 22:45:48.004077571 +0100
+@@ -29,7 +29,7 @@
+ "Programming Language :: Python :: 3.11",
+ "Framework :: AsyncIO",
+ ],
+- packages=find_packages(),
++ packages=find_packages(exclude=['tests*']),
+ install_requires=None,
+ extras_require={
+ "redis": ["redis>=4.2.0"],