public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/proj/guru:dev commit in: dev-python/graphene/
@ 2020-03-18 19:13 Andrew Ammerlaan
  0 siblings, 0 replies; 12+ messages in thread
From: Andrew Ammerlaan @ 2020-03-18 19:13 UTC (permalink / raw
  To: gentoo-commits

commit:     a4e67d6a50053d7bb298c117956c5dede3f424d3
Author:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
AuthorDate: Wed Mar 18 18:40:53 2020 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Wed Mar 18 19:12:58 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=a4e67d6a

dev-python/graphene: GraphQL Framework for Python

Package-Manager: Portage-2.3.94, Repoman-2.3.21
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> riseup.net>

 dev-python/graphene/Manifest              |  1 +
 dev-python/graphene/graphene-2.1.8.ebuild | 45 +++++++++++++++++++++++++++++++
 dev-python/graphene/metadata.xml          |  9 +++++++
 3 files changed, 55 insertions(+)

diff --git a/dev-python/graphene/Manifest b/dev-python/graphene/Manifest
new file mode 100644
index 0000000..08f9b68
--- /dev/null
+++ b/dev-python/graphene/Manifest
@@ -0,0 +1 @@
+DIST graphene-2.1.8.tar.gz 102179 BLAKE2B 45c61f0f5965828f4b623a1a78678afdd9ef180c0ac83ff6d13ac4385479a787166e7401d75b4314cd125c623ebab7f43337fe2b00db471c1c8751177ca8b264 SHA512 238108c2047b9942de22f21b90581bbda42fb85ee3588ed5d4a26bd54784a6a71407c7a4e8308726ab22b6a62317e94253a60d1771272969e00e0097f3614d51

diff --git a/dev-python/graphene/graphene-2.1.8.ebuild b/dev-python/graphene/graphene-2.1.8.ebuild
new file mode 100644
index 0000000..52cadca
--- /dev/null
+++ b/dev-python/graphene/graphene-2.1.8.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_6 )
+
+inherit distutils-r1
+
+DESCRIPTION="GraphQL Framework for Python"
+HOMEPAGE="https://github.com/graphql-python/graphene"
+SRC_URI="https://github.com/graphql-python/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+# We need newer graphql-core
+RESTRICT="test"
+
+RDEPEND="
+	dev-python/aniso8601[${PYTHON_USEDEP}]
+	dev-python/graphql-core[${PYTHON_USEDEP}]
+	dev-python/graphql-relay[${PYTHON_USEDEP}]
+	dev-python/unidecode[${PYTHON_USEDEP}]"
+
+DEPEND="test? (
+	dev-python/pytest-mock[${PYTHON_USEDEP}]
+	dev-python/pytest-asyncio[${PYTHON_USEDEP}]
+	dev-python/promises[${PYTHON_USEDEP}]
+	dev-python/mock[${PYTHON_USEDEP}]
+	dev-python/pytz[${PYTHON_USEDEP}]
+	dev-python/iso8601[${PYTHON_USEDEP}] )"
+
+python_prepare_all() {
+	# Package installs 'examples' package which is forbidden and likely a bug in the build system.
+	rm -r examples || die
+
+	distutils-r1_python_prepare_all
+}
+
+distutils_enable_tests pytest
+# ModuleNotFoundError: No module named 'sphinx_graphene_theme'
+# There is a github, but no releases at the moment
+#distutils_enable_sphinx docs

diff --git a/dev-python/graphene/metadata.xml b/dev-python/graphene/metadata.xml
new file mode 100644
index 0000000..a507be0
--- /dev/null
+++ b/dev-python/graphene/metadata.xml
@@ -0,0 +1,9 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+
+<pkgmetadata>
+    <maintainer type="person">
+        <email>piotr.staroszczyk@get24.org</email>
+        <name>Piotr Staroszczyk</name>
+    </maintainer>
+</pkgmetadata>


^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: dev-python/graphene/
@ 2020-07-05 11:37 Andrew Ammerlaan
  0 siblings, 0 replies; 12+ messages in thread
From: Andrew Ammerlaan @ 2020-07-05 11:37 UTC (permalink / raw
  To: gentoo-commits

commit:     9479fbb7c196658779e0b2e0d2cc524e8c23be08
Author:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
AuthorDate: Sun Jul  5 11:35:52 2020 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Sun Jul  5 11:37:29 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=9479fbb7

dev-python/graphene: version bump

fix tests

Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> riseup.net>

 dev-python/graphene/Manifest                       |  1 +
 dev-python/graphene/graphene-2.1.8.ebuild          | 17 +++++++-----
 ...ne-2.1.8.ebuild => graphene-3.0.0_beta3.ebuild} | 31 +++++++++++-----------
 3 files changed, 27 insertions(+), 22 deletions(-)

diff --git a/dev-python/graphene/Manifest b/dev-python/graphene/Manifest
index 08f9b68..3808419 100644
--- a/dev-python/graphene/Manifest
+++ b/dev-python/graphene/Manifest
@@ -1 +1,2 @@
 DIST graphene-2.1.8.tar.gz 102179 BLAKE2B 45c61f0f5965828f4b623a1a78678afdd9ef180c0ac83ff6d13ac4385479a787166e7401d75b4314cd125c623ebab7f43337fe2b00db471c1c8751177ca8b264 SHA512 238108c2047b9942de22f21b90581bbda42fb85ee3588ed5d4a26bd54784a6a71407c7a4e8308726ab22b6a62317e94253a60d1771272969e00e0097f3614d51
+DIST graphene-3.0.0_beta3.tar.gz 108606 BLAKE2B 20b1af8400b1fe3721eafb1ce6884702653c58931933d0e3d6058180c115b48bf00a59cc7b6feb61648e9a85195033d0b0ff8c7e4e44822c77b1904cfc3c3b45 SHA512 65b920e5d10d080678df5c9a57d173baab421a3d2c676d943fb3e25fe596cc3623ddb6987322dbdc47d3b299e8f4363e4136bdcd2df0af3c1cf4117e7bb18375

diff --git a/dev-python/graphene/graphene-2.1.8.ebuild b/dev-python/graphene/graphene-2.1.8.ebuild
index 52cadca..a5836ab 100644
--- a/dev-python/graphene/graphene-2.1.8.ebuild
+++ b/dev-python/graphene/graphene-2.1.8.ebuild
@@ -15,14 +15,12 @@ LICENSE="MIT"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
 
-# We need newer graphql-core
-RESTRICT="test"
-
 RDEPEND="
-	dev-python/aniso8601[${PYTHON_USEDEP}]
+	<=dev-python/aniso8601-7[${PYTHON_USEDEP}]
 	dev-python/graphql-core[${PYTHON_USEDEP}]
 	dev-python/graphql-relay[${PYTHON_USEDEP}]
-	dev-python/unidecode[${PYTHON_USEDEP}]"
+	dev-python/unidecode[${PYTHON_USEDEP}]
+"
 
 DEPEND="test? (
 	dev-python/pytest-mock[${PYTHON_USEDEP}]
