From ed3442c122133dab346b16420963be7bfe08878d Mon Sep 17 00:00:00 2001 From: Florian Albrechtskirchinger Date: Fri, 19 Jun 2026 20:22:58 +0200 Subject: [PATCH] dev-python/graphql-core: add 3.2.11 Signed-off-by: Florian Albrechtskirchinger --- dev-python/graphql-core/Manifest | 1 + .../graphql-core/graphql-core-3.2.11.ebuild | 37 +++++++++++++++++++ 2 files changed, 38 insertions(+) create mode 100644 dev-python/graphql-core/graphql-core-3.2.11.ebuild diff --git a/dev-python/graphql-core/Manifest b/dev-python/graphql-core/Manifest index da438cfc3a..885316d4d4 100644 --- a/dev-python/graphql-core/Manifest +++ b/dev-python/graphql-core/Manifest @@ -1 +1,2 @@ +DIST graphql_core-3.2.11.tar.gz 528407 BLAKE2B 5f61392d30c09b78de7b9738eee2d8b94df67ea30048c1d5885633a19d7a24085844b8ed74dc8fa4d93abb9fb3c81e7e875f02cf9d3b5992b148cc520cbd92f1 SHA512 a679b313a108cf00c26a883f9c19ce081f02d5a0fe2e1592ab05e45ef561bbf04ce4082bda8dd9716b3bdeb78390d1f8c3e52e162dcb9e6e209153f9747a8f34 DIST graphql_core-3.2.8.tar.gz 513181 BLAKE2B d19ceae19149718c6dd2caa56c88a5f5b1808783e83a622bfa6d11e97bcb242f2845b011b1cbcefb15a9c48e3cb2a9979cdd5c72f9a62c9b0ee393467c1ddefc SHA512 8dd89e04530a0635398ce114c0b1a644a2a5ace88b652fbb211f8fb3250b2e5a13f0f91ceb2ce2866c6daac8fe66bd70dc84226fc58caf4e579ee9c2d76c9ebf diff --git a/dev-python/graphql-core/graphql-core-3.2.11.ebuild b/dev-python/graphql-core/graphql-core-3.2.11.ebuild new file mode 100644 index 0000000000..77a16ca200 --- /dev/null +++ b/dev-python/graphql-core/graphql-core-3.2.11.ebuild @@ -0,0 +1,37 @@ +# Copyright 2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=poetry +PYTHON_COMPAT=( python3_{12..14} ) + +inherit distutils-r1 pypi + +DESCRIPTION="GraphQL-core is a Python port of GraphQL.js" +HOMEPAGE=" + https://github.com/graphql-python/graphql-core/ + https://pypi.org/project/graphql-core/ +" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" + +BDEPEND=" + =dev-python/setuptools-59[${PYTHON_USEDEP}] +" + +EPYTEST_IGNORE=( + # avoid pytest-benchmark + "tests/benchmarks/" +) + +EPYTEST_PLUGINS=( anyio pytest-asyncio pytest-describe pytest-timeout ) +distutils_enable_tests pytest + +python_test() { + # avoid pytest-benchmark + epytest -o addopts= tests +}