diff --git a/dev-python/gql/Manifest b/dev-python/gql/Manifest index b4c04922c..7e63fcd02 100644 --- a/dev-python/gql/Manifest +++ b/dev-python/gql/Manifest @@ -1,3 +1,5 @@ DIST gql-3.4.0.tar.gz 151663 BLAKE2B 738e713883bc9a144ca11ad31204dedb6186f0449f4c2f7798c6c936bd1c83824136c3b22abc0cfd3404faf38d781a1c28cdabd8988f2497509f04405e07da91 SHA512 4e98033e2830fd6bc4633d1a24c339e4a23b6a26dc4b7f87c48d8f2665407984531f3eeacd633c932a43f52f9882aead39c7ae2a9818f09de824d118042cfb64 +DIST gql-3.4.1.tar.gz 151696 BLAKE2B b21298c20d24905aef198b54886834b3459f32f972eda29b6e77530e2bee6923008522486032b370ca5370a5b1bff1c7509f51adb50f4abfdb02b14be04ff01e SHA512 a1ad0815a6f0547492e6004ae3cf343775c2b444163b1598f41700cce06460e51781d2d18d01d78a49ead89020345f77d9b19b6c678d8f582f9caf5e1e991e6b EBUILD gql-3.4.0.ebuild 767 BLAKE2B 0577a97130daf8f36e941fc8e9c176e7acfa577e9738f5bad40ef887eb67a68e8d748c3e8451653bd5a59f975a374fd56ae86f42be0f0b62887ee74e89af3504 SHA512 c34601093632bc9e5bcd9dfda7d91c081018b3b8f69218c0df22560ef03133530a5daa7f5a519ac74d36fc98685c7d9d1b9bd466997fdb284af9e8a333708d9d +EBUILD gql-3.4.1.ebuild 767 BLAKE2B 0577a97130daf8f36e941fc8e9c176e7acfa577e9738f5bad40ef887eb67a68e8d748c3e8451653bd5a59f975a374fd56ae86f42be0f0b62887ee74e89af3504 SHA512 c34601093632bc9e5bcd9dfda7d91c081018b3b8f69218c0df22560ef03133530a5daa7f5a519ac74d36fc98685c7d9d1b9bd466997fdb284af9e8a333708d9d MISC metadata.xml 506 BLAKE2B 47df6ec0d0c26f63fb926cd1984d2f399b60cd52e54718613e46235b573b76131556c77eede61f42a14b7dc6fc481b8a83c4cbdc5d5ec071b19207d952e3eb0a SHA512 e507757c66e9cf421cb6e1383c24b2b81c803e9c4cb1165c421a13518d3795143b6b1aff4ef07a6bff242781d80a1ab6e3c9613996dadb93148551a0d548b98c diff --git a/dev-python/gql/gql-3.4.1.ebuild b/dev-python/gql/gql-3.4.1.ebuild new file mode 100644 index 000000000..0f1eab6d0 --- /dev/null +++ b/dev-python/gql/gql-3.4.1.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{10..12} ) +DISTUTILS_USE_PEP517=setuptools +inherit distutils-r1 pypi +DESCRIPTION="GraphQL client for Python" +HOMEPAGE="https://github.com/graphql-python/gql https://pypi.org/project/gql/" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="amd64 arm arm64 x86" +IUSE="test" +RESTRICT="!test? ( test )" + +DOCS="README.md" + +RDEPEND=">=dev-python/graphql-core-3.3.0_alpha2[${PYTHON_USEDEP}] + >=dev-python/yarl-1.6[${PYTHON_USEDEP}] + >=dev-python/backoff-1.11.1[${PYTHON_USEDEP}]" +BDEPEND=" + dev-python/setuptools[${PYTHON_USEDEP}] + test? ( + dev-python/pytest[${PYTHON_USEDEP}] + )" + +python_test() { + py.test -v -v || die +} + +distutils_enable_tests pytest