@@ -30,7 +28,8 @@ DEPEND="test? (
 	dev-python/promises[${PYTHON_USEDEP}]
 	dev-python/mock[${PYTHON_USEDEP}]
 	dev-python/pytz[${PYTHON_USEDEP}]
-	dev-python/iso8601[${PYTHON_USEDEP}] )"
+	dev-python/iso8601[${PYTHON_USEDEP}]
+)"
 
 python_prepare_all() {
 	# Package installs 'examples' package which is forbidden and likely a bug in the build system.
@@ -43,3 +42,9 @@ distutils_enable_tests pytest
 # ModuleNotFoundError: No module named 'sphinx_graphene_theme'
 # There is a github, but no releases at the moment
 #distutils_enable_sphinx docs
+
+python_test() {
+	#distutils_install_for_testing
+	PYTHONPATH="${S}"
+	pytest -vv || die "Tests fail with ${EPYHTON}"
+}

diff --git a/dev-python/graphene/graphene-2.1.8.ebuild b/dev-python/graphene/graphene-3.0.0_beta3.ebuild
similarity index 63%
copy from dev-python/graphene/graphene-2.1.8.ebuild
copy to dev-python/graphene/graphene-3.0.0_beta3.ebuild
index 52cadca..d135047 100644
--- a/dev-python/graphene/graphene-2.1.8.ebuild
+++ b/dev-python/graphene/graphene-3.0.0_beta3.ebuild
@@ -7,39 +7,38 @@ PYTHON_COMPAT=( python3_6 )
 
 inherit distutils-r1
 
+MYPV="${PV/_beta/b}"
+MYP="${PN}-${MYPV}"
+
 DESCRIPTION="GraphQL Framework for Python"
 HOMEPAGE="https://github.com/graphql-python/graphene"
-SRC_URI="https://github.com/graphql-python/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+SRC_URI="https://github.com/graphql-python/${PN}/archive/v${MYPV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
 
-# We need newer graphql-core
-RESTRICT="test"
-
 RDEPEND="
 	dev-python/aniso8601[${PYTHON_USEDEP}]
 	dev-python/graphql-core[${PYTHON_USEDEP}]
 	dev-python/graphql-relay[${PYTHON_USEDEP}]
-	dev-python/unidecode[${PYTHON_USEDEP}]"
+	dev-python/unidecode[${PYTHON_USEDEP}]
+"
 
 DEPEND="test? (
-	dev-python/pytest-mock[${PYTHON_USEDEP}]
-	dev-python/pytest-asyncio[${PYTHON_USEDEP}]
-	dev-python/promises[${PYTHON_USEDEP}]
+	dev-python/iso8601[${PYTHON_USEDEP}]
 	dev-python/mock[${PYTHON_USEDEP}]
+	dev-python/promises[${PYTHON_USEDEP}]
+	dev-python/pytest-asyncio[${PYTHON_USEDEP}]
+	dev-python/pytest-benchmark[${PYTHON_USEDEP}]
+	dev-python/pytest-mock[${PYTHON_USEDEP}]
 	dev-python/pytz[${PYTHON_USEDEP}]
-	dev-python/iso8601[${PYTHON_USEDEP}] )"
-
-python_prepare_all() {
-	# Package installs 'examples' package which is forbidden and likely a bug in the build system.
-	rm -r examples || die
+	dev-python/snapshottest[${PYTHON_USEDEP}]
+)"
 
-	distutils-r1_python_prepare_all
-}
+S="${WORKDIR}/${MYP}"
 
 distutils_enable_tests pytest
 # ModuleNotFoundError: No module named 'sphinx_graphene_theme'
-# There is a github, but no releases at the moment
+# There is a archived github, but no releases at the moment
 #distutils_enable_sphinx docs


^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: dev-python/graphene/
  2020-07-05 11:51 [gentoo-commits] repo/proj/guru:master " Andrew Ammerlaan
@ 2020-07-05 11:39 ` Andrew Ammerlaan
  0 siblings, 0 replies; 12+ messages in thread
From: Andrew Ammerlaan @ 2020-07-05 11:39 UTC (permalink / raw
  To: gentoo-commits

commit:     692405bdd73e3af4a3aa9294cfe0e5a7e15860da
Author:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
AuthorDate: Sun Jul  5 11:39:11 2020 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Sun Jul  5 11:39:11 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=692405bd

dev-python/graphene: cleanup old

Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> riseup.net>

 dev-python/graphene/Manifest              |  1 -
 dev-python/graphene/graphene-2.1.8.ebuild | 50 -------------------------------
 2 files changed, 51 deletions(-)

diff --git a/dev-python/graphene/Manifest b/dev-python/graphene/Manifest
index 3808419..f863f69 100644
--- a/dev-python/graphene/Manifest
+++ b/dev-python/graphene/Manifest
@@ -1,2 +1 @@
-DIST graphene-2.1.8.tar.gz 102179 BLAKE2B 45c61f0f5965828f4b623a1a78678afdd9ef180c0ac83ff6d13ac4385479a787166e7401d75b4314cd125c623ebab7f43337fe2b00db471c1c8751177ca8b264 SHA512 238108c2047b9942de22f21b90581bbda42fb85ee3588ed5d4a26bd54784a6a71407c7a4e8308726ab22b6a62317e94253a60d1771272969e00e0097f3614d51
 DIST graphene-3.0.0_beta3.tar.gz 108606 BLAKE2B 20b1af8400b1fe3721eafb1ce6884702653c58931933d0e3d6058180c115b48bf00a59cc7b6feb61648e9a85195033d0b0ff8c7e4e44822c77b1904cfc3c3b45 SHA512 65b920e5d10d080678df5c9a57d173baab421a3d2c676d943fb3e25fe596cc3623ddb6987322dbdc47d3b299e8f4363e4136bdcd2df0af3c1cf4117e7bb18375

diff --git a/dev-python/graphene/graphene-2.1.8.ebuild b/dev-python/graphene/graphene-2.1.8.ebuild
deleted file mode 100644
index a5836ab..0000000
--- a/dev-python/graphene/graphene-2.1.8.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_6 )
-
-inherit distutils-r1
-
-DESCRIPTION="GraphQL Framework for Python"
-HOMEPAGE="https://github.com/graphql-python/graphene"
-SRC_URI="https://github.com/graphql-python/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-RDEPEND="
-	<=dev-python/aniso8601-7[${PYTHON_USEDEP}]
-	dev-python/graphql-core[${PYTHON_USEDEP}]
-	dev-python/graphql-relay[${PYTHON_USEDEP}]
-	dev-python/unidecode[${PYTHON_USEDEP}]
-"
-
-DEPEND="test? (
-	dev-python/pytest-mock[${PYTHON_USEDEP}]
-	dev-python/pytest-asyncio[${PYTHON_USEDEP}]
-	dev-python/promises[${PYTHON_USEDEP}]
-	dev-python/mock[${PYTHON_USEDEP}]
-	dev-python/pytz[${PYTHON_USEDEP}]
-	dev-python/iso8601[${PYTHON_USEDEP}]
-)"
-
-python_prepare_all() {
-	# Package installs 'examples' package which is forbidden and likely a bug in the build system.
-	rm -r examples || die
-
-	distutils-r1_python_prepare_all
-}
-
-distutils_enable_tests pytest
-# ModuleNotFoundError: No module named 'sphinx_graphene_theme'
-# There is a github, but no releases at the moment
-#distutils_enable_sphinx docs
-
-python_test() {
-	#distutils_install_for_testing
-	PYTHONPATH="${S}"
-	pytest -vv || die "Tests fail with ${EPYHTON}"
-}


^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: dev-python/graphene/
  2020-09-24 13:01 [gentoo-commits] repo/proj/guru:master " Andrew Ammerlaan
@ 2020-09-24 12:17 ` Andrew Ammerlaan
  0 siblings, 0 replies; 12+ messages in thread
