summaryrefslogtreecommitdiff
path: root/dev-python/dill
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2024-10-21 04:04:33 +0100
committerV3n3RiX <venerix@koprulu.sector>2024-10-21 04:04:33 +0100
commit3dc4de6331223493015f198dc61854af604da86c (patch)
tree626add8c88d96adf9429cdb19226d9de60e6dafd /dev-python/dill
parentd895362f98ae63a6ed12cd16d3b3df95d6967f25 (diff)
gentoo auto-resync : 21:10:2024 - 04:04:33
Diffstat (limited to 'dev-python/dill')
-rw-r--r--dev-python/dill/Manifest4
-rw-r--r--dev-python/dill/dill-0.3.8-r2.ebuild33
-rw-r--r--dev-python/dill/dill-0.3.9.ebuild2
3 files changed, 2 insertions, 37 deletions
diff --git a/dev-python/dill/Manifest b/dev-python/dill/Manifest
index c4979b638e9b..9ddb2d28bf80 100644
--- a/dev-python/dill/Manifest
+++ b/dev-python/dill/Manifest
@@ -1,5 +1,3 @@
-DIST dill-0.3.8.tar.gz 184847 BLAKE2B 6a0eb76526d5bc4afa003f34454c3a93b2b53e2d5bd362749bfcc22c6fe294dff3af9d52e83b288e999d7074d82a2671b3d271b3b423030f4cfd57cd70acdc6f SHA512 478d83af69dc0639a08e011e46127d9485dc998df54622e7fbb9ce4b004640d1b23aad57717d791cc609cd9d7071ea7300bce4be982488e4d21c5986e67ce586
DIST dill-0.3.9.tar.gz 187000 BLAKE2B 56196bd04d0a050619feee6b719e9232376853a03fae3a7486fa48f90fea1e27b4f4eaa31b0df54e70cf1aa4333268213dd6350408db0b78778d92f04ae65bd0 SHA512 461943ff8a0b7212b30e7c8b9e35348d0215c1c6dca356ad813e15c8721f39692fb61809349e5ee63a00d19a39aeae34c3b4def17257f8f7820e4318b81b273f
-EBUILD dill-0.3.8-r2.ebuild 842 BLAKE2B 68ffba8e2bd35c077f94f076a556cb4c9ead2799e629802ccec105ac724e91f29e9e2c9eb93b5023e05e5b7455bd38c4d56890d9329dbd18aeada790239283c7 SHA512 8c51ddccce40c589b824703fc3da96a8c8aa27c5d2798d5663c5bb09e3cb92ae9fc86da6a7fa77d3acf0c6887364f23deef11d885e707ee223d807880e0f7300
-EBUILD dill-0.3.9.ebuild 546 BLAKE2B 1212c4bf14b05a0598c650f97cd8e311d50e1e87789e816ddc7b52e7414415203b0ecd9b06430c6a866c3a880579a0afdaf8fb737da0ce2ad6d67520af16a199 SHA512 9250694e1de321e34be71353fdf3ed45991a48defde78abb08b0beb3ec3e73dc878c908f806ba51f95984723b255fb0b3a6f5115d0ca66ae54bf4066e9250262
+EBUILD dill-0.3.9.ebuild 538 BLAKE2B eba7810a1a0e65b6d2e83b9639fc173021054fea59563b6ccdae10b6f0a58318cfe3511fee08caa1ea6095606189e052cd6707cd0a00f734a9815c0244f3b5ca SHA512 37adffb6bf5f73818515248c16009ce77513004659a12cefef5edb6c8902d8584cdbc0a8f78a294021b9e635453ac2d871dd99834d3f5bb50978e3e56d8f468f
MISC metadata.xml 997 BLAKE2B ae32cd96d7a4967a9886d4903e21720459c0a963a675d301c2bb651fdb15877d845100822c1e7a7b6184ccaa666cbb6dc58f939616de9c1c22554670d841bd19 SHA512 e3dc363382bea8ed76343b62377c139ad84011a6b804f64b65d93941a7c192c268c0da273c73d5ec1cece7320b15fa88bf5a2f20a628d8845efddab24f3acc5b
diff --git a/dev-python/dill/dill-0.3.8-r2.ebuild b/dev-python/dill/dill-0.3.8-r2.ebuild
deleted file mode 100644
index 28a48d93b20d..000000000000
--- a/dev-python/dill/dill-0.3.8-r2.ebuild
+++ /dev/null
@@ -1,33 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{10..13} pypy3 )
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="Serialize all of Python (almost)"
-HOMEPAGE="
- https://github.com/uqfoundation/dill/
- https://pypi.org/project/dill/
-"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux"
-
-src_prepare() {
- distutils-r1_src_prepare
-
- # numpy support broken: https://github.com/uqfoundation/dill/issues/667
- sed -i -e 's:import numpy:raise ImportError:' dill/__diff.py || die
-}
-
-python_test() {
- # disables a test broken under Python 3.13
- # https://github.com/uqfoundation/dill/issues/668
- local -x COVERAGE=1
- "${EPYTHON}" -m dill.tests || die
-}
diff --git a/dev-python/dill/dill-0.3.9.ebuild b/dev-python/dill/dill-0.3.9.ebuild
index 2448d4796a31..e4e94f87b367 100644
--- a/dev-python/dill/dill-0.3.9.ebuild
+++ b/dev-python/dill/dill-0.3.9.ebuild
@@ -16,7 +16,7 @@ HOMEPAGE="
LICENSE="BSD"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux"
python_test() {
"${EPYTHON}" -m dill.tests || die