dev-python/graphql-core: update SRC_URI

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2023-06-11 13:33:00 +02:00 committed by Andreas Billmeier
parent 9bf5fd0c9f
commit cfba83732f
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 5 additions and 44 deletions

View File

@ -1,5 +1,3 @@
DIST graphql-core-3.2.3.tar.gz 529552 BLAKE2B 5931579fe860ffd8f0166e703ba3d055eb39660ac3bcd5335c42811da1a692382ab0e968bacfc7b3cb9fae72c74bec160516c74ab56775e3ed6e3756c67ee23a SHA512 6a43b802ae71de7229daa3c9bc8266a17955b163d6b342107034168bc71fb026ad2f8de1ab5fc40dfb6ebbd5c47030ad978d54a825f6aca1c318190e325b405e
DIST graphql-core-3.3.0_alpha2.tar.gz 522095 BLAKE2B c290473399cc1704771a394eb293656a155d3424423d361871324d660d8cee8cefeb1aa9a2f5d60eba8744ba053b93c8736782266aa1867a3f3254ae4223c77c SHA512 8ca831325388912b87e2f19d77efff5d8295c1aa15fd71c866dc87d7e68b270f1f5c8d901a7e6081925e1199acd5bc280d28e0e06f19653d8f5b6abaf15ff887
EBUILD graphql-core-3.2.3.ebuild 845 BLAKE2B 0c2011f4b5be7ff7a49e49605487dbcff0497ccdefb8463c42e116b0cf386a10197728a307c3fa8fa3269bae4c181653537991a1489cb5f6efbd788ee9c6e136 SHA512 f38f9898d80f7ca88e7d10bafc24a1c9d5988d73946c0e85d3a24493e306181f24bdaf70a3262e22154608aa747b8a7a10ffad210a1d7ca3940ed2c9b897ddc8
EBUILD graphql-core-3.3.0_alpha2.ebuild 933 BLAKE2B 2327a15bf5fe108d1eb619d8da25d9e70bfea0669fc6ab3474467b27a5d924d7dfe5696acafbdac5efe3e00657f3784025e3bb232959fa92abb920290555f925 SHA512 26b1433246dd42ab9889402ad65b63097d224b131b9b3a09a59d1339e9cbd6cb22303c00c3627309ed8971b95137716f1a7d14464d7449425fd0438aac80d700
EBUILD graphql-core-3.3.0_alpha2.ebuild 930 BLAKE2B 225050e063c17e47df690d0223b8cba1b3cc3058c7a996105eb73eaf353bf955ce3e3e5ca391e17ec10800466428c6e697059b505398251a4fb96839b05026fc SHA512 1b6831e7baa8cf64ef9b468da1bfa692f8758c35606fde1ec1d51d906d1bb7d36e42d106e097001593f073dc5bb8fe06bc04421e7901cbcff1776d0f9b3128cf
MISC metadata.xml 527 BLAKE2B 59fbec78fac27f9049635171ed818570557336b19bb176581727acd7fe8144ca98527c8d176964ad327228f5f2ecc220fdb5c2893a6031647aa5e2c22ff5276a SHA512 d50e0dccc9ada2ec1967928df1c46ea6da7494f662b35b62b0cd98208d0b0709c0bc6fbc695ce77ae6c5943b8ce12b7689ef719f25f1c3f24435bc08bce8d0b2

View File

@ -1,35 +0,0 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{9..11} )
DISTUTILS_USE_PEP517=poetry
inherit distutils-r1
DESCRIPTION="GraphQL implementation for Python, a port of GraphQL.js, the JavaScript reference implementation for GraphQL."
HOMEPAGE="https://github.com/graphql-python/graphql-core https://pypi.org/project/graphql-core/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
BDEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/pytest[${PYTHON_USEDEP}]
dev-python/pytest-cov[${PYTHON_USEDEP}]
dev-python/pytest-timeout[${PYTHON_USEDEP}]
)"
python_test() {
py.test -v -v || die
}
distutils_enable_tests pytest

View File

@ -1,18 +1,17 @@
# Copyright 1999-2022 Gentoo Authors
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{9..11} )
PYTHON_COMPAT=( python3_{10..12} )
DISTUTILS_USE_PEP517=poetry
inherit distutils-r1
inherit distutils-r1 pypi
DESCRIPTION="GraphQL implementation for Python, a port of GraphQL.js, the JavaScript reference implementation for GraphQL."
HOMEPAGE="https://github.com/graphql-python/graphql-core https://pypi.org/project/graphql-core/"
MY_P="${PN}-${PV/_alpha/a}"
MY_P="${MY_P/-/_}"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${MY_P}.tar.gz -> ${P}.tar.gz"
SRC_URI="https://files.pythonhosted.org/packages/source/${P:0:1}/${PN}/${MY_P}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/${MY_P}"
LICENSE="MIT"
@ -24,7 +23,6 @@ RESTRICT="!test? ( test )"
DOCS="README.md"
BDEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/pytest[${PYTHON_USEDEP}]
dev-python/pytest-cov[${PYTHON_USEDEP}]