From: Andrew Ammerlaan @ 2020-09-24 12:17 UTC (permalink / raw
  To: gentoo-commits

commit:     46beb4c75fc81dcffe09411c3bdd4792f3437046
Author:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
AuthorDate: Thu Sep 24 12:13:13 2020 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Thu Sep 24 12:13:13 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=46beb4c7

dev-python/graphene: version bump, add py3.7,8

drop py3.6

Package-Manager: Portage-3.0.8, Repoman-3.0.1
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> riseup.net>

 dev-python/graphene/Manifest                                         | 2 +-
 .../{graphene-3.0.0_beta3.ebuild => graphene-3.0.0_beta5.ebuild}     | 5 ++---
 2 files changed, 3 insertions(+), 4 deletions(-)

diff --git a/dev-python/graphene/Manifest b/dev-python/graphene/Manifest
index f863f69f..43f87d83 100644
--- a/dev-python/graphene/Manifest
+++ b/dev-python/graphene/Manifest
@@ -1 +1 @@
-DIST graphene-3.0.0_beta3.tar.gz 108606 BLAKE2B 20b1af8400b1fe3721eafb1ce6884702653c58931933d0e3d6058180c115b48bf00a59cc7b6feb61648e9a85195033d0b0ff8c7e4e44822c77b1904cfc3c3b45 SHA512 65b920e5d10d080678df5c9a57d173baab421a3d2c676d943fb3e25fe596cc3623ddb6987322dbdc47d3b299e8f4363e4136bdcd2df0af3c1cf4117e7bb18375
+DIST graphene-3.0.0_beta5.tar.gz 111170 BLAKE2B 8717a8ef8b4b468a9a893ac6f686bf32f607c6315b0b5992c5ef6f444805ad4e92ddcd82fe965a73e3bd695c07fa73532a8768b8db71e606080ebb510c08c55a SHA512 a251603929abb5e15a5d240d07fb897fca5901245ac4c0ebef2320309c8b6bbf6f5acfef09fbb010acdd9e22cd42f77a7a13df3955d680bc352b8147462dea43

diff --git a/dev-python/graphene/graphene-3.0.0_beta3.ebuild b/dev-python/graphene/graphene-3.0.0_beta5.ebuild
similarity index 90%
rename from dev-python/graphene/graphene-3.0.0_beta3.ebuild
rename to dev-python/graphene/graphene-3.0.0_beta5.ebuild
index d1350475..8988301d 100644
--- a/dev-python/graphene/graphene-3.0.0_beta3.ebuild
+++ b/dev-python/graphene/graphene-3.0.0_beta5.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python3_6 )
+PYTHON_COMPAT=( python3_{7,8} )
 
 inherit distutils-r1
 
@@ -22,13 +22,12 @@ RDEPEND="
 	dev-python/aniso8601[${PYTHON_USEDEP}]
 	dev-python/graphql-core[${PYTHON_USEDEP}]
 	dev-python/graphql-relay[${PYTHON_USEDEP}]
-	dev-python/unidecode[${PYTHON_USEDEP}]
 "
 
 DEPEND="test? (
 	dev-python/iso8601[${PYTHON_USEDEP}]
 	dev-python/mock[${PYTHON_USEDEP}]
-	dev-python/promises[${PYTHON_USEDEP}]
+	dev-python/promise[${PYTHON_USEDEP}]
 	dev-python/pytest-asyncio[${PYTHON_USEDEP}]
 	dev-python/pytest-benchmark[${PYTHON_USEDEP}]
 	dev-python/pytest-mock[${PYTHON_USEDEP}]


^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: dev-python/graphene/
@ 2020-12-18 18:01 Andrew Ammerlaan
  0 siblings, 0 replies; 12+ messages in thread
