dev-python/gql: new package, add 3.4.0

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
2022-12-07 13:11:50 +01:00
committed by Andreas Billmeier
parent 3f8c7ae88e
commit e071d6d976
3 changed files with 55 additions and 0 deletions

3
dev-python/gql/Manifest Normal file
View File

@@ -0,0 +1,3 @@
DIST gql-3.4.0.tar.gz 151663 BLAKE2B 738e713883bc9a144ca11ad31204dedb6186f0449f4c2f7798c6c936bd1c83824136c3b22abc0cfd3404faf38d781a1c28cdabd8988f2497509f04405e07da91 SHA512 4e98033e2830fd6bc4633d1a24c339e4a23b6a26dc4b7f87c48d8f2665407984531f3eeacd633c932a43f52f9882aead39c7ae2a9818f09de824d118042cfb64
EBUILD gql-3.4.0.ebuild 814 BLAKE2B d6e02784c9e9e4f0b91145e47d30808c6aad22d4be63781918a6f6360f4d6fb8547a336cace950a02bad23a457081db87f6b681fb43c2c876c4f1a197ff3ab19 SHA512 39196d82de90e746f68db7a415a2dafc83afa023cde0b2041acb192195fceecb7ec83999ff3d9e9d0d9f6a522f5f5364aff9ce8a50be325614d18c83ee6f30b4
MISC metadata.xml 506 BLAKE2B 47df6ec0d0c26f63fb926cd1984d2f399b60cd52e54718613e46235b573b76131556c77eede61f42a14b7dc6fc481b8a83c4cbdc5d5ec071b19207d952e3eb0a SHA512 e507757c66e9cf421cb6e1383c24b2b81c803e9c4cb1165c421a13518d3795143b6b1aff4ef07a6bff242781d80a1ab6e3c9613996dadb93148551a0d548b98c

View File

@@ -0,0 +1,36 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{8..11} )
DISTUTILS_USE_PEP517=setuptools
inherit distutils-r1
DESCRIPTION="GraphQL client for Python"
HOMEPAGE="https://github.com/graphql-python/gql https://pypi.org/project/gql/"
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"
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

View File

@@ -0,0 +1,16 @@
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="project">
<email>b@edevau.net</email>
<name>Andreas Billmeier</name>
</maintainer>
<upstream>
<remote-id type="pypi">gql</remote-id>
<remote-id type="github">graphql-python/gql</remote-id>
<maintainer status="unknown">
<email>me@syrusakbary.com</email>
<name>Syrus Akbary</name>
</maintainer>
</upstream>
</pkgmetadata>