summaryrefslogtreecommitdiff
path: root/dev-python
diff options
context:
space:
mode:
authorAlfred Wingate <parona@protonmail.com>2023-06-06 13:30:40 +0300
committerJoonas Niilola <juippis@gentoo.org>2023-06-11 11:49:36 +0300
commitfad3f005239e65805a298349182a2a51dd57decb (patch)
treeb30c41d86bc9b56d6a8fd1d8b7b357cd40416f9f /dev-python
parent1a319fd2ca47fb5a61aa97290d7d915d7d31ce83 (diff)
downloadgentoo-fad3f005239e65805a298349182a2a51dd57decb.tar.gz
gentoo-fad3f005239e65805a298349182a2a51dd57decb.tar.bz2
gentoo-fad3f005239e65805a298349182a2a51dd57decb.zip
dev-python/elasticsearch-py: disable tests on on-glibc
* Workaround but not a fix for 906716, ideally it would be easier to use system jdk of a sufficient version. Bug: https://bugs.gentoo.org/906716 Signed-off-by: Alfred Wingate <parona@protonmail.com> Signed-off-by: Joonas Niilola <juippis@gentoo.org>
Diffstat (limited to 'dev-python')
-rw-r--r--dev-python/elasticsearch-py/elasticsearch-py-8.6.2.ebuild7
-rw-r--r--dev-python/elasticsearch-py/elasticsearch-py-8.7.0.ebuild7
2 files changed, 12 insertions, 2 deletions
diff --git a/dev-python/elasticsearch-py/elasticsearch-py-8.6.2.ebuild b/dev-python/elasticsearch-py/elasticsearch-py-8.6.2.ebuild
index ff55489a0cd6..91735a291c43 100644
--- a/dev-python/elasticsearch-py/elasticsearch-py-8.6.2.ebuild
+++ b/dev-python/elasticsearch-py/elasticsearch-py-8.6.2.ebuild
@@ -17,7 +17,11 @@ HOMEPAGE="
SRC_URI="
https://github.com/elastic/elasticsearch-py/archive/refs/tags/v${PV}.tar.gz -> ${P}.gh.tar.gz
test? (
- amd64? ( https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-${PV}-linux-x86_64.tar.gz )
+ amd64? (
+ elibc_glibc? (
+ https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-${PV}-linux-x86_64.tar.gz
+ )
+ )
)
"
@@ -27,6 +31,7 @@ KEYWORDS="amd64 ~x86"
RESTRICT="
!amd64? ( test )
+ !elibc_glibc? ( test )
!test? ( test )
"
diff --git a/dev-python/elasticsearch-py/elasticsearch-py-8.7.0.ebuild b/dev-python/elasticsearch-py/elasticsearch-py-8.7.0.ebuild
index 007cbecd25a8..86c708e61480 100644
--- a/dev-python/elasticsearch-py/elasticsearch-py-8.7.0.ebuild
+++ b/dev-python/elasticsearch-py/elasticsearch-py-8.7.0.ebuild
@@ -17,7 +17,11 @@ HOMEPAGE="
SRC_URI="
https://github.com/elastic/elasticsearch-py/archive/refs/tags/v${PV}.tar.gz -> ${P}.gh.tar.gz
test? (
- amd64? ( https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-${PV}-linux-x86_64.tar.gz )
+ amd64? (
+ elibc_glibc? (
+ https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-${PV}-linux-x86_64.tar.gz
+ )
+ )
)
"
@@ -27,6 +31,7 @@ KEYWORDS="~amd64 ~x86"
RESTRICT="
!amd64? ( test )
+ !elibc_glibc? ( test )
!test? ( test )
"