From: Andrew Ammerlaan @ 2020-12-18 18:01 UTC (permalink / raw
  To: gentoo-commits

commit:     47d10f8db6ff266e3a66da552b6520869894ab69
Author:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
AuthorDate: Fri Dec 18 18:01:34 2020 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Fri Dec 18 18:01:34 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=47d10f8d

dev-python/graphene: version bump 3.0.0_beta6

Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> riseup.net>

 dev-python/graphene/Manifest                                            | 2 +-
 .../{graphene-3.0.0_beta5.ebuild => graphene-3.0.0_beta6.ebuild}        | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/graphene/Manifest b/dev-python/graphene/Manifest
index 43f87d83..7a175b7a 100644
--- a/dev-python/graphene/Manifest
+++ b/dev-python/graphene/Manifest
@@ -1 +1 @@
-DIST graphene-3.0.0_beta5.tar.gz 111170 BLAKE2B 8717a8ef8b4b468a9a893ac6f686bf32f607c6315b0b5992c5ef6f444805ad4e92ddcd82fe965a73e3bd695c07fa73532a8768b8db71e606080ebb510c08c55a SHA512 a251603929abb5e15a5d240d07fb897fca5901245ac4c0ebef2320309c8b6bbf6f5acfef09fbb010acdd9e22cd42f77a7a13df3955d680bc352b8147462dea43
+DIST graphene-3.0.0_beta6.tar.gz 113241 BLAKE2B cd205c9309577d3a8038da0630f4e55ef2f6df5286bfd37b1f7f70ad850ca5704e82af515d3f2ce6b51713f8776597f0f211268cc958f902e9b82ec1b8678aaf SHA512 f0d29ea7eddd27c0d11c41493d40fc86da8b3d7108765e66b2fc7de8e56fbf30cc0a0ee01755780c32bf415a59175792d5164c8c95ca947e9da7d408d0859bf3

diff --git a/dev-python/graphene/graphene-3.0.0_beta5.ebuild b/dev-python/graphene/graphene-3.0.0_beta6.ebuild
similarity index 100%
rename from dev-python/graphene/graphene-3.0.0_beta5.ebuild
rename to dev-python/graphene/graphene-3.0.0_beta6.ebuild


^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: dev-python/graphene/
@ 2021-02-18 10:44 Andrew Ammerlaan
  0 siblings, 0 replies; 12+ messages in thread
From: Andrew Ammerlaan @ 2021-02-18 10:44 UTC (permalink / raw
  To: gentoo-commits

commit:     8d01f97d25531da6a5fc8346cf69690eb72c3eb3
Author:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
AuthorDate: Wed Feb 17 19:06:08 2021 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Thu Feb 18 10:44:31 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=8d01f97d

dev-python/graphene: minor version bump

Package-Manager: Portage-3.0.14, Repoman-3.0.2
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> riseup.net>

 dev-python/graphene/Manifest                                            | 2 +-
 .../{graphene-3.0.0_beta6.ebuild => graphene-3.0.0_beta7.ebuild}        | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/graphene/Manifest b/dev-python/graphene/Manifest
index 7a175b7a..3618cd53 100644
--- a/dev-python/graphene/Manifest
+++ b/dev-python/graphene/Manifest
@@ -1 +1 @@
-DIST graphene-3.0.0_beta6.tar.gz 113241 BLAKE2B cd205c9309577d3a8038da0630f4e55ef2f6df5286bfd37b1f7f70ad850ca5704e82af515d3f2ce6b51713f8776597f0f211268cc958f902e9b82ec1b8678aaf SHA512 f0d29ea7eddd27c0d11c41493d40fc86da8b3d7108765e66b2fc7de8e56fbf30cc0a0ee01755780c32bf415a59175792d5164c8c95ca947e9da7d408d0859bf3
+DIST graphene-3.0.0_beta7.tar.gz 113258 BLAKE2B 4a3adadfea6dc6fd936b8bad83cf02c1b2b7937648712ee26ce3c5eb7e6d6631790ae2f22fff334de4495ed3197761862e88450e7f837ee06f71e7de4009efe4 SHA512 df4dee75c8c5bc5643dd5231bff61f7f1e2efe7203e61a3e32b10c80c2f44139a408ca99726fea51d6aa6e844e648c860c41e3e20ee4679dd3573f43047e71fa

diff --git a/dev-python/graphene/graphene-3.0.0_beta6.ebuild b/dev-python/graphene/graphene-3.0.0_beta7.ebuild
similarity index 96%
rename from dev-python/graphene/graphene-3.0.0_beta6.ebuild
rename to dev-python/graphene/graphene-3.0.0_beta7.ebuild
index 8988301d..d0223b99 100644
--- a/dev-python/graphene/graphene-3.0.0_beta6.ebuild
+++ b/dev-python/graphene/graphene-3.0.0_beta7.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7


^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: dev-python/graphene/
@ 2021-05-26  1:57 Anna Vyalkova
  0 siblings, 0 replies; 12+ messages in thread
From: Anna Vyalkova @ 2021-05-26  1:57 UTC (permalink / raw
  To: gentoo-commits

commit:     eb562b61a98bb450c817dc868f35dfcc770facc6
Author:     Anna Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
AuthorDate: Wed May 26 00:27:47 2021 +0000
Commit:     Anna Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
CommitDate: Wed May 26 01:53:16 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=eb562b61

dev-python/graphene: docs, support python 3.9

Signed-off-by: Anna Vyalkova <cyber+gentoo <AT> sysrq.in>

 dev-python/graphene/Manifest                    |  1 +
 dev-python/graphene/graphene-3.0.0_beta7.ebuild | 58 +++++++++++++++++--------
 2 files changed, 40 insertions(+), 19 deletions(-)

diff --git a/dev-python/graphene/Manifest b/dev-python/graphene/Manifest
index 3618cd539..aa53b7d8b 100644
--- a/dev-python/graphene/Manifest
+++ b/dev-python/graphene/Manifest
@@ -1 +1,2 @@
 DIST graphene-3.0.0_beta7.tar.gz 113258 BLAKE2B 4a3adadfea6dc6fd936b8bad83cf02c1b2b7937648712ee26ce3c5eb7e6d6631790ae2f22fff334de4495ed3197761862e88450e7f837ee06f71e7de4009efe4 SHA512 df4dee75c8c5bc5643dd5231bff61f7f1e2efe7203e61a3e32b10c80c2f44139a408ca99726fea51d6aa6e844e648c860c41e3e20ee4679dd3573f43047e71fa
+DIST sphinx-graphene-3.0.0_beta7.zip 22270 BLAKE2B 7cc467f12e7857cedb0336c7d0708f9429b9ccaa7f65077e6453a3e4ce0af92cbdb6d4dd3bec5801bd3e5fb233b4994dbce52fabe690da196ee25b5eec7fb63f SHA512 00cdaee50a7c16729d9d820de7d6c0f61215e3b906777b0705f2de0d2029f2ffb1f86134b1d673d00675d77729be47765999537fc42aeefafb026248b9b0b3b0

diff --git a/dev-python/graphene/graphene-3.0.0_beta7.ebuild b/dev-python/graphene/graphene-3.0.0_beta7.ebuild
index d0223b990..1f9259316 100644
--- a/dev-python/graphene/graphene-3.0.0_beta7.ebuild
+++ b/dev-python/graphene/graphene-3.0.0_beta7.ebuild
@@ -3,16 +3,21 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python3_{7,8} )
+PYTHON_COMPAT=( python3_{7..9} )
 
 inherit distutils-r1
 
-MYPV="${PV/_beta/b}"
-MYP="${PN}-${MYPV}"
+MY_PV="${PV/_beta/b}"
+MY_P="${PN}-${MY_PV}"
 
 DESCRIPTION="GraphQL Framework for Python"
-HOMEPAGE="https://github.com/graphql-python/graphene"
-SRC_URI="https://github.com/graphql-python/${PN}/archive/v${MYPV}.tar.gz -> ${P}.tar.gz"
+HOMEPAGE="https://graphene-python.org
+	https://pypi.org/project/graphene
+	https://github.com/graphql-python/graphene
+"
+SRC_URI="https://github.com/graphql-python/${PN}/archive/v${MY_PV}.tar.gz -> ${P}.tar.gz
+	doc? ( https://graphene-python.org/sphinx_graphene_theme.zip -> sphinx-${P}.zip )
+"
 
 LICENSE="MIT"
 SLOT="0"
@@ -24,20 +29,35 @@ RDEPEND="
 	dev-python/graphql-relay[${PYTHON_USEDEP}]
 "
 
-DEPEND="test? (
-	dev-python/iso8601[${PYTHON_USEDEP}]
-	dev-python/mock[${PYTHON_USEDEP}]
-	dev-python/promise[${PYTHON_USEDEP}]
-	dev-python/pytest-asyncio[${PYTHON_USEDEP}]
-	dev-python/pytest-benchmark[${PYTHON_USEDEP}]
-	dev-python/pytest-mock[${PYTHON_USEDEP}]
-	dev-python/pytz[${PYTHON_USEDEP}]
-	dev-python/snapshottest[${PYTHON_USEDEP}]
-)"
+BDEPEND="
+	doc? ( app-arch/unzip )
+	test? (
+		dev-python/iso8601[${PYTHON_USEDEP}]
+		dev-python/promise[${PYTHON_USEDEP}]
+		dev-python/pytest-asyncio[${PYTHON_USEDEP}]
+		dev-python/pytest-benchmark[${PYTHON_USEDEP}]
+		dev-python/pytest-mock[${PYTHON_USEDEP}]
+		dev-python/pytz[${PYTHON_USEDEP}]
+		dev-python/snapshottest[${PYTHON_USEDEP}]
+	)
+"
 
-S="${WORKDIR}/${MYP}"
+S="${WORKDIR}/${MY_P}"
 
 distutils_enable_tests pytest
-# ModuleNotFoundError: No module named 'sphinx_graphene_theme'
-# There is a archived github, but no releases at the moment
-#distutils_enable_sphinx docs
+
+distutils_enable_sphinx docs
+
+src_unpack() {
+	unpack ${P}.tar.gz
+
+	if use doc ; then
+		unpack sphinx-${P}.zip
+		mv "${WORKDIR}"/sphinx_graphene_theme "${S}"/docs || die
+	fi
+}
+
+python_test() {
+	epytest --benchmark-disable \
+		--deselect graphene/types/tests/test_schema.py::TestUnforgivingExecutionContext::test_unexpected_error
+}


^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: dev-python/graphene/
@ 2021-12-14  7:14 Anna Vyalkova
  0 siblings, 0 replies; 12+ messages in thread
From: Anna Vyalkova @ 2021-12-14  7:14 UTC (permalink / raw
  To: gentoo-commits

commit:     1afbbf3d58b3c7668d2f9abff1d512b9d3d87a67
Author:     Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
AuthorDate: Fri Dec 10 07:26:37 2021 +0000
Commit:     Anna Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
CommitDate: Tue Dec 14 07:02:24 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=1afbbf3d

dev-python/graphene: add 3.0.0

Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in>

 dev-python/graphene/Manifest              |  2 +
 dev-python/graphene/graphene-3.0.0.ebuild | 68 +++++++++++++++++++++++++++++++
 2 files changed, 70 insertions(+)

diff --git a/dev-python/graphene/Manifest b/dev-python/graphene/Manifest
index aa53b7d8b..795eaed04 100644
--- a/dev-python/graphene/Manifest
+++ b/dev-python/graphene/Manifest
@@ -1,2 +1,4 @@
+DIST graphene-3.0.0.tar.gz 116388 BLAKE2B 8e0c5732a8c267e1f492c4d07b070a40777e2ac7b41badc0c4b06471c4268e58bab47d170cf3e74940755f0de3d4be246c1a67eae44654bcfbf531fa1eeefb6d SHA512 dbd651ad509248e66c739acc16778753817b040e573514820a221647e1cf4fb96d22f499d1479eb39d921f17c696fcfe9acce3bb2b89b23ffd9e43f949dc4262
 DIST graphene-3.0.0_beta7.tar.gz 113258 BLAKE2B 4a3adadfea6dc6fd936b8bad83cf02c1b2b7937648712ee26ce3c5eb7e6d6631790ae2f22fff334de4495ed3197761862e88450e7f837ee06f71e7de4009efe4 SHA512 df4dee75c8c5bc5643dd5231bff61f7f1e2efe7203e61a3e32b10c80c2f44139a408ca99726fea51d6aa6e844e648c860c41e3e20ee4679dd3573f43047e71fa
+DIST sphinx-graphene-3.0.0.zip 22270 BLAKE2B 7cc467f12e7857cedb0336c7d0708f9429b9ccaa7f65077e6453a3e4ce0af92cbdb6d4dd3bec5801bd3e5fb233b4994dbce52fabe690da196ee25b5eec7fb63f SHA512 00cdaee50a7c16729d9d820de7d6c0f61215e3b906777b0705f2de0d2029f2ffb1f86134b1d673d00675d77729be47765999537fc42aeefafb026248b9b0b3b0
 DIST sphinx-graphene-3.0.0_beta7.zip 22270 BLAKE2B 7cc467f12e7857cedb0336c7d0708f9429b9ccaa7f65077e6453a3e4ce0af92cbdb6d4dd3bec5801bd3e5fb233b4994dbce52fabe690da196ee25b5eec7fb63f SHA512 00cdaee50a7c16729d9d820de7d6c0f61215e3b906777b0705f2de0d2029f2ffb1f86134b1d673d00675d77729be47765999537fc42aeefafb026248b9b0b3b0

diff --git a/dev-python/graphene/graphene-3.0.0.ebuild b/dev-python/graphene/graphene-3.0.0.ebuild
new file mode 100644
index 000000000..341bfadd0
--- /dev/null
+++ b/dev-python/graphene/graphene-3.0.0.ebuild
@@ -0,0 +1,68 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..10} )
+
+inherit distutils-r1
+
+MY_PV="${PV/_beta/b}"
+MY_P="${PN}-${MY_PV}"
+
+DESCRIPTION="GraphQL Framework for Python"
+HOMEPAGE="https://graphene-python.org
+	https://pypi.org/project/graphene
+	https://github.com/graphql-python/graphene
+"
+SRC_URI="https://github.com/graphql-python/${PN}/archive/v${MY_PV}.tar.gz -> ${P}.tar.gz
+	doc? ( https://graphene-python.org/sphinx_graphene_theme.zip -> sphinx-${P}.zip )
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+	dev-python/aniso8601[${PYTHON_USEDEP}]
+	dev-python/graphql-core[${PYTHON_USEDEP}]
+	dev-python/graphql-relay[${PYTHON_USEDEP}]
+"
+
+BDEPEND="
+	doc? ( app-arch/unzip )
+	test? (
+		dev-python/iso8601[${PYTHON_USEDEP}]
+		dev-python/promise[${PYTHON_USEDEP}]
+		dev-python/pytest-asyncio[${PYTHON_USEDEP}]
+		dev-python/pytest-benchmark[${PYTHON_USEDEP}]
+		dev-python/pytest-mock[${PYTHON_USEDEP}]
+		dev-python/pytz[${PYTHON_USEDEP}]
+		dev-python/snapshottest[${PYTHON_USEDEP}]
+	)
+"
+
+S="${WORKDIR}/${MY_P}"
+
+distutils_enable_tests pytest
+
+distutils_enable_sphinx docs
+
+EPYTEST_DESELECT=(
+	graphene/types/tests/test_objecttype.py::test_objecttype_as_container_extra_args
+	graphene/types/tests/test_objecttype.py::test_objecttype_as_container_invalid_kwargs
+	graphene/types/tests/test_schema.py::TestUnforgivingExecutionContext::test_unexpected_error
+)
+
+src_unpack() {
+	unpack ${P}.tar.gz
+
+	if use doc; then
+		unpack sphinx-${P}.zip
+		mv "${WORKDIR}"/sphinx_graphene_theme "${S}"/docs || die
+	fi
+}
+
+python_test() {
+	epytest --benchmark-disable
+}


^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: dev-python/graphene/
@ 2022-06-01  5:03 Anna Vyalkova
  0 siblings, 0 replies; 12+ messages in thread
From: Anna Vyalkova @ 2022-06-01  5:03 UTC (permalink / raw
  To: gentoo-commits

commit:     b64037e75b529c77df2e45b18db77448b5f93bb0
Author:     Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
AuthorDate: Tue May 31 16:24:49 2022 +0000
Commit:     Anna Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
CommitDate: Wed Jun  1 05:02:44 2022 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=b64037e7

dev-python/graphene: drop 3.0.0_beta7

Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in>

 dev-python/graphene/Manifest                    |  2 -
 dev-python/graphene/graphene-3.0.0_beta7.ebuild | 63 -------------------------
 2 files changed, 65 deletions(-)

diff --git a/dev-python/graphene/Manifest b/dev-python/graphene/Manifest
index 795eaed04..898383797 100644
--- a/dev-python/graphene/Manifest
+++ b/dev-python/graphene/Manifest
@@ -1,4 +1,2 @@
 DIST graphene-3.0.0.tar.gz 116388 BLAKE2B 8e0c5732a8c267e1f492c4d07b070a40777e2ac7b41badc0c4b06471c4268e58bab47d170cf3e74940755f0de3d4be246c1a67eae44654bcfbf531fa1eeefb6d SHA512 dbd651ad509248e66c739acc16778753817b040e573514820a221647e1cf4fb96d22f499d1479eb39d921f17c696fcfe9acce3bb2b89b23ffd9e43f949dc4262
-DIST graphene-3.0.0_beta7.tar.gz 113258 BLAKE2B 4a3adadfea6dc6fd936b8bad83cf02c1b2b7937648712ee26ce3c5eb7e6d6631790ae2f22fff334de4495ed3197761862e88450e7f837ee06f71e7de4009efe4 SHA512 df4dee75c8c5bc5643dd5231bff61f7f1e2efe7203e61a3e32b10c80c2f44139a408ca99726fea51d6aa6e844e648c860c41e3e20ee4679dd3573f43047e71fa
 DIST sphinx-graphene-3.0.0.zip 22270 BLAKE2B 7cc467f12e7857cedb0336c7d0708f9429b9ccaa7f65077e6453a3e4ce0af92cbdb6d4dd3bec5801bd3e5fb233b4994dbce52fabe690da196ee25b5eec7fb63f SHA512 00cdaee50a7c16729d9d820de7d6c0f61215e3b906777b0705f2de0d2029f2ffb1f86134b1d673d00675d77729be47765999537fc42aeefafb026248b9b0b3b0
-DIST sphinx-graphene-3.0.0_beta7.zip 22270 BLAKE2B 7cc467f12e7857cedb0336c7d0708f9429b9ccaa7f65077e6453a3e4ce0af92cbdb6d4dd3bec5801bd3e5fb233b4994dbce52fabe690da196ee25b5eec7fb63f SHA512 00cdaee50a7c16729d9d820de7d6c0f61215e3b906777b0705f2de0d2029f2ffb1f86134b1d673d00675d77729be47765999537fc42aeefafb026248b9b0b3b0

diff --git a/dev-python/graphene/graphene-3.0.0_beta7.ebuild b/dev-python/graphene/graphene-3.0.0_beta7.ebuild
deleted file mode 100644
index 02ef9589a..000000000
--- a/dev-python/graphene/graphene-3.0.0_beta7.ebuild
+++ /dev/null
@@ -1,63 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{8..9} )
-
-inherit distutils-r1
-
-MY_PV="${PV/_beta/b}"
-MY_P="${PN}-${MY_PV}"
-
-DESCRIPTION="GraphQL Framework for Python"
-HOMEPAGE="https://graphene-python.org
-	https://pypi.org/project/graphene/
-	https://github.com/graphql-python/graphene
-"
-SRC_URI="https://github.com/graphql-python/${PN}/archive/v${MY_PV}.tar.gz -> ${P}.tar.gz
-	doc? ( https://graphene-python.org/sphinx_graphene_theme.zip -> sphinx-${P}.zip )
-"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-RDEPEND="
-	dev-python/aniso8601[${PYTHON_USEDEP}]
-	dev-python/graphql-core[${PYTHON_USEDEP}]
-	dev-python/graphql-relay[${PYTHON_USEDEP}]
-"
-
-BDEPEND="
-	doc? ( app-arch/unzip )
-	test? (
-		dev-python/iso8601[${PYTHON_USEDEP}]
-		dev-python/promise[${PYTHON_USEDEP}]
-		dev-python/pytest-asyncio[${PYTHON_USEDEP}]
-		dev-python/pytest-benchmark[${PYTHON_USEDEP}]
-		dev-python/pytest-mock[${PYTHON_USEDEP}]
-		dev-python/pytz[${PYTHON_USEDEP}]
-		dev-python/snapshottest[${PYTHON_USEDEP}]
-	)
-"
-
-S="${WORKDIR}/${MY_P}"
-
-distutils_enable_tests pytest
-
-distutils_enable_sphinx docs
-
-src_unpack() {
-	unpack ${P}.tar.gz
-
-	if use doc ; then
-		unpack sphinx-${P}.zip
-		mv "${WORKDIR}"/sphinx_graphene_theme "${S}"/docs || die
-	fi
-}
-
-python_test() {
-	epytest --benchmark-disable \
-		--deselect graphene/types/tests/test_schema.py::TestUnforgivingExecutionContext::test_unexpected_error
-}


^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: dev-python/graphene/
@ 2022-06-05 20:58 Alessandro Barbieri
  0 siblings, 0 replies; 12+ messages in thread
From: Alessandro Barbieri @ 2022-06-05 20:58 UTC (permalink / raw
  To: gentoo-commits

commit:     b7db4485fce94c75d4ad6e1e9414eb207233f606
Author:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Sun Jun  5 20:55:45 2022 +0000
Commit:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
CommitDate: Sun Jun  5 20:57:58 2022 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=b7db4485

dev-python/graphene: unkeyword 3.0.0 for ~x86

Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>

 dev-python/graphene/graphene-3.0.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/graphene/graphene-3.0.0.ebuild b/dev-python/graphene/graphene-3.0.0.ebuild
index 37939dd17..92c4b346e 100644
--- a/dev-python/graphene/graphene-3.0.0.ebuild
+++ b/dev-python/graphene/graphene-3.0.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -21,7 +21,7 @@ SRC_URI="https://github.com/graphql-python/${PN}/archive/v${MY_PV}.tar.gz -> ${P
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64"
 
 RDEPEND="
 	dev-python/aniso8601[${PYTHON_USEDEP}]


^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: dev-python/graphene/
@ 2023-04-29 12:27 Anna Vyalkova
  0 siblings, 0 replies; 12+ messages in thread
From: Anna Vyalkova @ 2023-04-29 12:27 UTC (permalink / raw
  To: gentoo-commits

commit:     340673136297479aaaa607c64110090ee8044015
Author:     Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
AuthorDate: Sat Apr 29 12:12:08 2023 +0000
Commit:     Anna Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
CommitDate: Sat Apr 29 12:27:05 2023 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=34067313

dev-python/graphene: add 3.2.2

Closes: https://bugs.gentoo.org/884671
Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in>

 dev-python/graphene/Manifest              |  2 +
 dev-python/graphene/graphene-3.2.2.ebuild | 67 +++++++++++++++++++++++++++++++
 dev-python/graphene/metadata.xml          | 13 +++---
 3 files changed, 77 insertions(+), 5 deletions(-)

diff --git a/dev-python/graphene/Manifest b/dev-python/graphene/Manifest
index 898383797..d13798eac 100644
--- a/dev-python/graphene/Manifest
+++ b/dev-python/graphene/Manifest
@@ -1,2 +1,4 @@
 DIST graphene-3.0.0.tar.gz 116388 BLAKE2B 8e0c5732a8c267e1f492c4d07b070a40777e2ac7b41badc0c4b06471c4268e58bab47d170cf3e74940755f0de3d4be246c1a67eae44654bcfbf531fa1eeefb6d SHA512 dbd651ad509248e66c739acc16778753817b040e573514820a221647e1cf4fb96d22f499d1479eb39d921f17c696fcfe9acce3bb2b89b23ffd9e43f949dc4262
+DIST graphene-3.2.2.gh.tar.gz 126807 BLAKE2B 6079c75b0dc571698126fb60ee944647fd1e4d5a03462c6d97466a4a1b3aa1ef0ae03061ff0ee3c1fdf5a5ca636d3ed2ab6eaacedcbecbb1954ffef80e9749d7 SHA512 c1a88a148403d89deea7bfd3db4ce29e1a8898b8cabbbe1f8535bea30d5f37642b7a0e7e66662a9f5f2c164b1eb3a729b4552acde2c7194e52615d282e38a8ba
 DIST sphinx-graphene-3.0.0.zip 22270 BLAKE2B 7cc467f12e7857cedb0336c7d0708f9429b9ccaa7f65077e6453a3e4ce0af92cbdb6d4dd3bec5801bd3e5fb233b4994dbce52fabe690da196ee25b5eec7fb63f SHA512 00cdaee50a7c16729d9d820de7d6c0f61215e3b906777b0705f2de0d2029f2ffb1f86134b1d673d00675d77729be47765999537fc42aeefafb026248b9b0b3b0
+DIST sphinx-graphene-3.2.2.zip 22270 BLAKE2B 7cc467f12e7857cedb0336c7d0708f9429b9ccaa7f65077e6453a3e4ce0af92cbdb6d4dd3bec5801bd3e5fb233b4994dbce52fabe690da196ee25b5eec7fb63f SHA512 00cdaee50a7c16729d9d820de7d6c0f61215e3b906777b0705f2de0d2029f2ffb1f86134b1d673d00675d77729be47765999537fc42aeefafb026248b9b0b3b0

diff --git a/dev-python/graphene/graphene-3.2.2.ebuild b/dev-python/graphene/graphene-3.2.2.ebuild
new file mode 100644
index 000000000..aee9f128e
--- /dev/null
+++ b/dev-python/graphene/graphene-3.2.2.ebuild
@@ -0,0 +1,67 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{9..11} )
+DISTUTILS_USE_PEP517=setuptools
+inherit distutils-r1
+
+DESCRIPTION="GraphQL Framework for Python"
+HOMEPAGE="
+	https://graphene-python.org
+	https://pypi.org/project/graphene/
+	https://github.com/graphql-python/graphene
+"
+SRC_URI="https://github.com/graphql-python/${PN}/archive/v${PV}.tar.gz -> ${P}.gh.tar.gz
+	doc? ( https://graphene-python.org/sphinx_graphene_theme.zip -> sphinx-${P}.zip )
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+
+RDEPEND="
+	>=dev-python/aniso8601-8[${PYTHON_USEDEP}]
+	>=dev-python/graphql-core-3.1[${PYTHON_USEDEP}]
+	>=dev-python/graphql-relay-3.1[${PYTHON_USEDEP}]
+"
+
+BDEPEND="
+	doc? ( app-arch/unzip )
+	test? (
+		dev-python/iso8601[${PYTHON_USEDEP}]
+		dev-python/pytest-asyncio[${PYTHON_USEDEP}]
+		dev-python/pytest-mock[${PYTHON_USEDEP}]
+		dev-python/pytz[${PYTHON_USEDEP}]
+		dev-python/snapshottest[${PYTHON_USEDEP}]
+	)
+"
+
+distutils_enable_tests pytest
+
+distutils_enable_sphinx docs
+
+EPYTEST_DESELECT=(
+	# need pytest-benchmark
+	graphene/types/tests/test_objecttype.py::test_objecttype_container_benchmark
+	graphene/types/tests/test_query.py::test_big_list_query_benchmark
+	graphene/types/tests/test_query.py::test_big_list_query_compiled_query_benchmark
+	graphene/types/tests/test_query.py::test_big_list_of_containers_query_benchmark
+	graphene/types/tests/test_query.py::test_big_list_of_containers_multiple_fields_query_benchmark
+	graphene/types/tests/test_query.py::test_big_list_of_containers_multiple_fields_custom_resolvers_query_benchmark
+)
+
+src_unpack() {
+	unpack ${P}.gh.tar.gz
+
+	if use doc; then
+		cd "${S}"/docs || die
+		unpack sphinx-${P}.zip
+	fi
+}
+
+python_compile_all() {
+	local -x PYTHONPATH="${S}/docs:${PYTHONPATH}"
+	sphinx_compile_all
+}

diff --git a/dev-python/graphene/metadata.xml b/dev-python/graphene/metadata.xml
index f892f5af8..32a1ab193 100644
--- a/dev-python/graphene/metadata.xml
+++ b/dev-python/graphene/metadata.xml
@@ -1,9 +1,12 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-
 <pkgmetadata>
-    <maintainer type="person">
-        <email>piotr.staroszczyk@get24.org</email>
-        <name>Piotr Staroszczyk</name>
-    </maintainer>
+	<maintainer type="person">
+		<email>piotr.staroszczyk@get24.org</email>
+		<name>Piotr Staroszczyk</name>
+	</maintainer>
+	<upstream>
+		<remote-id type="pypi">graphene</remote-id>
+		<remote-id type="github">graphql-python/graphene</remote-id>
+	</upstream>
 </pkgmetadata>


^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: dev-python/graphene/
@ 2023-05-02 16:54 Anna Vyalkova
  0 siblings, 0 replies; 12+ messages in thread
From: Anna Vyalkova @ 2023-05-02 16:54 UTC (permalink / raw
  To: gentoo-commits

commit:     8d8f4ffcb4885dbd8b8cccde1799c251d338ed8e
Author:     Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
AuthorDate: Tue May  2 16:53:43 2023 +0000
Commit:     Anna Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
CommitDate: Tue May  2 16:53:43 2023 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=8d8f4ffc

dev-python/graphene: drop 3.0.0

Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in>

 dev-python/graphene/Manifest              |  2 -
 dev-python/graphene/graphene-3.0.0.ebuild | 68 -------------------------------
 2 files changed, 70 deletions(-)

diff --git a/dev-python/graphene/Manifest b/dev-python/graphene/Manifest
index d13798eac..45efab700 100644
--- a/dev-python/graphene/Manifest
+++ b/dev-python/graphene/Manifest
@@ -1,4 +1,2 @@
-DIST graphene-3.0.0.tar.gz 116388 BLAKE2B 8e0c5732a8c267e1f492c4d07b070a40777e2ac7b41badc0c4b06471c4268e58bab47d170cf3e74940755f0de3d4be246c1a67eae44654bcfbf531fa1eeefb6d SHA512 dbd651ad509248e66c739acc16778753817b040e573514820a221647e1cf4fb96d22f499d1479eb39d921f17c696fcfe9acce3bb2b89b23ffd9e43f949dc4262
 DIST graphene-3.2.2.gh.tar.gz 126807 BLAKE2B 6079c75b0dc571698126fb60ee944647fd1e4d5a03462c6d97466a4a1b3aa1ef0ae03061ff0ee3c1fdf5a5ca636d3ed2ab6eaacedcbecbb1954ffef80e9749d7 SHA512 c1a88a148403d89deea7bfd3db4ce29e1a8898b8cabbbe1f8535bea30d5f37642b7a0e7e66662a9f5f2c164b1eb3a729b4552acde2c7194e52615d282e38a8ba
-DIST sphinx-graphene-3.0.0.zip 22270 BLAKE2B 7cc467f12e7857cedb0336c7d0708f9429b9ccaa7f65077e6453a3e4ce0af92cbdb6d4dd3bec5801bd3e5fb233b4994dbce52fabe690da196ee25b5eec7fb63f SHA512 00cdaee50a7c16729d9d820de7d6c0f61215e3b906777b0705f2de0d2029f2ffb1f86134b1d673d00675d77729be47765999537fc42aeefafb026248b9b0b3b0
 DIST sphinx-graphene-3.2.2.zip 22270 BLAKE2B 7cc467f12e7857cedb0336c7d0708f9429b9ccaa7f65077e6453a3e4ce0af92cbdb6d4dd3bec5801bd3e5fb233b4994dbce52fabe690da196ee25b5eec7fb63f SHA512 00cdaee50a7c16729d9d820de7d6c0f61215e3b906777b0705f2de0d2029f2ffb1f86134b1d673d00675d77729be47765999537fc42aeefafb026248b9b0b3b0

diff --git a/dev-python/graphene/graphene-3.0.0.ebuild b/dev-python/graphene/graphene-3.0.0.ebuild
deleted file mode 100644
index d5fd10404..000000000
--- a/dev-python/graphene/graphene-3.0.0.ebuild
+++ /dev/null
@@ -1,68 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_10 )
-
-inherit distutils-r1
-
-MY_PV="${PV/_beta/b}"
-MY_P="${PN}-${MY_PV}"
-
-DESCRIPTION="GraphQL Framework for Python"
-HOMEPAGE="https://graphene-python.org
-	https://pypi.org/project/graphene/
-	https://github.com/graphql-python/graphene
-"
-SRC_URI="https://github.com/graphql-python/${PN}/archive/v${MY_PV}.tar.gz -> ${P}.tar.gz
-	doc? ( https://graphene-python.org/sphinx_graphene_theme.zip -> sphinx-${P}.zip )
-"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64"
-
-RDEPEND="
-	dev-python/aniso8601[${PYTHON_USEDEP}]
-	dev-python/graphql-core[${PYTHON_USEDEP}]
-	dev-python/graphql-relay[${PYTHON_USEDEP}]
-"
-
-BDEPEND="
-	doc? ( app-arch/unzip )
-	test? (
-		dev-python/iso8601[${PYTHON_USEDEP}]
-		dev-python/promise[${PYTHON_USEDEP}]
-		dev-python/pytest-asyncio[${PYTHON_USEDEP}]
-		dev-python/pytest-benchmark[${PYTHON_USEDEP}]
-		dev-python/pytest-mock[${PYTHON_USEDEP}]
-		dev-python/pytz[${PYTHON_USEDEP}]
-		dev-python/snapshottest[${PYTHON_USEDEP}]
-	)
-"
-
-S="${WORKDIR}/${MY_P}"
-
-distutils_enable_tests pytest
-
-distutils_enable_sphinx docs
-
-EPYTEST_DESELECT=(
-	graphene/types/tests/test_objecttype.py::test_objecttype_as_container_extra_args
-	graphene/types/tests/test_objecttype.py::test_objecttype_as_container_invalid_kwargs
-	graphene/types/tests/test_schema.py::TestUnforgivingExecutionContext::test_unexpected_error
-)
-
-src_unpack() {
-	unpack ${P}.tar.gz
-
-	if use doc; then
-		unpack sphinx-${P}.zip
-		mv "${WORKDIR}"/sphinx_graphene_theme "${S}"/docs || die
-	fi
-}
-
-python_test() {
-	epytest --benchmark-disable
-}


^ permalink raw reply related	[flat|nested] 12+ messages in thread

end of thread, other threads:[~2023-05-02 16:54 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-04-29 12:27 [gentoo-commits] repo/proj/guru:dev commit in: dev-python/graphene/ Anna Vyalkova
  -- strict thread matches above, loose matches on Subject: below --
2023-05-02 16:54 Anna Vyalkova
2022-06-05 20:58 Alessandro Barbieri
2022-06-01  5:03 Anna Vyalkova
2021-12-14  7:14 Anna Vyalkova
2021-05-26  1:57 Anna Vyalkova
2021-02-18 10:44 Andrew Ammerlaan
2020-12-18 18:01 Andrew Ammerlaan
2020-09-24 13:01 [gentoo-commits] repo/proj/guru:master " Andrew Ammerlaan
2020-09-24 12:17 ` [gentoo-commits] repo/proj/guru:dev " Andrew Ammerlaan
2020-07-05 11:51 [gentoo-commits] repo/proj/guru:master " Andrew Ammerlaan
2020-07-05 11:39 ` [gentoo-commits] repo/proj/guru:dev " Andrew Ammerlaan
2020-07-05 11:37 Andrew Ammerlaan
2020-03-18 19:13 Andrew Ammerlaan

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox