public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: dev-python/executing/
@ 2020-09-10  8:49 Michał Górny
  0 siblings, 0 replies; 123+ messages in thread
From: Michał Górny @ 2020-09-10  8:49 UTC (permalink / raw
  To: gentoo-commits

commit:     5b3dc74582c62bb747fdc67d147272a604a1c148
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Thu Sep 10 08:12:14 2020 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Thu Sep 10 08:48:52 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5b3dc745

dev-python/executing: New package, test dep of sentry-sdk

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/executing/Manifest               |  1 +
 dev-python/executing/executing-0.5.2.ebuild | 35 +++++++++++++++++++++++++++++
 dev-python/executing/metadata.xml           |  7 ++++++
 3 files changed, 43 insertions(+)

diff --git a/dev-python/executing/Manifest b/dev-python/executing/Manifest
new file mode 100644
index 00000000000..6665f9a3453
--- /dev/null
+++ b/dev-python/executing/Manifest
@@ -0,0 +1 @@
+DIST executing-0.5.2.gh.tar.gz 303118 BLAKE2B e3b0ee22791a7fc4b378cf9f0c4640b4971ebd772d95a5d8d0abd25959c53eede5c61e4807abd4be38b9e14d0e3ab9083941ace7f59f0b6358c68b2e85291193 SHA512 2487dbb95240553f9bb7e1249af42e83be7db8cfa8a8c0569c22bfad48add9eddf903a4f365e3a6409e5208bef0d32893abb0c4dc5a93782c3b33125b091ef54

diff --git a/dev-python/executing/executing-0.5.2.ebuild b/dev-python/executing/executing-0.5.2.ebuild
new file mode 100644
index 00000000000..0f05179cc81
--- /dev/null
+++ b/dev-python/executing/executing-0.5.2.ebuild
@@ -0,0 +1,35 @@
+# Copyright 2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{6..9} )
+inherit distutils-r1
+
+DESCRIPTION="Get information about what a Python frame is currently doing"
+HOMEPAGE="
+	https://github.com/alexmojaki/executing/
+	https://pypi.org/project/executing/"
+SRC_URI="
+	https://github.com/alexmojaki/executing/archive/v${PV}.tar.gz
+		-> ${P}.gh.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+# asttokens is optional runtime dep
+BDEPEND="
+	test? (
+		dev-python/asttokens[${PYTHON_USEDEP}]
+	)"
+
+distutils_enable_tests pytest
+
+export SETUPTOOLS_SCM_PRETEND_VERSION=${PV}
+
+python_test() {
+	# this test explodes when collected by pytest
+	"${EPYTHON}" tests/test_main.py || die "Tests failed with ${EPYTHON}"
+	pytest -vv tests/test_pytest.py || die "Tests failed with ${EPYTHON}"
+}

diff --git a/dev-python/executing/metadata.xml b/dev-python/executing/metadata.xml
new file mode 100644
index 00000000000..266e3f19ca5
--- /dev/null
+++ b/dev-python/executing/metadata.xml
@@ -0,0 +1,7 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<maintainer type="project">
+		<email>python@gentoo.org</email>
+	</maintainer>
+</pkgmetadata>


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/executing/
@ 2020-09-13  7:01 Sam James
  0 siblings, 0 replies; 123+ messages in thread
From: Sam James @ 2020-09-13  7:01 UTC (permalink / raw
  To: gentoo-commits

commit:     e65a8cdfe91cb334bbab25f7d9a06f45c8e198dd
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Sep 13 07:01:45 2020 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Sep 13 07:01:45 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e65a8cdf

dev-python/executing: strip wheel dep, add others

Needed dev-python/{setuptools_scm, toml}.

Closes: https://bugs.gentoo.org/741747
Package-Manager: Portage-3.0.4, Repoman-3.0.1
Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-python/executing/executing-0.5.2.ebuild | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/dev-python/executing/executing-0.5.2.ebuild b/dev-python/executing/executing-0.5.2.ebuild
index 0f05179cc81..ca2d34b8710 100644
--- a/dev-python/executing/executing-0.5.2.ebuild
+++ b/dev-python/executing/executing-0.5.2.ebuild
@@ -20,6 +20,8 @@ KEYWORDS="~amd64 ~x86"
 
 # asttokens is optional runtime dep
 BDEPEND="
+	dev-python/setuptools_scm[${PYTHON_USEDEP}]
+	dev-python/toml[${PYTHON_USEDEP}]
 	test? (
 		dev-python/asttokens[${PYTHON_USEDEP}]
 	)"
@@ -28,6 +30,13 @@ distutils_enable_tests pytest
 
 export SETUPTOOLS_SCM_PRETEND_VERSION=${PV}
 
+src_prepare() {
+	# Kill off useless wheel dep
+	sed -i -e 's/wheel; //' setup.cfg || die
+
+	distutils-r1_src_prepare
+}
+
 python_test() {
 	# this test explodes when collected by pytest
 	"${EPYTHON}" tests/test_main.py || die "Tests failed with ${EPYTHON}"


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/executing/
@ 2020-09-13  8:59 Sam James
  0 siblings, 0 replies; 123+ messages in thread
From: Sam James @ 2020-09-13  8:59 UTC (permalink / raw
  To: gentoo-commits

commit:     1a3a6b28d609bba261fe007866dc4b10dbefaf81
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Sep 13 08:40:23 2020 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Sep 13 08:59:20 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1a3a6b28

dev-python/executing: Keyword 0.5.2 ppc, #741472

Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-python/executing/executing-0.5.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/executing/executing-0.5.2.ebuild b/dev-python/executing/executing-0.5.2.ebuild
index ca2d34b8710..1eaa5e45ab9 100644
--- a/dev-python/executing/executing-0.5.2.ebuild
+++ b/dev-python/executing/executing-0.5.2.ebuild
@@ -16,7 +16,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 ~ppc ~x86"
 
 # asttokens is optional runtime dep
 BDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/executing/
@ 2020-09-13  9:04 Sam James
  0 siblings, 0 replies; 123+ messages in thread
From: Sam James @ 2020-09-13  9:04 UTC (permalink / raw
  To: gentoo-commits

commit:     3b587534e71c039e7ff3e53044af7af5c812ab0f
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Sep 13 09:01:01 2020 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Sep 13 09:01:01 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3b587534

dev-python/executing: Keyword 0.5.2 ppc64, #741472

Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-python/executing/executing-0.5.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/executing/executing-0.5.2.ebuild b/dev-python/executing/executing-0.5.2.ebuild
index 1eaa5e45ab9..63786f62a79 100644
--- a/dev-python/executing/executing-0.5.2.ebuild
+++ b/dev-python/executing/executing-0.5.2.ebuild
@@ -16,7 +16,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
+KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
 
 # asttokens is optional runtime dep
 BDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/executing/
@ 2020-09-16  3:01 Sam James
  0 siblings, 0 replies; 123+ messages in thread
From: Sam James @ 2020-09-16  3:01 UTC (permalink / raw
  To: gentoo-commits

commit:     5db137910916d5d6c77afded4f06b80e80a9e790
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Sep 16 03:00:43 2020 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Sep 16 03:00:43 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5db13791

dev-python/executing: Keyword 0.5.2 arm64, #741472

Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-python/executing/executing-0.5.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/executing/executing-0.5.2.ebuild b/dev-python/executing/executing-0.5.2.ebuild
index 63786f62a79..a632de89d52 100644
--- a/dev-python/executing/executing-0.5.2.ebuild
+++ b/dev-python/executing/executing-0.5.2.ebuild
@@ -16,7 +16,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm64 ~ppc ~ppc64 ~x86"
 
 # asttokens is optional runtime dep
 BDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/executing/
@ 2020-09-18 23:58 Sam James
  0 siblings, 0 replies; 123+ messages in thread
From: Sam James @ 2020-09-18 23:58 UTC (permalink / raw
  To: gentoo-commits

commit:     67973843b36ce70d49e127f9324161c7b9725cf9
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Sep 18 23:56:36 2020 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Sep 18 23:56:36 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=67973843

dev-python/executing: Keyword 0.5.2 arm, #741472

Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-python/executing/executing-0.5.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/executing/executing-0.5.2.ebuild b/dev-python/executing/executing-0.5.2.ebuild
index a632de89d52..bdeaacb0be4 100644
--- a/dev-python/executing/executing-0.5.2.ebuild
+++ b/dev-python/executing/executing-0.5.2.ebuild
@@ -16,7 +16,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~ppc ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
 
 # asttokens is optional runtime dep
 BDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/executing/
@ 2020-10-17 19:01 Michał Górny
  0 siblings, 0 replies; 123+ messages in thread
From: Michał Górny @ 2020-10-17 19:01 UTC (permalink / raw
  To: gentoo-commits

commit:     a8d6ba427348eeff6a4d0056d7b218a33573ac20
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Oct 17 14:16:33 2020 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Oct 17 19:01:21 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a8d6ba42

dev-python/executing: Bump to 0.5.3

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/executing/Manifest               |  1 +
 dev-python/executing/executing-0.5.3.ebuild | 44 +++++++++++++++++++++++++++++
 2 files changed, 45 insertions(+)

diff --git a/dev-python/executing/Manifest b/dev-python/executing/Manifest
index 6665f9a3453..46494dcd2b2 100644
--- a/dev-python/executing/Manifest
+++ b/dev-python/executing/Manifest
@@ -1 +1,2 @@
 DIST executing-0.5.2.gh.tar.gz 303118 BLAKE2B e3b0ee22791a7fc4b378cf9f0c4640b4971ebd772d95a5d8d0abd25959c53eede5c61e4807abd4be38b9e14d0e3ab9083941ace7f59f0b6358c68b2e85291193 SHA512 2487dbb95240553f9bb7e1249af42e83be7db8cfa8a8c0569c22bfad48add9eddf903a4f365e3a6409e5208bef0d32893abb0c4dc5a93782c3b33125b091ef54
+DIST executing-0.5.3.gh.tar.gz 303234 BLAKE2B cb9de0492c4aa31b53310abf65d97df888278671fbf24e5dc2f3f4b00fd22d233fae2265bffe240c092c5b67bfca1e69ec1c4eaa937a0d4c90bedced1f156e2a SHA512 faf591de8e6354300fb572065bda304c3cbc529725b4044ad4f4ca1f86d892da21598ba7245059824e27894937d46e4ef9ef5962a9d7dff78e4144a3e0e6b388

diff --git a/dev-python/executing/executing-0.5.3.ebuild b/dev-python/executing/executing-0.5.3.ebuild
new file mode 100644
index 00000000000..bdeaacb0be4
--- /dev/null
+++ b/dev-python/executing/executing-0.5.3.ebuild
@@ -0,0 +1,44 @@
+# Copyright 2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{6..9} )
+inherit distutils-r1
+
+DESCRIPTION="Get information about what a Python frame is currently doing"
+HOMEPAGE="
+	https://github.com/alexmojaki/executing/
+	https://pypi.org/project/executing/"
+SRC_URI="
+	https://github.com/alexmojaki/executing/archive/v${PV}.tar.gz
+		-> ${P}.gh.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
+
+# asttokens is optional runtime dep
+BDEPEND="
+	dev-python/setuptools_scm[${PYTHON_USEDEP}]
+	dev-python/toml[${PYTHON_USEDEP}]
+	test? (
+		dev-python/asttokens[${PYTHON_USEDEP}]
+	)"
+
+distutils_enable_tests pytest
+
+export SETUPTOOLS_SCM_PRETEND_VERSION=${PV}
+
+src_prepare() {
+	# Kill off useless wheel dep
+	sed -i -e 's/wheel; //' setup.cfg || die
+
+	distutils-r1_src_prepare
+}
+
+python_test() {
+	# this test explodes when collected by pytest
+	"${EPYTHON}" tests/test_main.py || die "Tests failed with ${EPYTHON}"
+	pytest -vv tests/test_pytest.py || die "Tests failed with ${EPYTHON}"
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/executing/
@ 2020-10-19 20:13 Sam James
  0 siblings, 0 replies; 123+ messages in thread
From: Sam James @ 2020-10-19 20:13 UTC (permalink / raw
  To: gentoo-commits

commit:     f7a840435b6ff26b94b884aeb7d991a419c7ea67
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Oct 19 20:06:17 2020 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Oct 19 20:13:38 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f7a84043

dev-python/executing: Stabilize 0.5.3 arm64, #750110

Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-python/executing/executing-0.5.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/executing/executing-0.5.3.ebuild b/dev-python/executing/executing-0.5.3.ebuild
index bdeaacb0be4..1bc12ea1137 100644
--- a/dev-python/executing/executing-0.5.3.ebuild
+++ b/dev-python/executing/executing-0.5.3.ebuild
@@ -16,7 +16,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm arm64 ~ppc ~ppc64 ~x86"
 
 # asttokens is optional runtime dep
 BDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/executing/
@ 2020-11-14 19:00 Sam James
  0 siblings, 0 replies; 123+ messages in thread
From: Sam James @ 2020-11-14 19:00 UTC (permalink / raw
  To: gentoo-commits

commit:     5b8455149ac093ed5b74808b5ae2a3535f9f3270
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Nov 14 18:58:07 2020 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Nov 14 18:58:07 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5b845514

dev-python/executing: Stabilize 0.5.3 arm, #750110

Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-python/executing/executing-0.5.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/executing/executing-0.5.3.ebuild b/dev-python/executing/executing-0.5.3.ebuild
index 1bc12ea1137..06fa00c58a4 100644
--- a/dev-python/executing/executing-0.5.3.ebuild
+++ b/dev-python/executing/executing-0.5.3.ebuild
@@ -16,7 +16,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm arm64 ~ppc ~ppc64 ~x86"
+KEYWORDS="~amd64 arm arm64 ~ppc ~ppc64 ~x86"
 
 # asttokens is optional runtime dep
 BDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/executing/
@ 2020-11-18 10:45 Sam James
  0 siblings, 0 replies; 123+ messages in thread
From: Sam James @ 2020-11-18 10:45 UTC (permalink / raw
  To: gentoo-commits

commit:     f73ff313b55cb1a9df24b94a2ad88b3ee281cd89
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Nov 18 10:43:57 2020 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Nov 18 10:43:57 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f73ff313

dev-python/executing: Stabilize 0.5.3 x86, #750110

Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-python/executing/executing-0.5.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/executing/executing-0.5.3.ebuild b/dev-python/executing/executing-0.5.3.ebuild
index 06fa00c58a4..74e2e1504dc 100644
--- a/dev-python/executing/executing-0.5.3.ebuild
+++ b/dev-python/executing/executing-0.5.3.ebuild
@@ -16,7 +16,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 arm arm64 ~ppc ~ppc64 ~x86"
+KEYWORDS="~amd64 arm arm64 ~ppc ~ppc64 x86"
 
 # asttokens is optional runtime dep
 BDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/executing/
@ 2020-11-20 13:42 Sam James
  0 siblings, 0 replies; 123+ messages in thread
From: Sam James @ 2020-11-20 13:42 UTC (permalink / raw
  To: gentoo-commits

commit:     6933c96cd021ee366ce0358208a049f44f7af91f
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Nov 20 13:40:53 2020 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Nov 20 13:40:53 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6933c96c

dev-python/executing: Stabilize 0.5.3 amd64, #750110

Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-python/executing/executing-0.5.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/executing/executing-0.5.3.ebuild b/dev-python/executing/executing-0.5.3.ebuild
index 74e2e1504dc..55499c0a2c0 100644
--- a/dev-python/executing/executing-0.5.3.ebuild
+++ b/dev-python/executing/executing-0.5.3.ebuild
@@ -16,7 +16,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 arm arm64 ~ppc ~ppc64 x86"
+KEYWORDS="amd64 arm arm64 ~ppc ~ppc64 x86"
 
 # asttokens is optional runtime dep
 BDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/executing/
@ 2020-12-27 19:43 Michał Górny
  0 siblings, 0 replies; 123+ messages in thread
From: Michał Górny @ 2020-12-27 19:43 UTC (permalink / raw
  To: gentoo-commits

commit:     a7c8b473c8e4d7bbb7221ffaac533952438dd1a1
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sun Dec 27 19:29:14 2020 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun Dec 27 19:43:16 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a7c8b473

dev-python/executing: Bump to 0.5.4

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/executing/Manifest               |  1 +
 dev-python/executing/executing-0.5.4.ebuild | 44 +++++++++++++++++++++++++++++
 2 files changed, 45 insertions(+)

diff --git a/dev-python/executing/Manifest b/dev-python/executing/Manifest
index cac75ae3aa6..3a57de7529d 100644
--- a/dev-python/executing/Manifest
+++ b/dev-python/executing/Manifest
@@ -1 +1,2 @@
 DIST executing-0.5.3.gh.tar.gz 303234 BLAKE2B cb9de0492c4aa31b53310abf65d97df888278671fbf24e5dc2f3f4b00fd22d233fae2265bffe240c092c5b67bfca1e69ec1c4eaa937a0d4c90bedced1f156e2a SHA512 faf591de8e6354300fb572065bda304c3cbc529725b4044ad4f4ca1f86d892da21598ba7245059824e27894937d46e4ef9ef5962a9d7dff78e4144a3e0e6b388
+DIST executing-0.5.4.gh.tar.gz 330687 BLAKE2B 10f526dfb3a9f72dda788af97547e011425a56d1af73c30f5704fb8d348beb4e4538e118355dd415ec6125507ca9b2b015c02dc0bd81a2ef732a60aafb89f12a SHA512 3953ee1f6667c32fea28f964b395d53e99fa7869e27495a241f70179577865ec430ddfa07776995b6b1aaddd660adf6c6b61a8e8931589c0faeea94743fbc209

diff --git a/dev-python/executing/executing-0.5.4.ebuild b/dev-python/executing/executing-0.5.4.ebuild
new file mode 100644
index 00000000000..bdeaacb0be4
--- /dev/null
+++ b/dev-python/executing/executing-0.5.4.ebuild
@@ -0,0 +1,44 @@
+# Copyright 2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{6..9} )
+inherit distutils-r1
+
+DESCRIPTION="Get information about what a Python frame is currently doing"
+HOMEPAGE="
+	https://github.com/alexmojaki/executing/
+	https://pypi.org/project/executing/"
+SRC_URI="
+	https://github.com/alexmojaki/executing/archive/v${PV}.tar.gz
+		-> ${P}.gh.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
+
+# asttokens is optional runtime dep
+BDEPEND="
+	dev-python/setuptools_scm[${PYTHON_USEDEP}]
+	dev-python/toml[${PYTHON_USEDEP}]
+	test? (
+		dev-python/asttokens[${PYTHON_USEDEP}]
+	)"
+
+distutils_enable_tests pytest
+
+export SETUPTOOLS_SCM_PRETEND_VERSION=${PV}
+
+src_prepare() {
+	# Kill off useless wheel dep
+	sed -i -e 's/wheel; //' setup.cfg || die
+
+	distutils-r1_src_prepare
+}
+
+python_test() {
+	# this test explodes when collected by pytest
+	"${EPYTHON}" tests/test_main.py || die "Tests failed with ${EPYTHON}"
+	pytest -vv tests/test_pytest.py || die "Tests failed with ${EPYTHON}"
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/executing/
@ 2021-01-18 14:52 Sam James
  0 siblings, 0 replies; 123+ messages in thread
From: Sam James @ 2021-01-18 14:52 UTC (permalink / raw
  To: gentoo-commits

commit:     51c1c0020b659ac6283ab6e89939f36e8b1ee35c
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Jan 18 14:51:46 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Jan 18 14:51:57 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=51c1c002

dev-python/executing: Keyword 0.5.4 sparc, #765859

Signed-off-by: Sam James <sam <AT> gentoo.org>

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

diff --git a/dev-python/executing/executing-0.5.4.ebuild b/dev-python/executing/executing-0.5.4.ebuild
index bdeaacb0be4..debe5e560b6 100644
--- a/dev-python/executing/executing-0.5.4.ebuild
+++ b/dev-python/executing/executing-0.5.4.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2020 Gentoo Authors
+# Copyright 2020-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -16,7 +16,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~sparc ~x86"
 
 # asttokens is optional runtime dep
 BDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/executing/
@ 2021-03-02  4:39 Sam James
  0 siblings, 0 replies; 123+ messages in thread
From: Sam James @ 2021-03-02  4:39 UTC (permalink / raw
  To: gentoo-commits

commit:     4ff5a37b016acbafece04fe2b8febc0d3df9925d
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Mar  2 04:39:12 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Mar  2 04:39:12 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4ff5a37b

dev-python/executing: Stabilize 0.5.4 x86, #773709

Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-python/executing/executing-0.5.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/executing/executing-0.5.4.ebuild b/dev-python/executing/executing-0.5.4.ebuild
index c8c5252472b..2ebc6c4af0d 100644
--- a/dev-python/executing/executing-0.5.4.ebuild
+++ b/dev-python/executing/executing-0.5.4.ebuild
@@ -16,7 +16,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~sparc x86"
 
 # asttokens is optional runtime dep
 BDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/executing/
@ 2021-03-02  4:40 Sam James
  0 siblings, 0 replies; 123+ messages in thread
From: Sam James @ 2021-03-02  4:40 UTC (permalink / raw
  To: gentoo-commits

commit:     6d6faed67294ef597d162c493c11c54a4a245b96
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Mar  2 04:40:00 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Mar  2 04:40:00 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6d6faed6

dev-python/executing: Stabilize 0.5.4 amd64, #773709

Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-python/executing/executing-0.5.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/executing/executing-0.5.4.ebuild b/dev-python/executing/executing-0.5.4.ebuild
index 2ebc6c4af0d..e301b0c3d35 100644
--- a/dev-python/executing/executing-0.5.4.ebuild
+++ b/dev-python/executing/executing-0.5.4.ebuild
@@ -16,7 +16,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~sparc x86"
+KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 ~sparc x86"
 
 # asttokens is optional runtime dep
 BDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/executing/
@ 2021-03-03 13:54 Sam James
  0 siblings, 0 replies; 123+ messages in thread
From: Sam James @ 2021-03-03 13:54 UTC (permalink / raw
  To: gentoo-commits

commit:     f6793d4f9630786e4641bd9bd221299eb0fcd4e9
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Mar  3 13:53:53 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Mar  3 13:53:53 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f6793d4f

dev-python/executing: Stabilize 0.5.4 arm64, #773709

Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-python/executing/executing-0.5.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/executing/executing-0.5.4.ebuild b/dev-python/executing/executing-0.5.4.ebuild
index e301b0c3d35..58b2addcbaa 100644
--- a/dev-python/executing/executing-0.5.4.ebuild
+++ b/dev-python/executing/executing-0.5.4.ebuild
@@ -16,7 +16,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 ~sparc x86"
+KEYWORDS="amd64 ~arm arm64 ~ppc ~ppc64 ~sparc x86"
 
 # asttokens is optional runtime dep
 BDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/executing/
@ 2021-03-03 18:59 Sam James
  0 siblings, 0 replies; 123+ messages in thread
From: Sam James @ 2021-03-03 18:59 UTC (permalink / raw
  To: gentoo-commits

commit:     bb956a7434ecfe11e47f6ab3f6912ffe8f97592c
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Mar  3 18:59:11 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Mar  3 18:59:11 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bb956a74

dev-python/executing: Stabilize 0.5.4 arm, #773709

Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-python/executing/executing-0.5.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/executing/executing-0.5.4.ebuild b/dev-python/executing/executing-0.5.4.ebuild
index 58b2addcbaa..d75b67883db 100644
--- a/dev-python/executing/executing-0.5.4.ebuild
+++ b/dev-python/executing/executing-0.5.4.ebuild
@@ -16,7 +16,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 ~arm arm64 ~ppc ~ppc64 ~sparc x86"
+KEYWORDS="amd64 arm arm64 ~ppc ~ppc64 ~sparc x86"
 
 # asttokens is optional runtime dep
 BDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/executing/
@ 2021-03-03 19:08 Michał Górny
  0 siblings, 0 replies; 123+ messages in thread
From: Michał Górny @ 2021-03-03 19:08 UTC (permalink / raw
  To: gentoo-commits

commit:     bd6ddae87b68114f409629a8a9e433346c2192be
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed Mar  3 19:07:45 2021 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed Mar  3 19:07:45 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bd6ddae8

dev-python/executing: Remove old

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/executing/Manifest               |  1 -
 dev-python/executing/executing-0.5.3.ebuild | 44 -----------------------------
 2 files changed, 45 deletions(-)

diff --git a/dev-python/executing/Manifest b/dev-python/executing/Manifest
index 3a57de7529d..4cc57ad5e52 100644
--- a/dev-python/executing/Manifest
+++ b/dev-python/executing/Manifest
@@ -1,2 +1 @@
-DIST executing-0.5.3.gh.tar.gz 303234 BLAKE2B cb9de0492c4aa31b53310abf65d97df888278671fbf24e5dc2f3f4b00fd22d233fae2265bffe240c092c5b67bfca1e69ec1c4eaa937a0d4c90bedced1f156e2a SHA512 faf591de8e6354300fb572065bda304c3cbc529725b4044ad4f4ca1f86d892da21598ba7245059824e27894937d46e4ef9ef5962a9d7dff78e4144a3e0e6b388
 DIST executing-0.5.4.gh.tar.gz 330687 BLAKE2B 10f526dfb3a9f72dda788af97547e011425a56d1af73c30f5704fb8d348beb4e4538e118355dd415ec6125507ca9b2b015c02dc0bd81a2ef732a60aafb89f12a SHA512 3953ee1f6667c32fea28f964b395d53e99fa7869e27495a241f70179577865ec430ddfa07776995b6b1aaddd660adf6c6b61a8e8931589c0faeea94743fbc209

diff --git a/dev-python/executing/executing-0.5.3.ebuild b/dev-python/executing/executing-0.5.3.ebuild
deleted file mode 100644
index 602ada173f5..00000000000
--- a/dev-python/executing/executing-0.5.3.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{7..9} )
-inherit distutils-r1
-
-DESCRIPTION="Get information about what a Python frame is currently doing"
-HOMEPAGE="
-	https://github.com/alexmojaki/executing/
-	https://pypi.org/project/executing/"
-SRC_URI="
-	https://github.com/alexmojaki/executing/archive/v${PV}.tar.gz
-		-> ${P}.gh.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 arm arm64 ~ppc ~ppc64 x86"
-
-# asttokens is optional runtime dep
-BDEPEND="
-	dev-python/setuptools_scm[${PYTHON_USEDEP}]
-	dev-python/toml[${PYTHON_USEDEP}]
-	test? (
-		dev-python/asttokens[${PYTHON_USEDEP}]
-	)"
-
-distutils_enable_tests pytest
-
-export SETUPTOOLS_SCM_PRETEND_VERSION=${PV}
-
-src_prepare() {
-	# Kill off useless wheel dep
-	sed -i -e 's/wheel; //' setup.cfg || die
-
-	distutils-r1_src_prepare
-}
-
-python_test() {
-	# this test explodes when collected by pytest
-	"${EPYTHON}" tests/test_main.py || die "Tests failed with ${EPYTHON}"
-	pytest -vv tests/test_pytest.py || die "Tests failed with ${EPYTHON}"
-}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/executing/
@ 2021-04-19  7:23 Michał Górny
  0 siblings, 0 replies; 123+ messages in thread
From: Michał Górny @ 2021-04-19  7:23 UTC (permalink / raw
  To: gentoo-commits

commit:     5be0d6072e217d0f3362c2de6cfb0db0ce363b45
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Mon Apr 19 07:16:32 2021 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Mon Apr 19 07:16:32 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5be0d607

dev-python/executing: Bump to 0.6.0

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/executing/Manifest               |  1 +
 dev-python/executing/executing-0.6.0.ebuild | 37 +++++++++++++++++++++++++++++
 2 files changed, 38 insertions(+)

diff --git a/dev-python/executing/Manifest b/dev-python/executing/Manifest
index 4cc57ad5e52..4532a2330b3 100644
--- a/dev-python/executing/Manifest
+++ b/dev-python/executing/Manifest
@@ -1 +1,2 @@
 DIST executing-0.5.4.gh.tar.gz 330687 BLAKE2B 10f526dfb3a9f72dda788af97547e011425a56d1af73c30f5704fb8d348beb4e4538e118355dd415ec6125507ca9b2b015c02dc0bd81a2ef732a60aafb89f12a SHA512 3953ee1f6667c32fea28f964b395d53e99fa7869e27495a241f70179577865ec430ddfa07776995b6b1aaddd660adf6c6b61a8e8931589c0faeea94743fbc209
+DIST executing-0.6.0.gh.tar.gz 330731 BLAKE2B f6a86072907c5140aefb45beb46bcc8c6e3e242e2e821046e59f0eafe1d5c16efe3c08dd1b19b1ce85388fd9cc4757bfe586b95fb490a594cfee4f5e69b5a0af SHA512 5d2f621ff4cbfd55ac43b555f771b129ade5d20f882f4e5d6a060a1a099abad73cc4128c9e6bd32fccc40c4c85c51c28b3be40ab16f163e1ceaaad07f1936ab7

diff --git a/dev-python/executing/executing-0.6.0.ebuild b/dev-python/executing/executing-0.6.0.ebuild
new file mode 100644
index 00000000000..63116e793be
--- /dev/null
+++ b/dev-python/executing/executing-0.6.0.ebuild
@@ -0,0 +1,37 @@
+# Copyright 2020-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{7..9} )
+inherit distutils-r1
+
+DESCRIPTION="Get information about what a Python frame is currently doing"
+HOMEPAGE="
+	https://github.com/alexmojaki/executing/
+	https://pypi.org/project/executing/"
+SRC_URI="
+	https://github.com/alexmojaki/executing/archive/v${PV}.tar.gz
+		-> ${P}.gh.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~sparc ~x86"
+
+# asttokens is optional runtime dep
+BDEPEND="
+	dev-python/setuptools_scm[${PYTHON_USEDEP}]
+	dev-python/toml[${PYTHON_USEDEP}]
+	test? (
+		dev-python/asttokens[${PYTHON_USEDEP}]
+	)"
+
+distutils_enable_tests pytest
+
+export SETUPTOOLS_SCM_PRETEND_VERSION=${PV}
+
+python_test() {
+	# this test explodes when collected by pytest
+	"${EPYTHON}" tests/test_main.py || die "Tests failed with ${EPYTHON}"
+	pytest -vv tests/test_pytest.py || die "Tests failed with ${EPYTHON}"
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/executing/
@ 2021-05-25 16:55 Sam James
  0 siblings, 0 replies; 123+ messages in thread
From: Sam James @ 2021-05-25 16:55 UTC (permalink / raw
  To: gentoo-commits

commit:     b3d1b54547f0b78ecacb441a2238ef1d7ffff02b
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue May 25 16:53:16 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue May 25 16:53:16 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b3d1b545

dev-python/executing: Stabilize 0.6.0 arm, #791976

Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-python/executing/executing-0.6.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/executing/executing-0.6.0.ebuild b/dev-python/executing/executing-0.6.0.ebuild
index 63116e793be..d157f73e884 100644
--- a/dev-python/executing/executing-0.6.0.ebuild
+++ b/dev-python/executing/executing-0.6.0.ebuild
@@ -16,7 +16,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~amd64 arm ~arm64 ~ppc ~ppc64 ~sparc ~x86"
 
 # asttokens is optional runtime dep
 BDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/executing/
@ 2021-05-26  8:11 Sam James
  0 siblings, 0 replies; 123+ messages in thread
From: Sam James @ 2021-05-26  8:11 UTC (permalink / raw
  To: gentoo-commits

commit:     917843990930be54f949dbb1907b03bf81956e3c
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed May 26 08:09:13 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed May 26 08:11:08 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=91784399

dev-python/executing: Stabilize 0.6.0 x86, #791976

Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-python/executing/executing-0.6.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/executing/executing-0.6.0.ebuild b/dev-python/executing/executing-0.6.0.ebuild
index 190f2dcb645..1e95af2fb48 100644
--- a/dev-python/executing/executing-0.6.0.ebuild
+++ b/dev-python/executing/executing-0.6.0.ebuild
@@ -16,7 +16,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 arm ~arm64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="amd64 arm ~arm64 ~ppc ~ppc64 ~sparc x86"
 
 # asttokens is optional runtime dep
 BDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/executing/
@ 2021-05-26 13:17 Sam James
  0 siblings, 0 replies; 123+ messages in thread
From: Sam James @ 2021-05-26 13:17 UTC (permalink / raw
  To: gentoo-commits

commit:     8db9a9732b06a0121f182b707231e1cb30f59a6a
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed May 26 13:15:54 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed May 26 13:17:18 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8db9a973

dev-python/executing: Stabilize 0.6.0 arm64, #791976

Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-python/executing/executing-0.6.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/executing/executing-0.6.0.ebuild b/dev-python/executing/executing-0.6.0.ebuild
index 1e95af2fb48..fd754d9ae94 100644
--- a/dev-python/executing/executing-0.6.0.ebuild
+++ b/dev-python/executing/executing-0.6.0.ebuild
@@ -16,7 +16,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 arm ~arm64 ~ppc ~ppc64 ~sparc x86"
+KEYWORDS="amd64 arm arm64 ~ppc ~ppc64 ~sparc x86"
 
 # asttokens is optional runtime dep
 BDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/executing/
@ 2021-05-26 13:31 Michał Górny
  0 siblings, 0 replies; 123+ messages in thread
From: Michał Górny @ 2021-05-26 13:31 UTC (permalink / raw
  To: gentoo-commits

commit:     ef4422b573bb31afff2562907f3344221e310363
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed May 26 13:30:36 2021 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed May 26 13:31:54 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ef4422b5

dev-python/executing: Remove old

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/executing/Manifest               |  1 -
 dev-python/executing/executing-0.5.4.ebuild | 44 -----------------------------
 2 files changed, 45 deletions(-)

diff --git a/dev-python/executing/Manifest b/dev-python/executing/Manifest
index 4532a2330b3..1439d278479 100644
--- a/dev-python/executing/Manifest
+++ b/dev-python/executing/Manifest
@@ -1,2 +1 @@
-DIST executing-0.5.4.gh.tar.gz 330687 BLAKE2B 10f526dfb3a9f72dda788af97547e011425a56d1af73c30f5704fb8d348beb4e4538e118355dd415ec6125507ca9b2b015c02dc0bd81a2ef732a60aafb89f12a SHA512 3953ee1f6667c32fea28f964b395d53e99fa7869e27495a241f70179577865ec430ddfa07776995b6b1aaddd660adf6c6b61a8e8931589c0faeea94743fbc209
 DIST executing-0.6.0.gh.tar.gz 330731 BLAKE2B f6a86072907c5140aefb45beb46bcc8c6e3e242e2e821046e59f0eafe1d5c16efe3c08dd1b19b1ce85388fd9cc4757bfe586b95fb490a594cfee4f5e69b5a0af SHA512 5d2f621ff4cbfd55ac43b555f771b129ade5d20f882f4e5d6a060a1a099abad73cc4128c9e6bd32fccc40c4c85c51c28b3be40ab16f163e1ceaaad07f1936ab7

diff --git a/dev-python/executing/executing-0.5.4.ebuild b/dev-python/executing/executing-0.5.4.ebuild
deleted file mode 100644
index d75b67883db..00000000000
--- a/dev-python/executing/executing-0.5.4.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 2020-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{7..9} )
-inherit distutils-r1
-
-DESCRIPTION="Get information about what a Python frame is currently doing"
-HOMEPAGE="
-	https://github.com/alexmojaki/executing/
-	https://pypi.org/project/executing/"
-SRC_URI="
-	https://github.com/alexmojaki/executing/archive/v${PV}.tar.gz
-		-> ${P}.gh.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 arm arm64 ~ppc ~ppc64 ~sparc x86"
-
-# asttokens is optional runtime dep
-BDEPEND="
-	dev-python/setuptools_scm[${PYTHON_USEDEP}]
-	dev-python/toml[${PYTHON_USEDEP}]
-	test? (
-		dev-python/asttokens[${PYTHON_USEDEP}]
-	)"
-
-distutils_enable_tests pytest
-
-export SETUPTOOLS_SCM_PRETEND_VERSION=${PV}
-
-src_prepare() {
-	# Kill off useless wheel dep
-	sed -i -e 's/wheel; //' setup.cfg || die
-
-	distutils-r1_src_prepare
-}
-
-python_test() {
-	# this test explodes when collected by pytest
-	"${EPYTHON}" tests/test_main.py || die "Tests failed with ${EPYTHON}"
-	pytest -vv tests/test_pytest.py || die "Tests failed with ${EPYTHON}"
-}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/executing/
@ 2021-07-06  7:13 Michał Górny
  0 siblings, 0 replies; 123+ messages in thread
From: Michał Górny @ 2021-07-06  7:13 UTC (permalink / raw
  To: gentoo-commits

commit:     6fc53050dedf0976973f391a7fdb1de16d0571f8
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Tue Jul  6 07:09:44 2021 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Tue Jul  6 07:12:58 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6fc53050

dev-python/executing: Bump to 0.7.0

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/executing/Manifest               |  1 +
 dev-python/executing/executing-0.7.0.ebuild | 37 +++++++++++++++++++++++++++++
 2 files changed, 38 insertions(+)

diff --git a/dev-python/executing/Manifest b/dev-python/executing/Manifest
index 1439d278479..54651edfaaf 100644
--- a/dev-python/executing/Manifest
+++ b/dev-python/executing/Manifest
@@ -1 +1,2 @@
 DIST executing-0.6.0.gh.tar.gz 330731 BLAKE2B f6a86072907c5140aefb45beb46bcc8c6e3e242e2e821046e59f0eafe1d5c16efe3c08dd1b19b1ce85388fd9cc4757bfe586b95fb490a594cfee4f5e69b5a0af SHA512 5d2f621ff4cbfd55ac43b555f771b129ade5d20f882f4e5d6a060a1a099abad73cc4128c9e6bd32fccc40c4c85c51c28b3be40ab16f163e1ceaaad07f1936ab7
+DIST executing-0.7.0.gh.tar.gz 452550 BLAKE2B 9b3bdb49b3b00ca17952db747d3f0f3995e8dffbc170bcb2260e7c34ce9e6b0c8e1620be2e2776445a6114add4e2437eaeae8a308391e2c121b6484b5bc6056c SHA512 08ee347f0bcaf04ca2c6010762a6d2d5b054b3590029c55d18d6efae5a5db7c6c5a0948cce9d9684e4bfbfd9ea19326e4ac2c96be40535c0500c28c28ce81e07

diff --git a/dev-python/executing/executing-0.7.0.ebuild b/dev-python/executing/executing-0.7.0.ebuild
new file mode 100644
index 00000000000..fc9d9501f8e
--- /dev/null
+++ b/dev-python/executing/executing-0.7.0.ebuild
@@ -0,0 +1,37 @@
+# Copyright 2020-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..9} )
+inherit distutils-r1
+
+DESCRIPTION="Get information about what a Python frame is currently doing"
+HOMEPAGE="
+	https://github.com/alexmojaki/executing/
+	https://pypi.org/project/executing/"
+SRC_URI="
+	https://github.com/alexmojaki/executing/archive/v${PV}.tar.gz
+		-> ${P}.gh.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~sparc ~x86"
+
+# asttokens is optional runtime dep
+BDEPEND="
+	dev-python/setuptools_scm[${PYTHON_USEDEP}]
+	dev-python/toml[${PYTHON_USEDEP}]
+	test? (
+		dev-python/asttokens[${PYTHON_USEDEP}]
+	)"
+
+distutils_enable_tests pytest
+
+export SETUPTOOLS_SCM_PRETEND_VERSION=${PV}
+
+python_test() {
+	# this test explodes when collected by pytest
+	"${EPYTHON}" tests/test_main.py || die "Tests failed with ${EPYTHON}"
+	epytest tests/test_pytest.py
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/executing/
@ 2021-08-01  8:17 Michał Górny
  0 siblings, 0 replies; 123+ messages in thread
From: Michał Górny @ 2021-08-01  8:17 UTC (permalink / raw
  To: gentoo-commits

commit:     c2812e6b308dd757464074b346827654b29b01af
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sun Aug  1 06:46:00 2021 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun Aug  1 08:14:54 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c2812e6b

dev-python/executing: Bump to 0.8.0

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/executing/Manifest               |  1 +
 dev-python/executing/executing-0.8.0.ebuild | 37 +++++++++++++++++++++++++++++
 2 files changed, 38 insertions(+)

diff --git a/dev-python/executing/Manifest b/dev-python/executing/Manifest
index 54651edfaaf..11c1715b6c1 100644
--- a/dev-python/executing/Manifest
+++ b/dev-python/executing/Manifest
@@ -1,2 +1,3 @@
 DIST executing-0.6.0.gh.tar.gz 330731 BLAKE2B f6a86072907c5140aefb45beb46bcc8c6e3e242e2e821046e59f0eafe1d5c16efe3c08dd1b19b1ce85388fd9cc4757bfe586b95fb490a594cfee4f5e69b5a0af SHA512 5d2f621ff4cbfd55ac43b555f771b129ade5d20f882f4e5d6a060a1a099abad73cc4128c9e6bd32fccc40c4c85c51c28b3be40ab16f163e1ceaaad07f1936ab7
 DIST executing-0.7.0.gh.tar.gz 452550 BLAKE2B 9b3bdb49b3b00ca17952db747d3f0f3995e8dffbc170bcb2260e7c34ce9e6b0c8e1620be2e2776445a6114add4e2437eaeae8a308391e2c121b6484b5bc6056c SHA512 08ee347f0bcaf04ca2c6010762a6d2d5b054b3590029c55d18d6efae5a5db7c6c5a0948cce9d9684e4bfbfd9ea19326e4ac2c96be40535c0500c28c28ce81e07
+DIST executing-0.8.0.gh.tar.gz 494306 BLAKE2B 37ce7c743380dcac85e6843e8ee708c8d876c5de883e49786da67d94dc9a7bf983bb36278a823ddb2bc9291e7219125cf870fac8c0c28979a4b49e951410d5e5 SHA512 6f88052f61479c5fe4aba1925e90f3daea3852f636c5c17d94a08dfa4de909fb3187650ff07c1dc66b4b3bec4a04cfdaf4cfe0c37903f67b2d716691d07a93d8

diff --git a/dev-python/executing/executing-0.8.0.ebuild b/dev-python/executing/executing-0.8.0.ebuild
new file mode 100644
index 00000000000..e01cf6c3100
--- /dev/null
+++ b/dev-python/executing/executing-0.8.0.ebuild
@@ -0,0 +1,37 @@
+# Copyright 2020-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..10} )
+inherit distutils-r1
+
+DESCRIPTION="Get information about what a Python frame is currently doing"
+HOMEPAGE="
+	https://github.com/alexmojaki/executing/
+	https://pypi.org/project/executing/"
+SRC_URI="
+	https://github.com/alexmojaki/executing/archive/v${PV}.tar.gz
+		-> ${P}.gh.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~sparc ~x86"
+
+# asttokens is optional runtime dep
+BDEPEND="
+	dev-python/setuptools_scm[${PYTHON_USEDEP}]
+	dev-python/toml[${PYTHON_USEDEP}]
+	test? (
+		dev-python/asttokens[${PYTHON_USEDEP}]
+	)"
+
+distutils_enable_tests pytest
+
+export SETUPTOOLS_SCM_PRETEND_VERSION=${PV}
+
+python_test() {
+	# this test explodes when collected by pytest
+	"${EPYTHON}" tests/test_main.py || die "Tests failed with ${EPYTHON}"
+	epytest tests/test_pytest.py
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/executing/
@ 2021-08-07 14:43 Sam James
  0 siblings, 0 replies; 123+ messages in thread
From: Sam James @ 2021-08-07 14:43 UTC (permalink / raw
  To: gentoo-commits

commit:     7d8000ce28ced5668ab7f0d690ab08052582f125
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Aug  7 14:41:07 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Aug  7 14:41:07 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7d8000ce

dev-python/executing: Stabilize 0.7.0 amd64, #806890

Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-python/executing/executing-0.7.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/executing/executing-0.7.0.ebuild b/dev-python/executing/executing-0.7.0.ebuild
index fc9d9501f8e..80589a237cf 100644
--- a/dev-python/executing/executing-0.7.0.ebuild
+++ b/dev-python/executing/executing-0.7.0.ebuild
@@ -16,7 +16,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 ~sparc ~x86"
 
 # asttokens is optional runtime dep
 BDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/executing/
@ 2021-08-07 23:37 Sam James
  0 siblings, 0 replies; 123+ messages in thread
From: Sam James @ 2021-08-07 23:37 UTC (permalink / raw
  To: gentoo-commits

commit:     00055bfa85b708d07690396fca82f580622872fc
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Aug  7 23:33:48 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Aug  7 23:33:48 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=00055bfa

dev-python/executing: Stabilize 0.7.0 x86, #806890

Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-python/executing/executing-0.7.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/executing/executing-0.7.0.ebuild b/dev-python/executing/executing-0.7.0.ebuild
index 80589a237cf..0c1087e0bee 100644
--- a/dev-python/executing/executing-0.7.0.ebuild
+++ b/dev-python/executing/executing-0.7.0.ebuild
@@ -16,7 +16,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 ~sparc x86"
 
 # asttokens is optional runtime dep
 BDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/executing/
@ 2021-08-09  0:35 Sam James
  0 siblings, 0 replies; 123+ messages in thread
From: Sam James @ 2021-08-09  0:35 UTC (permalink / raw
  To: gentoo-commits

commit:     cabacf9347845f2751424a9daa996aedd490c1e0
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Aug  9 00:33:53 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Aug  9 00:33:53 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cabacf93

dev-python/executing: Stabilize 0.7.0 arm, #806890

Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-python/executing/executing-0.7.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/executing/executing-0.7.0.ebuild b/dev-python/executing/executing-0.7.0.ebuild
index 0c1087e0bee..b2f73c153e2 100644
--- a/dev-python/executing/executing-0.7.0.ebuild
+++ b/dev-python/executing/executing-0.7.0.ebuild
@@ -16,7 +16,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 ~sparc x86"
+KEYWORDS="amd64 arm ~arm64 ~ppc ~ppc64 ~sparc x86"
 
 # asttokens is optional runtime dep
 BDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/executing/
@ 2021-09-04 21:57 Michał Górny
  0 siblings, 0 replies; 123+ messages in thread
From: Michał Górny @ 2021-09-04 21:57 UTC (permalink / raw
  To: gentoo-commits

commit:     0f5606e2d4e6a9cc8c6a328389b0cb9de0757472
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Sep  4 21:54:28 2021 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Sep  4 21:54:28 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0f5606e2

dev-python/executing: Remove old

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/executing/Manifest               |  1 -
 dev-python/executing/executing-0.6.0.ebuild | 37 -----------------------------
 2 files changed, 38 deletions(-)

diff --git a/dev-python/executing/Manifest b/dev-python/executing/Manifest
index 11c1715b6c1..88c1b7c485f 100644
--- a/dev-python/executing/Manifest
+++ b/dev-python/executing/Manifest
@@ -1,3 +1,2 @@
-DIST executing-0.6.0.gh.tar.gz 330731 BLAKE2B f6a86072907c5140aefb45beb46bcc8c6e3e242e2e821046e59f0eafe1d5c16efe3c08dd1b19b1ce85388fd9cc4757bfe586b95fb490a594cfee4f5e69b5a0af SHA512 5d2f621ff4cbfd55ac43b555f771b129ade5d20f882f4e5d6a060a1a099abad73cc4128c9e6bd32fccc40c4c85c51c28b3be40ab16f163e1ceaaad07f1936ab7
 DIST executing-0.7.0.gh.tar.gz 452550 BLAKE2B 9b3bdb49b3b00ca17952db747d3f0f3995e8dffbc170bcb2260e7c34ce9e6b0c8e1620be2e2776445a6114add4e2437eaeae8a308391e2c121b6484b5bc6056c SHA512 08ee347f0bcaf04ca2c6010762a6d2d5b054b3590029c55d18d6efae5a5db7c6c5a0948cce9d9684e4bfbfd9ea19326e4ac2c96be40535c0500c28c28ce81e07
 DIST executing-0.8.0.gh.tar.gz 494306 BLAKE2B 37ce7c743380dcac85e6843e8ee708c8d876c5de883e49786da67d94dc9a7bf983bb36278a823ddb2bc9291e7219125cf870fac8c0c28979a4b49e951410d5e5 SHA512 6f88052f61479c5fe4aba1925e90f3daea3852f636c5c17d94a08dfa4de909fb3187650ff07c1dc66b4b3bec4a04cfdaf4cfe0c37903f67b2d716691d07a93d8

diff --git a/dev-python/executing/executing-0.6.0.ebuild b/dev-python/executing/executing-0.6.0.ebuild
deleted file mode 100644
index fd754d9ae94..00000000000
--- a/dev-python/executing/executing-0.6.0.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 2020-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{7..9} )
-inherit distutils-r1
-
-DESCRIPTION="Get information about what a Python frame is currently doing"
-HOMEPAGE="
-	https://github.com/alexmojaki/executing/
-	https://pypi.org/project/executing/"
-SRC_URI="
-	https://github.com/alexmojaki/executing/archive/v${PV}.tar.gz
-		-> ${P}.gh.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 arm arm64 ~ppc ~ppc64 ~sparc x86"
-
-# asttokens is optional runtime dep
-BDEPEND="
-	dev-python/setuptools_scm[${PYTHON_USEDEP}]
-	dev-python/toml[${PYTHON_USEDEP}]
-	test? (
-		dev-python/asttokens[${PYTHON_USEDEP}]
-	)"
-
-distutils_enable_tests pytest
-
-export SETUPTOOLS_SCM_PRETEND_VERSION=${PV}
-
-python_test() {
-	# this test explodes when collected by pytest
-	"${EPYTHON}" tests/test_main.py || die "Tests failed with ${EPYTHON}"
-	pytest -vv tests/test_pytest.py || die "Tests failed with ${EPYTHON}"
-}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/executing/
@ 2021-09-05  6:02 Sam James
  0 siblings, 0 replies; 123+ messages in thread
From: Sam James @ 2021-09-05  6:02 UTC (permalink / raw
  To: gentoo-commits

commit:     4ae199ed0c2a2efa08751e9f468a6015a415153f
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Sep  5 06:01:41 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Sep  5 06:01:41 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4ae199ed

dev-python/executing: Stabilize 0.8.0 arm64, #811612

Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-python/executing/executing-0.8.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/executing/executing-0.8.0.ebuild b/dev-python/executing/executing-0.8.0.ebuild
index e01cf6c3100..d4612747514 100644
--- a/dev-python/executing/executing-0.8.0.ebuild
+++ b/dev-python/executing/executing-0.8.0.ebuild
@@ -16,7 +16,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~amd64 ~arm arm64 ~ppc ~ppc64 ~sparc ~x86"
 
 # asttokens is optional runtime dep
 BDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/executing/
@ 2021-09-05 20:01 Agostino Sarubbo
  0 siblings, 0 replies; 123+ messages in thread
From: Agostino Sarubbo @ 2021-09-05 20:01 UTC (permalink / raw
  To: gentoo-commits

commit:     f7f6bf1574d400e59dd707fd52d84f4757ff7dad
Author:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Sun Sep  5 20:00:18 2021 +0000
Commit:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Sun Sep  5 20:00:18 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f7f6bf15

dev-python/executing: amd64 stable wrt bug #811612

Package-Manager: Portage-3.0.20, Repoman-3.0.2
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>

 dev-python/executing/executing-0.8.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/executing/executing-0.8.0.ebuild b/dev-python/executing/executing-0.8.0.ebuild
index d4612747514..84aac591182 100644
--- a/dev-python/executing/executing-0.8.0.ebuild
+++ b/dev-python/executing/executing-0.8.0.ebuild
@@ -16,7 +16,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm arm64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="amd64 ~arm arm64 ~ppc ~ppc64 ~sparc ~x86"
 
 # asttokens is optional runtime dep
 BDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/executing/
@ 2021-09-06  5:40 Agostino Sarubbo
  0 siblings, 0 replies; 123+ messages in thread
From: Agostino Sarubbo @ 2021-09-06  5:40 UTC (permalink / raw
  To: gentoo-commits

commit:     e171f9b80a191a7762c8dc2bb2a28f5466845b32
Author:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Mon Sep  6 05:38:56 2021 +0000
Commit:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Mon Sep  6 05:38:56 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e171f9b8

dev-python/executing: x86 stable wrt bug #811612

Package-Manager: Portage-3.0.20, Repoman-3.0.2
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>

 dev-python/executing/executing-0.8.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/executing/executing-0.8.0.ebuild b/dev-python/executing/executing-0.8.0.ebuild
index 84aac591182..46bb13c8413 100644
--- a/dev-python/executing/executing-0.8.0.ebuild
+++ b/dev-python/executing/executing-0.8.0.ebuild
@@ -16,7 +16,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 ~arm arm64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="amd64 ~arm arm64 ~ppc ~ppc64 ~sparc x86"
 
 # asttokens is optional runtime dep
 BDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/executing/
@ 2021-09-07 19:19 Sam James
  0 siblings, 0 replies; 123+ messages in thread
From: Sam James @ 2021-09-07 19:19 UTC (permalink / raw
  To: gentoo-commits

commit:     7e0c9135d6fb949d26ea84e6c0f216b03840ee30
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Sep  7 19:19:14 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Sep  7 19:19:14 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7e0c9135

dev-python/executing: Stabilize 0.8.0 arm, #811612

Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-python/executing/executing-0.8.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/executing/executing-0.8.0.ebuild b/dev-python/executing/executing-0.8.0.ebuild
index 46bb13c8413..a5e893cb9f4 100644
--- a/dev-python/executing/executing-0.8.0.ebuild
+++ b/dev-python/executing/executing-0.8.0.ebuild
@@ -16,7 +16,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 ~arm arm64 ~ppc ~ppc64 ~sparc x86"
+KEYWORDS="amd64 arm arm64 ~ppc ~ppc64 ~sparc x86"
 
 # asttokens is optional runtime dep
 BDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/executing/
@ 2021-09-12 21:38 Michał Górny
  0 siblings, 0 replies; 123+ messages in thread
From: Michał Górny @ 2021-09-12 21:38 UTC (permalink / raw
  To: gentoo-commits

commit:     e76586bda6e993db703158cdfcda5f5b668cac95
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sun Sep 12 21:26:11 2021 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun Sep 12 21:38:29 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e76586bd

dev-python/executing: Bump to 0.8.1

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/executing/Manifest               |  1 +
 dev-python/executing/executing-0.8.1.ebuild | 37 +++++++++++++++++++++++++++++
 2 files changed, 38 insertions(+)

diff --git a/dev-python/executing/Manifest b/dev-python/executing/Manifest
index 88c1b7c485f..146533d6037 100644
--- a/dev-python/executing/Manifest
+++ b/dev-python/executing/Manifest
@@ -1,2 +1,3 @@
 DIST executing-0.7.0.gh.tar.gz 452550 BLAKE2B 9b3bdb49b3b00ca17952db747d3f0f3995e8dffbc170bcb2260e7c34ce9e6b0c8e1620be2e2776445a6114add4e2437eaeae8a308391e2c121b6484b5bc6056c SHA512 08ee347f0bcaf04ca2c6010762a6d2d5b054b3590029c55d18d6efae5a5db7c6c5a0948cce9d9684e4bfbfd9ea19326e4ac2c96be40535c0500c28c28ce81e07
 DIST executing-0.8.0.gh.tar.gz 494306 BLAKE2B 37ce7c743380dcac85e6843e8ee708c8d876c5de883e49786da67d94dc9a7bf983bb36278a823ddb2bc9291e7219125cf870fac8c0c28979a4b49e951410d5e5 SHA512 6f88052f61479c5fe4aba1925e90f3daea3852f636c5c17d94a08dfa4de909fb3187650ff07c1dc66b4b3bec4a04cfdaf4cfe0c37903f67b2d716691d07a93d8
+DIST executing-0.8.1.gh.tar.gz 494735 BLAKE2B db57f01a6501b2c709140d806119a455db2294f410bb1602bbe96d3b45c4301b9517654fcdc00c31b6dcd3365476d29a944e38d340f82338ed1059f0a878753e SHA512 592035eeef74dc83fd72a08910e3cbacebe70f8206c55ba54661d8a11b7aee105de59487a957caf71799b0f3f5239e601a4de5d19553f33d21983c23a199c383

diff --git a/dev-python/executing/executing-0.8.1.ebuild b/dev-python/executing/executing-0.8.1.ebuild
new file mode 100644
index 00000000000..e01cf6c3100
--- /dev/null
+++ b/dev-python/executing/executing-0.8.1.ebuild
@@ -0,0 +1,37 @@
+# Copyright 2020-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..10} )
+inherit distutils-r1
+
+DESCRIPTION="Get information about what a Python frame is currently doing"
+HOMEPAGE="
+	https://github.com/alexmojaki/executing/
+	https://pypi.org/project/executing/"
+SRC_URI="
+	https://github.com/alexmojaki/executing/archive/v${PV}.tar.gz
+		-> ${P}.gh.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~sparc ~x86"
+
+# asttokens is optional runtime dep
+BDEPEND="
+	dev-python/setuptools_scm[${PYTHON_USEDEP}]
+	dev-python/toml[${PYTHON_USEDEP}]
+	test? (
+		dev-python/asttokens[${PYTHON_USEDEP}]
+	)"
+
+distutils_enable_tests pytest
+
+export SETUPTOOLS_SCM_PRETEND_VERSION=${PV}
+
+python_test() {
+	# this test explodes when collected by pytest
+	"${EPYTHON}" tests/test_main.py || die "Tests failed with ${EPYTHON}"
+	epytest tests/test_pytest.py
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/executing/
@ 2021-10-03  6:37 Michał Górny
  0 siblings, 0 replies; 123+ messages in thread
From: Michał Górny @ 2021-10-03  6:37 UTC (permalink / raw
  To: gentoo-commits

commit:     9d492c8ec7857086307b8520cd34fcd23898d9a5
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sun Oct  3 06:32:29 2021 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun Oct  3 06:37:08 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9d492c8e

dev-python/executing: Bump to 0.8.2

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/executing/Manifest               |  1 +
 dev-python/executing/executing-0.8.2.ebuild | 37 +++++++++++++++++++++++++++++
 2 files changed, 38 insertions(+)

diff --git a/dev-python/executing/Manifest b/dev-python/executing/Manifest
index 146533d6037..86ed6d76235 100644
--- a/dev-python/executing/Manifest
+++ b/dev-python/executing/Manifest
@@ -1,3 +1,4 @@
 DIST executing-0.7.0.gh.tar.gz 452550 BLAKE2B 9b3bdb49b3b00ca17952db747d3f0f3995e8dffbc170bcb2260e7c34ce9e6b0c8e1620be2e2776445a6114add4e2437eaeae8a308391e2c121b6484b5bc6056c SHA512 08ee347f0bcaf04ca2c6010762a6d2d5b054b3590029c55d18d6efae5a5db7c6c5a0948cce9d9684e4bfbfd9ea19326e4ac2c96be40535c0500c28c28ce81e07
 DIST executing-0.8.0.gh.tar.gz 494306 BLAKE2B 37ce7c743380dcac85e6843e8ee708c8d876c5de883e49786da67d94dc9a7bf983bb36278a823ddb2bc9291e7219125cf870fac8c0c28979a4b49e951410d5e5 SHA512 6f88052f61479c5fe4aba1925e90f3daea3852f636c5c17d94a08dfa4de909fb3187650ff07c1dc66b4b3bec4a04cfdaf4cfe0c37903f67b2d716691d07a93d8
 DIST executing-0.8.1.gh.tar.gz 494735 BLAKE2B db57f01a6501b2c709140d806119a455db2294f410bb1602bbe96d3b45c4301b9517654fcdc00c31b6dcd3365476d29a944e38d340f82338ed1059f0a878753e SHA512 592035eeef74dc83fd72a08910e3cbacebe70f8206c55ba54661d8a11b7aee105de59487a957caf71799b0f3f5239e601a4de5d19553f33d21983c23a199c383
+DIST executing-0.8.2.gh.tar.gz 494836 BLAKE2B d6ade5658c8df656e80bb596f6c19493475d74ea10ddfc60b25eadb4a2f68d8afd2f437a6f82807932bba0469617fdac7a4dd90569623d1c8d7f96220e02ec9a SHA512 9a7fe4d3bae77d49725f35bae9d239bfb2a6e89d893d871d76f26fe4beffe0a07c6cbf50ea7b35b9ced66148d015c48106bc5774b26f201f9b40577f3380f5b3

diff --git a/dev-python/executing/executing-0.8.2.ebuild b/dev-python/executing/executing-0.8.2.ebuild
new file mode 100644
index 00000000000..e01cf6c3100
--- /dev/null
+++ b/dev-python/executing/executing-0.8.2.ebuild
@@ -0,0 +1,37 @@
+# Copyright 2020-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..10} )
+inherit distutils-r1
+
+DESCRIPTION="Get information about what a Python frame is currently doing"
+HOMEPAGE="
+	https://github.com/alexmojaki/executing/
+	https://pypi.org/project/executing/"
+SRC_URI="
+	https://github.com/alexmojaki/executing/archive/v${PV}.tar.gz
+		-> ${P}.gh.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~sparc ~x86"
+
+# asttokens is optional runtime dep
+BDEPEND="
+	dev-python/setuptools_scm[${PYTHON_USEDEP}]
+	dev-python/toml[${PYTHON_USEDEP}]
+	test? (
+		dev-python/asttokens[${PYTHON_USEDEP}]
+	)"
+
+distutils_enable_tests pytest
+
+export SETUPTOOLS_SCM_PRETEND_VERSION=${PV}
+
+python_test() {
+	# this test explodes when collected by pytest
+	"${EPYTHON}" tests/test_main.py || die "Tests failed with ${EPYTHON}"
+	epytest tests/test_pytest.py
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/executing/
@ 2021-10-15 22:42 Sam James
  0 siblings, 0 replies; 123+ messages in thread
From: Sam James @ 2021-10-15 22:42 UTC (permalink / raw
  To: gentoo-commits

commit:     aaf112e1e664bfa91c05990342b1bb3600afb79a
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Oct 15 22:40:44 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Oct 15 22:40:44 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aaf112e1

dev-python/executing: Stabilize 0.8.2 x86, #818319

Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-python/executing/executing-0.8.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/executing/executing-0.8.2.ebuild b/dev-python/executing/executing-0.8.2.ebuild
index e01cf6c3100..654d32fecf2 100644
--- a/dev-python/executing/executing-0.8.2.ebuild
+++ b/dev-python/executing/executing-0.8.2.ebuild
@@ -16,7 +16,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~sparc x86"
 
 # asttokens is optional runtime dep
 BDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/executing/
@ 2021-10-15 22:42 Sam James
  0 siblings, 0 replies; 123+ messages in thread
From: Sam James @ 2021-10-15 22:42 UTC (permalink / raw
  To: gentoo-commits

commit:     45afe79f7196f6164ac44246be97c3b90d55948d
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Oct 15 22:41:40 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Oct 15 22:41:40 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=45afe79f

dev-python/executing: Stabilize 0.8.2 amd64, #818319

Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-python/executing/executing-0.8.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/executing/executing-0.8.2.ebuild b/dev-python/executing/executing-0.8.2.ebuild
index 654d32fecf2..5ae4fe8d005 100644
--- a/dev-python/executing/executing-0.8.2.ebuild
+++ b/dev-python/executing/executing-0.8.2.ebuild
@@ -16,7 +16,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~sparc x86"
+KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 ~sparc x86"
 
 # asttokens is optional runtime dep
 BDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/executing/
@ 2021-10-15 22:43 Sam James
  0 siblings, 0 replies; 123+ messages in thread
From: Sam James @ 2021-10-15 22:43 UTC (permalink / raw
  To: gentoo-commits

commit:     ae70e9a44edcba1df7165962f4066a14641db859
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Oct 15 22:43:06 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Oct 15 22:43:06 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ae70e9a4

dev-python/executing: Stabilize 0.8.2 arm, #818319

Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-python/executing/executing-0.8.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/executing/executing-0.8.2.ebuild b/dev-python/executing/executing-0.8.2.ebuild
index 5ae4fe8d005..415f88ea43e 100644
--- a/dev-python/executing/executing-0.8.2.ebuild
+++ b/dev-python/executing/executing-0.8.2.ebuild
@@ -16,7 +16,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 ~sparc x86"
+KEYWORDS="amd64 arm ~arm64 ~ppc ~ppc64 ~sparc x86"
 
 # asttokens is optional runtime dep
 BDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/executing/
@ 2021-10-17 19:09 Sam James
  0 siblings, 0 replies; 123+ messages in thread
From: Sam James @ 2021-10-17 19:09 UTC (permalink / raw
  To: gentoo-commits

commit:     21502e8f5210820199e68c9eb9f6aceff4b1556f
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Oct 17 19:08:28 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Oct 17 19:08:28 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=21502e8f

dev-python/executing: Stabilize 0.8.2 arm64, #818319

Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-python/executing/executing-0.8.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/executing/executing-0.8.2.ebuild b/dev-python/executing/executing-0.8.2.ebuild
index 415f88ea43e..a5e893cb9f4 100644
--- a/dev-python/executing/executing-0.8.2.ebuild
+++ b/dev-python/executing/executing-0.8.2.ebuild
@@ -16,7 +16,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 arm ~arm64 ~ppc ~ppc64 ~sparc x86"
+KEYWORDS="amd64 arm arm64 ~ppc ~ppc64 ~sparc x86"
 
 # asttokens is optional runtime dep
 BDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/executing/
@ 2021-10-17 19:25 Arthur Zamarin
  0 siblings, 0 replies; 123+ messages in thread
From: Arthur Zamarin @ 2021-10-17 19:25 UTC (permalink / raw
  To: gentoo-commits

commit:     7e902a9a40fb2395c9cec252f6d09e113b75ab96
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sun Oct 17 19:15:23 2021 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sun Oct 17 19:24:25 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7e902a9a

dev-python/executing: drop 0.7.0, 0.8.0, 0.8.1

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 dev-python/executing/Manifest               |  3 ---
 dev-python/executing/executing-0.7.0.ebuild | 37 -----------------------------
 dev-python/executing/executing-0.8.0.ebuild | 37 -----------------------------
 dev-python/executing/executing-0.8.1.ebuild | 37 -----------------------------
 4 files changed, 114 deletions(-)

diff --git a/dev-python/executing/Manifest b/dev-python/executing/Manifest
index 86ed6d76235..a39b3b6667a 100644
--- a/dev-python/executing/Manifest
+++ b/dev-python/executing/Manifest
@@ -1,4 +1 @@
-DIST executing-0.7.0.gh.tar.gz 452550 BLAKE2B 9b3bdb49b3b00ca17952db747d3f0f3995e8dffbc170bcb2260e7c34ce9e6b0c8e1620be2e2776445a6114add4e2437eaeae8a308391e2c121b6484b5bc6056c SHA512 08ee347f0bcaf04ca2c6010762a6d2d5b054b3590029c55d18d6efae5a5db7c6c5a0948cce9d9684e4bfbfd9ea19326e4ac2c96be40535c0500c28c28ce81e07
-DIST executing-0.8.0.gh.tar.gz 494306 BLAKE2B 37ce7c743380dcac85e6843e8ee708c8d876c5de883e49786da67d94dc9a7bf983bb36278a823ddb2bc9291e7219125cf870fac8c0c28979a4b49e951410d5e5 SHA512 6f88052f61479c5fe4aba1925e90f3daea3852f636c5c17d94a08dfa4de909fb3187650ff07c1dc66b4b3bec4a04cfdaf4cfe0c37903f67b2d716691d07a93d8
-DIST executing-0.8.1.gh.tar.gz 494735 BLAKE2B db57f01a6501b2c709140d806119a455db2294f410bb1602bbe96d3b45c4301b9517654fcdc00c31b6dcd3365476d29a944e38d340f82338ed1059f0a878753e SHA512 592035eeef74dc83fd72a08910e3cbacebe70f8206c55ba54661d8a11b7aee105de59487a957caf71799b0f3f5239e601a4de5d19553f33d21983c23a199c383
 DIST executing-0.8.2.gh.tar.gz 494836 BLAKE2B d6ade5658c8df656e80bb596f6c19493475d74ea10ddfc60b25eadb4a2f68d8afd2f437a6f82807932bba0469617fdac7a4dd90569623d1c8d7f96220e02ec9a SHA512 9a7fe4d3bae77d49725f35bae9d239bfb2a6e89d893d871d76f26fe4beffe0a07c6cbf50ea7b35b9ced66148d015c48106bc5774b26f201f9b40577f3380f5b3

diff --git a/dev-python/executing/executing-0.7.0.ebuild b/dev-python/executing/executing-0.7.0.ebuild
deleted file mode 100644
index 42bd4eaab9d..00000000000
--- a/dev-python/executing/executing-0.7.0.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 2020-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{8..9} )
-inherit distutils-r1
-
-DESCRIPTION="Get information about what a Python frame is currently doing"
-HOMEPAGE="
-	https://github.com/alexmojaki/executing/
-	https://pypi.org/project/executing/"
-SRC_URI="
-	https://github.com/alexmojaki/executing/archive/v${PV}.tar.gz
-		-> ${P}.gh.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 arm arm64 ~ppc ~ppc64 ~sparc x86"
-
-# asttokens is optional runtime dep
-BDEPEND="
-	dev-python/setuptools_scm[${PYTHON_USEDEP}]
-	dev-python/toml[${PYTHON_USEDEP}]
-	test? (
-		dev-python/asttokens[${PYTHON_USEDEP}]
-	)"
-
-distutils_enable_tests pytest
-
-export SETUPTOOLS_SCM_PRETEND_VERSION=${PV}
-
-python_test() {
-	# this test explodes when collected by pytest
-	"${EPYTHON}" tests/test_main.py || die "Tests failed with ${EPYTHON}"
-	epytest tests/test_pytest.py
-}

diff --git a/dev-python/executing/executing-0.8.0.ebuild b/dev-python/executing/executing-0.8.0.ebuild
deleted file mode 100644
index a5e893cb9f4..00000000000
--- a/dev-python/executing/executing-0.8.0.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 2020-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{8..10} )
-inherit distutils-r1
-
-DESCRIPTION="Get information about what a Python frame is currently doing"
-HOMEPAGE="
-	https://github.com/alexmojaki/executing/
-	https://pypi.org/project/executing/"
-SRC_URI="
-	https://github.com/alexmojaki/executing/archive/v${PV}.tar.gz
-		-> ${P}.gh.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 arm arm64 ~ppc ~ppc64 ~sparc x86"
-
-# asttokens is optional runtime dep
-BDEPEND="
-	dev-python/setuptools_scm[${PYTHON_USEDEP}]
-	dev-python/toml[${PYTHON_USEDEP}]
-	test? (
-		dev-python/asttokens[${PYTHON_USEDEP}]
-	)"
-
-distutils_enable_tests pytest
-
-export SETUPTOOLS_SCM_PRETEND_VERSION=${PV}
-
-python_test() {
-	# this test explodes when collected by pytest
-	"${EPYTHON}" tests/test_main.py || die "Tests failed with ${EPYTHON}"
-	epytest tests/test_pytest.py
-}

diff --git a/dev-python/executing/executing-0.8.1.ebuild b/dev-python/executing/executing-0.8.1.ebuild
deleted file mode 100644
index e01cf6c3100..00000000000
--- a/dev-python/executing/executing-0.8.1.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 2020-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{8..10} )
-inherit distutils-r1
-
-DESCRIPTION="Get information about what a Python frame is currently doing"
-HOMEPAGE="
-	https://github.com/alexmojaki/executing/
-	https://pypi.org/project/executing/"
-SRC_URI="
-	https://github.com/alexmojaki/executing/archive/v${PV}.tar.gz
-		-> ${P}.gh.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~sparc ~x86"
-
-# asttokens is optional runtime dep
-BDEPEND="
-	dev-python/setuptools_scm[${PYTHON_USEDEP}]
-	dev-python/toml[${PYTHON_USEDEP}]
-	test? (
-		dev-python/asttokens[${PYTHON_USEDEP}]
-	)"
-
-distutils_enable_tests pytest
-
-export SETUPTOOLS_SCM_PRETEND_VERSION=${PV}
-
-python_test() {
-	# this test explodes when collected by pytest
-	"${EPYTHON}" tests/test_main.py || die "Tests failed with ${EPYTHON}"
-	epytest tests/test_pytest.py
-}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/executing/
@ 2022-01-15  9:55 Arthur Zamarin
  0 siblings, 0 replies; 123+ messages in thread
From: Arthur Zamarin @ 2022-01-15  9:55 UTC (permalink / raw
  To: gentoo-commits

commit:     40676797e878f87fbb83a2dc0327ebc39f42549e
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat Jan 15 09:55:09 2022 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Jan 15 09:55:09 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=40676797

dev-python/executing: Keyword 0.8.2 ia64, #808378

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

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

diff --git a/dev-python/executing/executing-0.8.2.ebuild b/dev-python/executing/executing-0.8.2.ebuild
index a5e893cb9f44..be11f474872c 100644
--- a/dev-python/executing/executing-0.8.2.ebuild
+++ b/dev-python/executing/executing-0.8.2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2020-2021 Gentoo Authors
+# Copyright 2020-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -16,7 +16,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 arm arm64 ~ppc ~ppc64 ~sparc x86"
+KEYWORDS="amd64 arm arm64 ~ia64 ~ppc ~ppc64 ~sparc x86"
 
 # asttokens is optional runtime dep
 BDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/executing/
@ 2022-01-15 11:41 Yixun Lan
  0 siblings, 0 replies; 123+ messages in thread
From: Yixun Lan @ 2022-01-15 11:41 UTC (permalink / raw
  To: gentoo-commits

commit:     bede944adf38a89f0b59e377f53205695036014f
Author:     Alex Fan <alex.fan.q <AT> gmail <DOT> com>
AuthorDate: Fri Jan 14 09:10:29 2022 +0000
Commit:     Yixun Lan <dlan <AT> gentoo <DOT> org>
CommitDate: Sat Jan 15 11:39:29 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bede944a

dev-python/executing: keyword 0.8.2 for ~riscv #808378

Signed-off-by: Alex Fan <alex.fan.q <AT> gmail.com>
Signed-off-by: Yixun Lan <dlan <AT> gentoo.org>

 dev-python/executing/executing-0.8.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/executing/executing-0.8.2.ebuild b/dev-python/executing/executing-0.8.2.ebuild
index be11f474872c..1872a5d6ae6d 100644
--- a/dev-python/executing/executing-0.8.2.ebuild
+++ b/dev-python/executing/executing-0.8.2.ebuild
@@ -16,7 +16,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 arm arm64 ~ia64 ~ppc ~ppc64 ~sparc x86"
+KEYWORDS="amd64 arm arm64 ~ia64 ~ppc ~ppc64 ~riscv ~sparc x86"
 
 # asttokens is optional runtime dep
 BDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/executing/
@ 2022-01-21 12:25 Sam James
  0 siblings, 0 replies; 123+ messages in thread
From: Sam James @ 2022-01-21 12:25 UTC (permalink / raw
  To: gentoo-commits

commit:     5f7ab96fdb143b40f351b4a8ee6aad1d6ab805a4
Author:     Rolf Eike Beer <eike <AT> sf-mail <DOT> de>
AuthorDate: Thu Jan 20 17:26:55 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Jan 21 12:25:14 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5f7ab96f

dev-python/executing: keyword 0.8.2 for hppa, bug #808378

Package-Manager: Portage-3.0.28, Repoman-3.0.3
RepoMan-Options: --include-arches="hppa"
Signed-off-by: Rolf Eike Beer <eike <AT> sf-mail.de>
Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-python/executing/executing-0.8.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/executing/executing-0.8.2.ebuild b/dev-python/executing/executing-0.8.2.ebuild
index 1872a5d6ae6d..ab13f9f81f06 100644
--- a/dev-python/executing/executing-0.8.2.ebuild
+++ b/dev-python/executing/executing-0.8.2.ebuild
@@ -16,7 +16,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 arm arm64 ~ia64 ~ppc ~ppc64 ~riscv ~sparc x86"
+KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~sparc x86"
 
 # asttokens is optional runtime dep
 BDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/executing/
@ 2022-02-04 12:04 Michał Górny
  0 siblings, 0 replies; 123+ messages in thread
From: Michał Górny @ 2022-02-04 12:04 UTC (permalink / raw
  To: gentoo-commits

commit:     7f975303e71d208713dd4d38f197138cdb17ffb1
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Fri Feb  4 11:57:53 2022 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri Feb  4 12:03:56 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7f975303

dev-python/executing: Remove obsolete toml dep (from setuptools_scm)

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/executing/executing-0.8.2.ebuild | 1 -
 1 file changed, 1 deletion(-)

diff --git a/dev-python/executing/executing-0.8.2.ebuild b/dev-python/executing/executing-0.8.2.ebuild
index ab13f9f81f06..0be0c496ccd9 100644
--- a/dev-python/executing/executing-0.8.2.ebuild
+++ b/dev-python/executing/executing-0.8.2.ebuild
@@ -21,7 +21,6 @@ KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~sparc x86"
 # asttokens is optional runtime dep
 BDEPEND="
 	dev-python/setuptools_scm[${PYTHON_USEDEP}]
-	dev-python/toml[${PYTHON_USEDEP}]
 	test? (
 		dev-python/asttokens[${PYTHON_USEDEP}]
 	)"


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/executing/
@ 2022-02-28  8:28 Michał Górny
  0 siblings, 0 replies; 123+ messages in thread
From: Michał Górny @ 2022-02-28  8:28 UTC (permalink / raw
  To: gentoo-commits

commit:     10668cbc13fa7b5764cf682b9bbaccb04cd253e6
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Mon Feb 28 07:26:16 2022 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Mon Feb 28 08:28:28 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=10668cbc

dev-python/executing: Bump to 0.8.3

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/executing/Manifest               |  1 +
 dev-python/executing/executing-0.8.3.ebuild | 42 +++++++++++++++++++++++++++++
 2 files changed, 43 insertions(+)

diff --git a/dev-python/executing/Manifest b/dev-python/executing/Manifest
index a39b3b6667a3..9a40d6031446 100644
--- a/dev-python/executing/Manifest
+++ b/dev-python/executing/Manifest
@@ -1 +1,2 @@
 DIST executing-0.8.2.gh.tar.gz 494836 BLAKE2B d6ade5658c8df656e80bb596f6c19493475d74ea10ddfc60b25eadb4a2f68d8afd2f437a6f82807932bba0469617fdac7a4dd90569623d1c8d7f96220e02ec9a SHA512 9a7fe4d3bae77d49725f35bae9d239bfb2a6e89d893d871d76f26fe4beffe0a07c6cbf50ea7b35b9ced66148d015c48106bc5774b26f201f9b40577f3380f5b3
+DIST executing-0.8.3.gh.tar.gz 495111 BLAKE2B ccb1a7df974f94b48960fc84a8365f6e57a7f34590972192e692f03340662e2bde97498c2ebf5617e45d8dfb6e866fd7de290644adb58e5338b2e0fdccc215f1 SHA512 4e01c1f48734c9568412b84160150e7e50ebdf5ba3dd466cf9d37b7f875ca2993915db75e2f6dd8e75e60b7b952fb0146928a41dde100ad38384b9be2ed60522

diff --git a/dev-python/executing/executing-0.8.3.ebuild b/dev-python/executing/executing-0.8.3.ebuild
new file mode 100644
index 000000000000..082c1bb1c0c6
--- /dev/null
+++ b/dev-python/executing/executing-0.8.3.ebuild
@@ -0,0 +1,42 @@
+# Copyright 2020-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..10} )
+
+inherit distutils-r1
+
+DESCRIPTION="Get information about what a Python frame is currently doing"
+HOMEPAGE="
+	https://github.com/alexmojaki/executing/
+	https://pypi.org/project/executing/
+"
+SRC_URI="
+	https://github.com/alexmojaki/executing/archive/v${PV}.tar.gz
+		-> ${P}.gh.tar.gz
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~riscv ~sparc"
+
+# asttokens is optional runtime dep
+BDEPEND="
+	dev-python/setuptools_scm[${PYTHON_USEDEP}]
+	test? (
+		dev-python/asttokens[${PYTHON_USEDEP}]
+		dev-python/littleutils[${PYTHON_USEDEP}]
+	)
+"
+
+distutils_enable_tests pytest
+
+export SETUPTOOLS_SCM_PRETEND_VERSION=${PV}
+
+python_test() {
+	# this test explodes when collected by pytest
+	"${EPYTHON}" tests/test_main.py || die "Tests failed with ${EPYTHON}"
+	epytest tests/test_pytest.py
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/executing/
@ 2022-03-15 18:16 Jakov Smolić
  0 siblings, 0 replies; 123+ messages in thread
From: Jakov Smolić @ 2022-03-15 18:16 UTC (permalink / raw
  To: gentoo-commits

commit:     46fe59ad750fa11fe8f65c47b6897ef19e529364
Author:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Tue Mar 15 18:16:30 2022 +0000
Commit:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Tue Mar 15 18:16:30 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=46fe59ad

dev-python/executing: Stabilize 0.8.3 arm64, #835214

Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>

 dev-python/executing/executing-0.8.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/executing/executing-0.8.3.ebuild b/dev-python/executing/executing-0.8.3.ebuild
index 082c1bb1c0c6..a5335e5b470b 100644
--- a/dev-python/executing/executing-0.8.3.ebuild
+++ b/dev-python/executing/executing-0.8.3.ebuild
@@ -20,7 +20,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~riscv ~sparc"
+KEYWORDS="~amd64 ~arm arm64 ~hppa ~ia64 ~riscv ~sparc"
 
 # asttokens is optional runtime dep
 BDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/executing/
@ 2022-03-18  9:00 Arthur Zamarin
  0 siblings, 0 replies; 123+ messages in thread
From: Arthur Zamarin @ 2022-03-18  9:00 UTC (permalink / raw
  To: gentoo-commits

commit:     8eba2f51e6c5ac1b422b518879253a105b9733a0
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Mar 18 08:59:56 2022 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Mar 18 08:59:56 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8eba2f51

dev-python/executing: Stabilize 0.8.3 arm, #835214

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 dev-python/executing/executing-0.8.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/executing/executing-0.8.3.ebuild b/dev-python/executing/executing-0.8.3.ebuild
index a5335e5b470b..add8905b8d60 100644
--- a/dev-python/executing/executing-0.8.3.ebuild
+++ b/dev-python/executing/executing-0.8.3.ebuild
@@ -20,7 +20,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm arm64 ~hppa ~ia64 ~riscv ~sparc"
+KEYWORDS="~amd64 arm arm64 ~hppa ~ia64 ~riscv ~sparc"
 
 # asttokens is optional runtime dep
 BDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/executing/
@ 2022-03-18  9:16 Arthur Zamarin
  0 siblings, 0 replies; 123+ messages in thread
From: Arthur Zamarin @ 2022-03-18  9:16 UTC (permalink / raw
  To: gentoo-commits

commit:     717de711a02cd2fcc03391eee313ad8db7150b17
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Mar 18 09:15:53 2022 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Mar 18 09:15:53 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=717de711

dev-python/executing: Stabilize 0.8.3 sparc, #835214

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 dev-python/executing/executing-0.8.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/executing/executing-0.8.3.ebuild b/dev-python/executing/executing-0.8.3.ebuild
index add8905b8d60..8bc112d0e114 100644
--- a/dev-python/executing/executing-0.8.3.ebuild
+++ b/dev-python/executing/executing-0.8.3.ebuild
@@ -20,7 +20,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 arm arm64 ~hppa ~ia64 ~riscv ~sparc"
+KEYWORDS="~amd64 arm arm64 ~hppa ~ia64 ~riscv sparc"
 
 # asttokens is optional runtime dep
 BDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/executing/
@ 2022-03-19 18:47 Arthur Zamarin
  0 siblings, 0 replies; 123+ messages in thread
From: Arthur Zamarin @ 2022-03-19 18:47 UTC (permalink / raw
  To: gentoo-commits

commit:     f21e6a0c8795865f1d6531415e6fe6af361e2b59
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 19 18:47:29 2022 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Mar 19 18:47:29 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f21e6a0c

dev-python/executing: Keyword 0.8.3 x86, #808378

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 dev-python/executing/executing-0.8.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/executing/executing-0.8.3.ebuild b/dev-python/executing/executing-0.8.3.ebuild
index 8bc112d0e114..3a1223925aa7 100644
--- a/dev-python/executing/executing-0.8.3.ebuild
+++ b/dev-python/executing/executing-0.8.3.ebuild
@@ -20,7 +20,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 arm arm64 ~hppa ~ia64 ~riscv sparc"
+KEYWORDS="~amd64 arm arm64 ~hppa ~ia64 ~riscv sparc ~x86"
 
 # asttokens is optional runtime dep
 BDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/executing/
@ 2022-03-19 18:49 Arthur Zamarin
  0 siblings, 0 replies; 123+ messages in thread
From: Arthur Zamarin @ 2022-03-19 18:49 UTC (permalink / raw
  To: gentoo-commits

commit:     abb4cadcfe4a7475e52147896943e15a9abb71c5
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 19 18:48:45 2022 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Mar 19 18:48:45 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=abb4cadc

dev-python/executing: Keyword 0.8.3 ppc64, #808378

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 dev-python/executing/executing-0.8.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/executing/executing-0.8.3.ebuild b/dev-python/executing/executing-0.8.3.ebuild
index a72fef0d1b67..9ac690c815ad 100644
--- a/dev-python/executing/executing-0.8.3.ebuild
+++ b/dev-python/executing/executing-0.8.3.ebuild
@@ -20,7 +20,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 arm arm64 ~hppa ~ia64 ~ppc ~riscv sparc ~x86"
+KEYWORDS="~amd64 arm arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv sparc ~x86"
 
 # asttokens is optional runtime dep
 BDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/executing/
@ 2022-03-19 18:49 Arthur Zamarin
  0 siblings, 0 replies; 123+ messages in thread
From: Arthur Zamarin @ 2022-03-19 18:49 UTC (permalink / raw
  To: gentoo-commits

commit:     9d55403a5ea936f0d5be419b6eebca46eb5715b8
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 19 18:48:39 2022 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Mar 19 18:48:39 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9d55403a

dev-python/executing: Keyword 0.8.3 ppc, #808378

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 dev-python/executing/executing-0.8.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/executing/executing-0.8.3.ebuild b/dev-python/executing/executing-0.8.3.ebuild
index 3a1223925aa7..a72fef0d1b67 100644
--- a/dev-python/executing/executing-0.8.3.ebuild
+++ b/dev-python/executing/executing-0.8.3.ebuild
@@ -20,7 +20,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 arm arm64 ~hppa ~ia64 ~riscv sparc ~x86"
+KEYWORDS="~amd64 arm arm64 ~hppa ~ia64 ~ppc ~riscv sparc ~x86"
 
 # asttokens is optional runtime dep
 BDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/executing/
@ 2022-03-20 18:11 Arthur Zamarin
  0 siblings, 0 replies; 123+ messages in thread
From: Arthur Zamarin @ 2022-03-20 18:11 UTC (permalink / raw
  To: gentoo-commits

commit:     8e0a0b57a0a4b80fc382882799f79cfd86be1459
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sun Mar 20 18:11:19 2022 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sun Mar 20 18:11:19 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8e0a0b57

dev-python/executing: Stabilize 0.8.3 hppa, #835214

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 dev-python/executing/executing-0.8.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/executing/executing-0.8.3.ebuild b/dev-python/executing/executing-0.8.3.ebuild
index 9ac690c815ad..ad1dedd314c4 100644
--- a/dev-python/executing/executing-0.8.3.ebuild
+++ b/dev-python/executing/executing-0.8.3.ebuild
@@ -20,7 +20,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 arm arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv sparc ~x86"
+KEYWORDS="~amd64 arm arm64 hppa ~ia64 ~ppc ~ppc64 ~riscv sparc ~x86"
 
 # asttokens is optional runtime dep
 BDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/executing/
@ 2022-05-02 19:03 Sam James
  0 siblings, 0 replies; 123+ messages in thread
From: Sam James @ 2022-05-02 19:03 UTC (permalink / raw
  To: gentoo-commits

commit:     76c38c69236bf410bd530fecc189fd194c075d2e
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon May  2 19:02:53 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon May  2 19:02:53 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=76c38c69

dev-python/executing: Stabilize 0.8.3 amd64, #841901

Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-python/executing/executing-0.8.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/executing/executing-0.8.3.ebuild b/dev-python/executing/executing-0.8.3.ebuild
index ad1dedd314c4..56f08067e566 100644
--- a/dev-python/executing/executing-0.8.3.ebuild
+++ b/dev-python/executing/executing-0.8.3.ebuild
@@ -20,7 +20,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 arm arm64 hppa ~ia64 ~ppc ~ppc64 ~riscv sparc ~x86"
+KEYWORDS="amd64 arm arm64 hppa ~ia64 ~ppc ~ppc64 ~riscv sparc ~x86"
 
 # asttokens is optional runtime dep
 BDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/executing/
@ 2022-05-05  5:29 Arthur Zamarin
  0 siblings, 0 replies; 123+ messages in thread
From: Arthur Zamarin @ 2022-05-05  5:29 UTC (permalink / raw
  To: gentoo-commits

commit:     464aea27ab1f52b1704ecc615f719445ac7cc8be
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Thu May  5 05:28:41 2022 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Thu May  5 05:28:41 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=464aea27

dev-python/executing: Stabilize 0.8.3 ppc64, #841901

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 dev-python/executing/executing-0.8.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/executing/executing-0.8.3.ebuild b/dev-python/executing/executing-0.8.3.ebuild
index 56f08067e566..3374a615c877 100644
--- a/dev-python/executing/executing-0.8.3.ebuild
+++ b/dev-python/executing/executing-0.8.3.ebuild
@@ -20,7 +20,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 arm arm64 hppa ~ia64 ~ppc ~ppc64 ~riscv sparc ~x86"
+KEYWORDS="amd64 arm arm64 hppa ~ia64 ~ppc ppc64 ~riscv sparc ~x86"
 
 # asttokens is optional runtime dep
 BDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/executing/
@ 2022-05-07 17:52 Arthur Zamarin
  0 siblings, 0 replies; 123+ messages in thread
From: Arthur Zamarin @ 2022-05-07 17:52 UTC (permalink / raw
  To: gentoo-commits

commit:     37c2d7d64f5530eee0306f53fa51ad0bd7745d80
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat May  7 17:52:01 2022 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat May  7 17:52:01 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=37c2d7d6

dev-python/executing: Stabilize 0.8.3 ppc, #841901

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 dev-python/executing/executing-0.8.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/executing/executing-0.8.3.ebuild b/dev-python/executing/executing-0.8.3.ebuild
index 3374a615c877..f26766f14c1e 100644
--- a/dev-python/executing/executing-0.8.3.ebuild
+++ b/dev-python/executing/executing-0.8.3.ebuild
@@ -20,7 +20,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 arm arm64 hppa ~ia64 ~ppc ppc64 ~riscv sparc ~x86"
+KEYWORDS="amd64 arm arm64 hppa ~ia64 ppc ppc64 ~riscv sparc ~x86"
 
 # asttokens is optional runtime dep
 BDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/executing/
@ 2022-05-07 17:52 Arthur Zamarin
  0 siblings, 0 replies; 123+ messages in thread
From: Arthur Zamarin @ 2022-05-07 17:52 UTC (permalink / raw
  To: gentoo-commits

commit:     4c1224d26a821bd43e2cf3af58ad47e7baa604fb
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat May  7 17:52:15 2022 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat May  7 17:52:15 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4c1224d2

dev-python/executing: Stabilize 0.8.3 x86, #841901

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 dev-python/executing/executing-0.8.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/executing/executing-0.8.3.ebuild b/dev-python/executing/executing-0.8.3.ebuild
index f26766f14c1e..7c4bf250ea16 100644
--- a/dev-python/executing/executing-0.8.3.ebuild
+++ b/dev-python/executing/executing-0.8.3.ebuild
@@ -20,7 +20,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 arm arm64 hppa ~ia64 ppc ppc64 ~riscv sparc ~x86"
+KEYWORDS="amd64 arm arm64 hppa ~ia64 ppc ppc64 ~riscv sparc x86"
 
 # asttokens is optional runtime dep
 BDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/executing/
@ 2022-05-08  4:08 Sam James
  0 siblings, 0 replies; 123+ messages in thread
From: Sam James @ 2022-05-08  4:08 UTC (permalink / raw
  To: gentoo-commits

commit:     81eecb753a16f6f38af35541dd81d7c4c6feda2a
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun May  8 04:08:02 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun May  8 04:08:02 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=81eecb75

dev-python/executing: Keyword 0.8.3 s390, #843191

Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-python/executing/executing-0.8.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/executing/executing-0.8.3.ebuild b/dev-python/executing/executing-0.8.3.ebuild
index 7c4bf250ea16..471d3466d941 100644
--- a/dev-python/executing/executing-0.8.3.ebuild
+++ b/dev-python/executing/executing-0.8.3.ebuild
@@ -20,7 +20,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 arm arm64 hppa ~ia64 ppc ppc64 ~riscv sparc x86"
+KEYWORDS="amd64 arm arm64 hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc x86"
 
 # asttokens is optional runtime dep
 BDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/executing/
@ 2022-05-08  8:47 Michał Górny
  0 siblings, 0 replies; 123+ messages in thread
From: Michał Górny @ 2022-05-08  8:47 UTC (permalink / raw
  To: gentoo-commits

commit:     81aef4c97301b04dd4f47dbe56d531af4b4dd0cc
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sun May  8 07:11:37 2022 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun May  8 08:47:07 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=81aef4c9

dev-python/executing: Remove old

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/executing/Manifest               |  1 -
 dev-python/executing/executing-0.8.2.ebuild | 36 -----------------------------
 2 files changed, 37 deletions(-)

diff --git a/dev-python/executing/Manifest b/dev-python/executing/Manifest
index 9a40d6031446..dc2ebe0f8a92 100644
--- a/dev-python/executing/Manifest
+++ b/dev-python/executing/Manifest
@@ -1,2 +1 @@
-DIST executing-0.8.2.gh.tar.gz 494836 BLAKE2B d6ade5658c8df656e80bb596f6c19493475d74ea10ddfc60b25eadb4a2f68d8afd2f437a6f82807932bba0469617fdac7a4dd90569623d1c8d7f96220e02ec9a SHA512 9a7fe4d3bae77d49725f35bae9d239bfb2a6e89d893d871d76f26fe4beffe0a07c6cbf50ea7b35b9ced66148d015c48106bc5774b26f201f9b40577f3380f5b3
 DIST executing-0.8.3.gh.tar.gz 495111 BLAKE2B ccb1a7df974f94b48960fc84a8365f6e57a7f34590972192e692f03340662e2bde97498c2ebf5617e45d8dfb6e866fd7de290644adb58e5338b2e0fdccc215f1 SHA512 4e01c1f48734c9568412b84160150e7e50ebdf5ba3dd466cf9d37b7f875ca2993915db75e2f6dd8e75e60b7b952fb0146928a41dde100ad38384b9be2ed60522

diff --git a/dev-python/executing/executing-0.8.2.ebuild b/dev-python/executing/executing-0.8.2.ebuild
deleted file mode 100644
index 0be0c496ccd9..000000000000
--- a/dev-python/executing/executing-0.8.2.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 2020-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{8..10} )
-inherit distutils-r1
-
-DESCRIPTION="Get information about what a Python frame is currently doing"
-HOMEPAGE="
-	https://github.com/alexmojaki/executing/
-	https://pypi.org/project/executing/"
-SRC_URI="
-	https://github.com/alexmojaki/executing/archive/v${PV}.tar.gz
-		-> ${P}.gh.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~sparc x86"
-
-# asttokens is optional runtime dep
-BDEPEND="
-	dev-python/setuptools_scm[${PYTHON_USEDEP}]
-	test? (
-		dev-python/asttokens[${PYTHON_USEDEP}]
-	)"
-
-distutils_enable_tests pytest
-
-export SETUPTOOLS_SCM_PRETEND_VERSION=${PV}
-
-python_test() {
-	# this test explodes when collected by pytest
-	"${EPYTHON}" tests/test_main.py || die "Tests failed with ${EPYTHON}"
-	epytest tests/test_pytest.py
-}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/executing/
@ 2022-07-25  7:12 Michał Górny
  0 siblings, 0 replies; 123+ messages in thread
From: Michał Górny @ 2022-07-25  7:12 UTC (permalink / raw
  To: gentoo-commits

commit:     705aeabc66a0e15057080c943a2bf36b73e9ef05
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Mon Jul 25 05:43:52 2022 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Mon Jul 25 07:12:16 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=705aeabc

dev-python/executing: Bump to 0.9.0

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/executing/Manifest               |  1 +
 dev-python/executing/executing-0.9.0.ebuild | 42 +++++++++++++++++++++++++++++
 2 files changed, 43 insertions(+)

diff --git a/dev-python/executing/Manifest b/dev-python/executing/Manifest
index dc2ebe0f8a92..36e284379a1a 100644
--- a/dev-python/executing/Manifest
+++ b/dev-python/executing/Manifest
@@ -1 +1,2 @@
 DIST executing-0.8.3.gh.tar.gz 495111 BLAKE2B ccb1a7df974f94b48960fc84a8365f6e57a7f34590972192e692f03340662e2bde97498c2ebf5617e45d8dfb6e866fd7de290644adb58e5338b2e0fdccc215f1 SHA512 4e01c1f48734c9568412b84160150e7e50ebdf5ba3dd466cf9d37b7f875ca2993915db75e2f6dd8e75e60b7b952fb0146928a41dde100ad38384b9be2ed60522
+DIST executing-0.9.0.gh.tar.gz 506632 BLAKE2B 195e6dc896bcb0add7377ba7fbfdaaf09322a5480127150a3c37eef94f57d24dfcc3c83c5a0dd7c9154c5bb7688f47754550d45adafb82d72a4b0c38d094dd50 SHA512 461a8350d55ab0346de35d7d8423164b616e2ec8152d229e3462208497b478e51fd75085dc11f7d3cace42a82d4c2cbd1b102a680aa6c2b31fa18f1f9ec69cdc

diff --git a/dev-python/executing/executing-0.9.0.ebuild b/dev-python/executing/executing-0.9.0.ebuild
new file mode 100644
index 000000000000..43f1dbdd67f3
--- /dev/null
+++ b/dev-python/executing/executing-0.9.0.ebuild
@@ -0,0 +1,42 @@
+# Copyright 2020-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..10} )
+
+inherit distutils-r1
+
+DESCRIPTION="Get information about what a Python frame is currently doing"
+HOMEPAGE="
+	https://github.com/alexmojaki/executing/
+	https://pypi.org/project/executing/
+"
+SRC_URI="
+	https://github.com/alexmojaki/executing/archive/v${PV}.tar.gz
+		-> ${P}.gh.tar.gz
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
+
+# asttokens is optional runtime dep
+BDEPEND="
+	dev-python/setuptools_scm[${PYTHON_USEDEP}]
+	test? (
+		dev-python/asttokens[${PYTHON_USEDEP}]
+		dev-python/littleutils[${PYTHON_USEDEP}]
+	)
+"
+
+distutils_enable_tests pytest
+
+export SETUPTOOLS_SCM_PRETEND_VERSION=${PV}
+
+python_test() {
+	# this test explodes when collected by pytest
+	"${EPYTHON}" tests/test_main.py || die "Tests failed with ${EPYTHON}"
+	epytest tests/test_pytest.py
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/executing/
@ 2022-07-29 10:12 Arthur Zamarin
  0 siblings, 0 replies; 123+ messages in thread
From: Arthur Zamarin @ 2022-07-29 10:12 UTC (permalink / raw
  To: gentoo-commits

commit:     df2cb6e52d58bc94a5600a0ff472a342d6346bb8
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Jul 29 09:20:30 2022 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Jul 29 10:12:02 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=df2cb6e5

dev-python/executing: add 0.9.1

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 dev-python/executing/Manifest               |  1 +
 dev-python/executing/executing-0.9.1.ebuild | 42 +++++++++++++++++++++++++++++
 2 files changed, 43 insertions(+)

diff --git a/dev-python/executing/Manifest b/dev-python/executing/Manifest
index 36e284379a1a..1af86a9bd601 100644
--- a/dev-python/executing/Manifest
+++ b/dev-python/executing/Manifest
@@ -1,2 +1,3 @@
 DIST executing-0.8.3.gh.tar.gz 495111 BLAKE2B ccb1a7df974f94b48960fc84a8365f6e57a7f34590972192e692f03340662e2bde97498c2ebf5617e45d8dfb6e866fd7de290644adb58e5338b2e0fdccc215f1 SHA512 4e01c1f48734c9568412b84160150e7e50ebdf5ba3dd466cf9d37b7f875ca2993915db75e2f6dd8e75e60b7b952fb0146928a41dde100ad38384b9be2ed60522
 DIST executing-0.9.0.gh.tar.gz 506632 BLAKE2B 195e6dc896bcb0add7377ba7fbfdaaf09322a5480127150a3c37eef94f57d24dfcc3c83c5a0dd7c9154c5bb7688f47754550d45adafb82d72a4b0c38d094dd50 SHA512 461a8350d55ab0346de35d7d8423164b616e2ec8152d229e3462208497b478e51fd75085dc11f7d3cace42a82d4c2cbd1b102a680aa6c2b31fa18f1f9ec69cdc
+DIST executing-0.9.1.gh.tar.gz 506644 BLAKE2B 04d7012a348186c44c892d9f442b33042a9e01951c47b1d9a42ca22195dc7fa0b8f17ebf552ca65e9aa038942a6962941aeafee2d15bdcef834d413d5512c910 SHA512 98ba2f155324e05ae927d0a97ec6ff54bcfd8d38551dde872f12aedfefc2297003b50d17e6e32e89a909a9b1e70cec9d474db03d6a4f9fb1814ebcca045bb982

diff --git a/dev-python/executing/executing-0.9.1.ebuild b/dev-python/executing/executing-0.9.1.ebuild
new file mode 100644
index 000000000000..43f1dbdd67f3
--- /dev/null
+++ b/dev-python/executing/executing-0.9.1.ebuild
@@ -0,0 +1,42 @@
+# Copyright 2020-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..10} )
+
+inherit distutils-r1
+
+DESCRIPTION="Get information about what a Python frame is currently doing"
+HOMEPAGE="
+	https://github.com/alexmojaki/executing/
+	https://pypi.org/project/executing/
+"
+SRC_URI="
+	https://github.com/alexmojaki/executing/archive/v${PV}.tar.gz
+		-> ${P}.gh.tar.gz
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
+
+# asttokens is optional runtime dep
+BDEPEND="
+	dev-python/setuptools_scm[${PYTHON_USEDEP}]
+	test? (
+		dev-python/asttokens[${PYTHON_USEDEP}]
+		dev-python/littleutils[${PYTHON_USEDEP}]
+	)
+"
+
+distutils_enable_tests pytest
+
+export SETUPTOOLS_SCM_PRETEND_VERSION=${PV}
+
+python_test() {
+	# this test explodes when collected by pytest
+	"${EPYTHON}" tests/test_main.py || die "Tests failed with ${EPYTHON}"
+	epytest tests/test_pytest.py
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/executing/
@ 2022-08-13 20:09 Arthur Zamarin
  0 siblings, 0 replies; 123+ messages in thread
From: Arthur Zamarin @ 2022-08-13 20:09 UTC (permalink / raw
  To: gentoo-commits

commit:     f85adfff8509d1999ee58e9bfd9d5e4cc465f3fe
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat Aug 13 19:43:07 2022 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Aug 13 19:43:07 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f85adfff

dev-python/executing: add 0.10.0

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 dev-python/executing/Manifest                |  1 +
 dev-python/executing/executing-0.10.0.ebuild | 42 ++++++++++++++++++++++++++++
 2 files changed, 43 insertions(+)

diff --git a/dev-python/executing/Manifest b/dev-python/executing/Manifest
index 1af86a9bd601..54569ae5c2b3 100644
--- a/dev-python/executing/Manifest
+++ b/dev-python/executing/Manifest
@@ -1,3 +1,4 @@
+DIST executing-0.10.0.gh.tar.gz 507523 BLAKE2B 5ab17adb1d40b83b0cf294aba350faf124a810b4c95e408e9bd2ba80d918154cb41d8b4d4748cd7d897d47e085883a30f431dedd595b00506beb5038e084f473 SHA512 f1ee25679cd1f88f273ee68e8e926a6e98b749a50d063ea3aa73f35ac0d7ea65b13364269f01265f164dba1d775a742cd7cf3594558e06efb39fb1157b3b9f5c
 DIST executing-0.8.3.gh.tar.gz 495111 BLAKE2B ccb1a7df974f94b48960fc84a8365f6e57a7f34590972192e692f03340662e2bde97498c2ebf5617e45d8dfb6e866fd7de290644adb58e5338b2e0fdccc215f1 SHA512 4e01c1f48734c9568412b84160150e7e50ebdf5ba3dd466cf9d37b7f875ca2993915db75e2f6dd8e75e60b7b952fb0146928a41dde100ad38384b9be2ed60522
 DIST executing-0.9.0.gh.tar.gz 506632 BLAKE2B 195e6dc896bcb0add7377ba7fbfdaaf09322a5480127150a3c37eef94f57d24dfcc3c83c5a0dd7c9154c5bb7688f47754550d45adafb82d72a4b0c38d094dd50 SHA512 461a8350d55ab0346de35d7d8423164b616e2ec8152d229e3462208497b478e51fd75085dc11f7d3cace42a82d4c2cbd1b102a680aa6c2b31fa18f1f9ec69cdc
 DIST executing-0.9.1.gh.tar.gz 506644 BLAKE2B 04d7012a348186c44c892d9f442b33042a9e01951c47b1d9a42ca22195dc7fa0b8f17ebf552ca65e9aa038942a6962941aeafee2d15bdcef834d413d5512c910 SHA512 98ba2f155324e05ae927d0a97ec6ff54bcfd8d38551dde872f12aedfefc2297003b50d17e6e32e89a909a9b1e70cec9d474db03d6a4f9fb1814ebcca045bb982

diff --git a/dev-python/executing/executing-0.10.0.ebuild b/dev-python/executing/executing-0.10.0.ebuild
new file mode 100644
index 000000000000..43f1dbdd67f3
--- /dev/null
+++ b/dev-python/executing/executing-0.10.0.ebuild
@@ -0,0 +1,42 @@
+# Copyright 2020-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..10} )
+
+inherit distutils-r1
+
+DESCRIPTION="Get information about what a Python frame is currently doing"
+HOMEPAGE="
+	https://github.com/alexmojaki/executing/
+	https://pypi.org/project/executing/
+"
+SRC_URI="
+	https://github.com/alexmojaki/executing/archive/v${PV}.tar.gz
+		-> ${P}.gh.tar.gz
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
+
+# asttokens is optional runtime dep
+BDEPEND="
+	dev-python/setuptools_scm[${PYTHON_USEDEP}]
+	test? (
+		dev-python/asttokens[${PYTHON_USEDEP}]
+		dev-python/littleutils[${PYTHON_USEDEP}]
+	)
+"
+
+distutils_enable_tests pytest
+
+export SETUPTOOLS_SCM_PRETEND_VERSION=${PV}
+
+python_test() {
+	# this test explodes when collected by pytest
+	"${EPYTHON}" tests/test_main.py || die "Tests failed with ${EPYTHON}"
+	epytest tests/test_pytest.py
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/executing/
@ 2022-08-26 17:26 Arthur Zamarin
  0 siblings, 0 replies; 123+ messages in thread
From: Arthur Zamarin @ 2022-08-26 17:26 UTC (permalink / raw
  To: gentoo-commits

commit:     fff762dd4f50de924fdcf2f434bdd992c23599a9
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Aug 26 17:26:37 2022 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Aug 26 17:26:37 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fff762dd

dev-python/executing: Stabilize 0.9.1 sparc, #866785

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 dev-python/executing/executing-0.9.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/executing/executing-0.9.1.ebuild b/dev-python/executing/executing-0.9.1.ebuild
index 43f1dbdd67f3..79bf9ed66696 100644
--- a/dev-python/executing/executing-0.9.1.ebuild
+++ b/dev-python/executing/executing-0.9.1.ebuild
@@ -20,7 +20,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 sparc ~x86"
 
 # asttokens is optional runtime dep
 BDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/executing/
@ 2022-08-26 17:46 Arthur Zamarin
  0 siblings, 0 replies; 123+ messages in thread
From: Arthur Zamarin @ 2022-08-26 17:46 UTC (permalink / raw
  To: gentoo-commits

commit:     3df07abef1a3de25f848660da99d8b7b409aff14
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Aug 26 17:45:59 2022 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Aug 26 17:45:59 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3df07abe

dev-python/executing: Stabilize 0.9.1 arm, #866785

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 dev-python/executing/executing-0.9.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/executing/executing-0.9.1.ebuild b/dev-python/executing/executing-0.9.1.ebuild
index 79bf9ed66696..7b90e9d6f119 100644
--- a/dev-python/executing/executing-0.9.1.ebuild
+++ b/dev-python/executing/executing-0.9.1.ebuild
@@ -20,7 +20,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 sparc ~x86"
+KEYWORDS="~amd64 arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 sparc ~x86"
 
 # asttokens is optional runtime dep
 BDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/executing/
@ 2022-08-26 18:12 Arthur Zamarin
  0 siblings, 0 replies; 123+ messages in thread
From: Arthur Zamarin @ 2022-08-26 18:12 UTC (permalink / raw
  To: gentoo-commits

commit:     712dc9f77c621d5747bcd7d7c5487cfa25703870
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Aug 26 18:12:08 2022 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Aug 26 18:12:08 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=712dc9f7

dev-python/executing: Stabilize 0.9.1 ppc, #866785

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 dev-python/executing/executing-0.9.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/executing/executing-0.9.1.ebuild b/dev-python/executing/executing-0.9.1.ebuild
index 4e7e7a05c8a9..e242880fd9b6 100644
--- a/dev-python/executing/executing-0.9.1.ebuild
+++ b/dev-python/executing/executing-0.9.1.ebuild
@@ -20,7 +20,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 arm ~arm64 ~hppa ~ia64 ~ppc ppc64 ~riscv ~s390 sparc ~x86"
+KEYWORDS="~amd64 arm ~arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc ~x86"
 
 # asttokens is optional runtime dep
 BDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/executing/
@ 2022-08-26 18:12 Arthur Zamarin
  0 siblings, 0 replies; 123+ messages in thread
From: Arthur Zamarin @ 2022-08-26 18:12 UTC (permalink / raw
  To: gentoo-commits

commit:     0b09a558662a5d99719fceced947c60915d60c16
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Aug 26 18:12:07 2022 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Aug 26 18:12:07 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0b09a558

dev-python/executing: Stabilize 0.9.1 ppc64, #866785

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 dev-python/executing/executing-0.9.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/executing/executing-0.9.1.ebuild b/dev-python/executing/executing-0.9.1.ebuild
index 7b90e9d6f119..4e7e7a05c8a9 100644
--- a/dev-python/executing/executing-0.9.1.ebuild
+++ b/dev-python/executing/executing-0.9.1.ebuild
@@ -20,7 +20,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 sparc ~x86"
+KEYWORDS="~amd64 arm ~arm64 ~hppa ~ia64 ~ppc ppc64 ~riscv ~s390 sparc ~x86"
 
 # asttokens is optional runtime dep
 BDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/executing/
@ 2022-08-26 18:37 Arthur Zamarin
  0 siblings, 0 replies; 123+ messages in thread
From: Arthur Zamarin @ 2022-08-26 18:37 UTC (permalink / raw
  To: gentoo-commits

commit:     f79c8d84abc87db7e9d891ae934d14f6cbbde100
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Aug 26 18:37:42 2022 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Aug 26 18:37:42 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f79c8d84

dev-python/executing: Stabilize 0.9.1 hppa, #866785

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 dev-python/executing/executing-0.9.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/executing/executing-0.9.1.ebuild b/dev-python/executing/executing-0.9.1.ebuild
index e242880fd9b6..46585b1ab2a6 100644
--- a/dev-python/executing/executing-0.9.1.ebuild
+++ b/dev-python/executing/executing-0.9.1.ebuild
@@ -20,7 +20,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 arm ~arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc ~x86"
+KEYWORDS="~amd64 arm ~arm64 hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc ~x86"
 
 # asttokens is optional runtime dep
 BDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/executing/
@ 2022-08-26 18:38 Arthur Zamarin
  0 siblings, 0 replies; 123+ messages in thread
From: Arthur Zamarin @ 2022-08-26 18:38 UTC (permalink / raw
  To: gentoo-commits

commit:     88a4a1b36b111278a9dc639cde8c63ebf73b6cd5
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Aug 26 18:38:17 2022 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Aug 26 18:38:17 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=88a4a1b3

dev-python/executing: Stabilize 0.9.1 arm64, #866785

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 dev-python/executing/executing-0.9.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/executing/executing-0.9.1.ebuild b/dev-python/executing/executing-0.9.1.ebuild
index 46585b1ab2a6..8cfb5af3b630 100644
--- a/dev-python/executing/executing-0.9.1.ebuild
+++ b/dev-python/executing/executing-0.9.1.ebuild
@@ -20,7 +20,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 arm ~arm64 hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc ~x86"
+KEYWORDS="~amd64 arm arm64 hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc ~x86"
 
 # asttokens is optional runtime dep
 BDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/executing/
@ 2022-08-26 23:27 Sam James
  0 siblings, 0 replies; 123+ messages in thread
From: Sam James @ 2022-08-26 23:27 UTC (permalink / raw
  To: gentoo-commits

commit:     3352d4a37ad64814e7e13394639055a7be9a74e3
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Aug 26 23:26:18 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Aug 26 23:26:18 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3352d4a3

dev-python/executing: Stabilize 0.9.1 amd64, #866785

Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-python/executing/executing-0.9.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/executing/executing-0.9.1.ebuild b/dev-python/executing/executing-0.9.1.ebuild
index 8cfb5af3b630..48fcc297be82 100644
--- a/dev-python/executing/executing-0.9.1.ebuild
+++ b/dev-python/executing/executing-0.9.1.ebuild
@@ -20,7 +20,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 arm arm64 hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc ~x86"
+KEYWORDS="amd64 arm arm64 hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc ~x86"
 
 # asttokens is optional runtime dep
 BDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/executing/
@ 2022-08-26 23:28 Sam James
  0 siblings, 0 replies; 123+ messages in thread
From: Sam James @ 2022-08-26 23:28 UTC (permalink / raw
  To: gentoo-commits

commit:     a9419ac4d8ff53744119cdf956013acf464614f9
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Aug 26 23:27:53 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Aug 26 23:28:17 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a9419ac4

dev-python/executing: Stabilize 0.9.1 x86, #866785

Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-python/executing/executing-0.9.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/executing/executing-0.9.1.ebuild b/dev-python/executing/executing-0.9.1.ebuild
index 48fcc297be82..471d3466d941 100644
--- a/dev-python/executing/executing-0.9.1.ebuild
+++ b/dev-python/executing/executing-0.9.1.ebuild
@@ -20,7 +20,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 arm arm64 hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc ~x86"
+KEYWORDS="amd64 arm arm64 hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc x86"
 
 # asttokens is optional runtime dep
 BDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/executing/
@ 2022-08-27  6:24 Michał Górny
  0 siblings, 0 replies; 123+ messages in thread
From: Michał Górny @ 2022-08-27  6:24 UTC (permalink / raw
  To: gentoo-commits

commit:     0b5217ed16c3bd3c03c6e335b0a9acbbb45d50ea
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Aug 27 06:21:30 2022 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Aug 27 06:23:56 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0b5217ed

dev-python/executing: Remove old

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/executing/Manifest               |  2 --
 dev-python/executing/executing-0.8.3.ebuild | 42 -----------------------------
 dev-python/executing/executing-0.9.0.ebuild | 42 -----------------------------
 3 files changed, 86 deletions(-)

diff --git a/dev-python/executing/Manifest b/dev-python/executing/Manifest
index 54569ae5c2b3..00c0cc7705e3 100644
--- a/dev-python/executing/Manifest
+++ b/dev-python/executing/Manifest
@@ -1,4 +1,2 @@
 DIST executing-0.10.0.gh.tar.gz 507523 BLAKE2B 5ab17adb1d40b83b0cf294aba350faf124a810b4c95e408e9bd2ba80d918154cb41d8b4d4748cd7d897d47e085883a30f431dedd595b00506beb5038e084f473 SHA512 f1ee25679cd1f88f273ee68e8e926a6e98b749a50d063ea3aa73f35ac0d7ea65b13364269f01265f164dba1d775a742cd7cf3594558e06efb39fb1157b3b9f5c
-DIST executing-0.8.3.gh.tar.gz 495111 BLAKE2B ccb1a7df974f94b48960fc84a8365f6e57a7f34590972192e692f03340662e2bde97498c2ebf5617e45d8dfb6e866fd7de290644adb58e5338b2e0fdccc215f1 SHA512 4e01c1f48734c9568412b84160150e7e50ebdf5ba3dd466cf9d37b7f875ca2993915db75e2f6dd8e75e60b7b952fb0146928a41dde100ad38384b9be2ed60522
-DIST executing-0.9.0.gh.tar.gz 506632 BLAKE2B 195e6dc896bcb0add7377ba7fbfdaaf09322a5480127150a3c37eef94f57d24dfcc3c83c5a0dd7c9154c5bb7688f47754550d45adafb82d72a4b0c38d094dd50 SHA512 461a8350d55ab0346de35d7d8423164b616e2ec8152d229e3462208497b478e51fd75085dc11f7d3cace42a82d4c2cbd1b102a680aa6c2b31fa18f1f9ec69cdc
 DIST executing-0.9.1.gh.tar.gz 506644 BLAKE2B 04d7012a348186c44c892d9f442b33042a9e01951c47b1d9a42ca22195dc7fa0b8f17ebf552ca65e9aa038942a6962941aeafee2d15bdcef834d413d5512c910 SHA512 98ba2f155324e05ae927d0a97ec6ff54bcfd8d38551dde872f12aedfefc2297003b50d17e6e32e89a909a9b1e70cec9d474db03d6a4f9fb1814ebcca045bb982

diff --git a/dev-python/executing/executing-0.8.3.ebuild b/dev-python/executing/executing-0.8.3.ebuild
deleted file mode 100644
index 471d3466d941..000000000000
--- a/dev-python/executing/executing-0.8.3.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 2020-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{8..10} )
-
-inherit distutils-r1
-
-DESCRIPTION="Get information about what a Python frame is currently doing"
-HOMEPAGE="
-	https://github.com/alexmojaki/executing/
-	https://pypi.org/project/executing/
-"
-SRC_URI="
-	https://github.com/alexmojaki/executing/archive/v${PV}.tar.gz
-		-> ${P}.gh.tar.gz
-"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 arm arm64 hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc x86"
-
-# asttokens is optional runtime dep
-BDEPEND="
-	dev-python/setuptools_scm[${PYTHON_USEDEP}]
-	test? (
-		dev-python/asttokens[${PYTHON_USEDEP}]
-		dev-python/littleutils[${PYTHON_USEDEP}]
-	)
-"
-
-distutils_enable_tests pytest
-
-export SETUPTOOLS_SCM_PRETEND_VERSION=${PV}
-
-python_test() {
-	# this test explodes when collected by pytest
-	"${EPYTHON}" tests/test_main.py || die "Tests failed with ${EPYTHON}"
-	epytest tests/test_pytest.py
-}

diff --git a/dev-python/executing/executing-0.9.0.ebuild b/dev-python/executing/executing-0.9.0.ebuild
deleted file mode 100644
index 43f1dbdd67f3..000000000000
--- a/dev-python/executing/executing-0.9.0.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 2020-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{8..10} )
-
-inherit distutils-r1
-
-DESCRIPTION="Get information about what a Python frame is currently doing"
-HOMEPAGE="
-	https://github.com/alexmojaki/executing/
-	https://pypi.org/project/executing/
-"
-SRC_URI="
-	https://github.com/alexmojaki/executing/archive/v${PV}.tar.gz
-		-> ${P}.gh.tar.gz
-"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
-
-# asttokens is optional runtime dep
-BDEPEND="
-	dev-python/setuptools_scm[${PYTHON_USEDEP}]
-	test? (
-		dev-python/asttokens[${PYTHON_USEDEP}]
-		dev-python/littleutils[${PYTHON_USEDEP}]
-	)
-"
-
-distutils_enable_tests pytest
-
-export SETUPTOOLS_SCM_PRETEND_VERSION=${PV}
-
-python_test() {
-	# this test explodes when collected by pytest
-	"${EPYTHON}" tests/test_main.py || die "Tests failed with ${EPYTHON}"
-	epytest tests/test_pytest.py
-}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/executing/
@ 2022-08-28 20:15 Arthur Zamarin
  0 siblings, 0 replies; 123+ messages in thread
From: Arthur Zamarin @ 2022-08-28 20:15 UTC (permalink / raw
  To: gentoo-commits

commit:     8991995e1ff50cc0c2be49cba7537bed9eeca965
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sun Aug 28 19:37:23 2022 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sun Aug 28 20:15:43 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8991995e

dev-python/executing: add 1.0.0

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 dev-python/executing/Manifest               |  1 +
 dev-python/executing/executing-1.0.0.ebuild | 43 +++++++++++++++++++++++++++++
 2 files changed, 44 insertions(+)

diff --git a/dev-python/executing/Manifest b/dev-python/executing/Manifest
index 00c0cc7705e3..cbd5786d768e 100644
--- a/dev-python/executing/Manifest
+++ b/dev-python/executing/Manifest
@@ -1,2 +1,3 @@
 DIST executing-0.10.0.gh.tar.gz 507523 BLAKE2B 5ab17adb1d40b83b0cf294aba350faf124a810b4c95e408e9bd2ba80d918154cb41d8b4d4748cd7d897d47e085883a30f431dedd595b00506beb5038e084f473 SHA512 f1ee25679cd1f88f273ee68e8e926a6e98b749a50d063ea3aa73f35ac0d7ea65b13364269f01265f164dba1d775a742cd7cf3594558e06efb39fb1157b3b9f5c
 DIST executing-0.9.1.gh.tar.gz 506644 BLAKE2B 04d7012a348186c44c892d9f442b33042a9e01951c47b1d9a42ca22195dc7fa0b8f17ebf552ca65e9aa038942a6962941aeafee2d15bdcef834d413d5512c910 SHA512 98ba2f155324e05ae927d0a97ec6ff54bcfd8d38551dde872f12aedfefc2297003b50d17e6e32e89a909a9b1e70cec9d474db03d6a4f9fb1814ebcca045bb982
+DIST executing-1.0.0.gh.tar.gz 507720 BLAKE2B 601ddbd4c7dacd6b72317e9f07d8b8566d14b1c805bb7a2768449d51bf75818945f3b61b67dd0402d1d6171bd74165107ef98e835910529d82b8858bd016ac6d SHA512 912cea61ddb2ef12034432d68fa7239daad3c6365dbcbed72f08121b9fdc07e614b5c2233c53f5f7ee3472fca4f690af3db0944a0ed2c83623de8d682cff0a61

diff --git a/dev-python/executing/executing-1.0.0.ebuild b/dev-python/executing/executing-1.0.0.ebuild
new file mode 100644
index 000000000000..627bcaa6de17
--- /dev/null
+++ b/dev-python/executing/executing-1.0.0.ebuild
@@ -0,0 +1,43 @@
+# Copyright 2020-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+# py3.11 not ready - https://github.com/alexmojaki/executing/pull/31
+PYTHON_COMPAT=( python3_{8..10} )
+
+inherit distutils-r1
+
+DESCRIPTION="Get information about what a Python frame is currently doing"
+HOMEPAGE="
+	https://github.com/alexmojaki/executing/
+	https://pypi.org/project/executing/
+"
+SRC_URI="
+	https://github.com/alexmojaki/executing/archive/v${PV}.tar.gz
+		-> ${P}.gh.tar.gz
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
+
+# asttokens is optional runtime dep
+BDEPEND="
+	dev-python/setuptools_scm[${PYTHON_USEDEP}]
+	test? (
+		dev-python/asttokens[${PYTHON_USEDEP}]
+		dev-python/littleutils[${PYTHON_USEDEP}]
+	)
+"
+
+distutils_enable_tests pytest
+
+export SETUPTOOLS_SCM_PRETEND_VERSION=${PV}
+
+python_test() {
+	# this test explodes when collected by pytest
+	"${EPYTHON}" tests/test_main.py || die "Tests failed with ${EPYTHON}"
+	epytest tests/test_pytest.py
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/executing/
@ 2022-09-19 19:30 Arthur Zamarin
  0 siblings, 0 replies; 123+ messages in thread
From: Arthur Zamarin @ 2022-09-19 19:30 UTC (permalink / raw
  To: gentoo-commits

commit:     ca6b29498e9e16faf4c3b20dc81b3ec61c949452
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Mon Sep 19 19:30:30 2022 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Mon Sep 19 19:30:30 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ca6b2949

dev-python/executing: Stabilize 0.10.0 ppc, #871879

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 dev-python/executing/executing-0.10.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/executing/executing-0.10.0.ebuild b/dev-python/executing/executing-0.10.0.ebuild
index 43f1dbdd67f3..4484e488dbd6 100644
--- a/dev-python/executing/executing-0.10.0.ebuild
+++ b/dev-python/executing/executing-0.10.0.ebuild
@@ -20,7 +20,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
 
 # asttokens is optional runtime dep
 BDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/executing/
@ 2022-09-19 19:33 Arthur Zamarin
  0 siblings, 0 replies; 123+ messages in thread
From: Arthur Zamarin @ 2022-09-19 19:33 UTC (permalink / raw
  To: gentoo-commits

commit:     25c95d338f5ddac0e68b17c90ce8f03a9d606fd1
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Mon Sep 19 19:32:59 2022 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Mon Sep 19 19:32:59 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=25c95d33

dev-python/executing: Stabilize 0.10.0 sparc, #871879

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 dev-python/executing/executing-0.10.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/executing/executing-0.10.0.ebuild b/dev-python/executing/executing-0.10.0.ebuild
index 4484e488dbd6..21e7a917684a 100644
--- a/dev-python/executing/executing-0.10.0.ebuild
+++ b/dev-python/executing/executing-0.10.0.ebuild
@@ -20,7 +20,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ppc ~ppc64 ~riscv ~s390 sparc ~x86"
 
 # asttokens is optional runtime dep
 BDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/executing/
@ 2022-09-19 19:36 Arthur Zamarin
  0 siblings, 0 replies; 123+ messages in thread
From: Arthur Zamarin @ 2022-09-19 19:36 UTC (permalink / raw
  To: gentoo-commits

commit:     274e4a91db0e00ca1a391c9cd988f732284ca3e8
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Mon Sep 19 19:36:36 2022 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Mon Sep 19 19:36:36 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=274e4a91

dev-python/executing: Stabilize 0.10.0 ppc64, #871879

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 dev-python/executing/executing-0.10.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/executing/executing-0.10.0.ebuild b/dev-python/executing/executing-0.10.0.ebuild
index 21e7a917684a..965d56929a95 100644
--- a/dev-python/executing/executing-0.10.0.ebuild
+++ b/dev-python/executing/executing-0.10.0.ebuild
@@ -20,7 +20,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ppc ~ppc64 ~riscv ~s390 sparc ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc ~x86"
 
 # asttokens is optional runtime dep
 BDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/executing/
@ 2022-09-19 19:47 Arthur Zamarin
  0 siblings, 0 replies; 123+ messages in thread
From: Arthur Zamarin @ 2022-09-19 19:47 UTC (permalink / raw
  To: gentoo-commits

commit:     07edbe42273142b786c9f3bc585b24d309fb9aba
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Mon Sep 19 19:47:42 2022 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Mon Sep 19 19:47:42 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=07edbe42

dev-python/executing: Stabilize 0.10.0 arm64, #871879

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 dev-python/executing/executing-0.10.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/executing/executing-0.10.0.ebuild b/dev-python/executing/executing-0.10.0.ebuild
index e242880fd9b6..6052623daafc 100644
--- a/dev-python/executing/executing-0.10.0.ebuild
+++ b/dev-python/executing/executing-0.10.0.ebuild
@@ -20,7 +20,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 arm ~arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc ~x86"
+KEYWORDS="~amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc ~x86"
 
 # asttokens is optional runtime dep
 BDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/executing/
@ 2022-09-19 19:47 Arthur Zamarin
  0 siblings, 0 replies; 123+ messages in thread
From: Arthur Zamarin @ 2022-09-19 19:47 UTC (permalink / raw
  To: gentoo-commits

commit:     51940cef5deff35f04ee15cb5c416e197d3d496a
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Mon Sep 19 19:47:41 2022 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Mon Sep 19 19:47:41 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=51940cef

dev-python/executing: Stabilize 0.10.0 arm, #871879

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 dev-python/executing/executing-0.10.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/executing/executing-0.10.0.ebuild b/dev-python/executing/executing-0.10.0.ebuild
index 965d56929a95..e242880fd9b6 100644
--- a/dev-python/executing/executing-0.10.0.ebuild
+++ b/dev-python/executing/executing-0.10.0.ebuild
@@ -20,7 +20,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc ~x86"
+KEYWORDS="~amd64 arm ~arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc ~x86"
 
 # asttokens is optional runtime dep
 BDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/executing/
@ 2022-09-19 20:44 Jakov Smolić
  0 siblings, 0 replies; 123+ messages in thread
From: Jakov Smolić @ 2022-09-19 20:44 UTC (permalink / raw
  To: gentoo-commits

commit:     2a925099b7b05d1a99d9692338c75e41c3904133
Author:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Mon Sep 19 20:44:26 2022 +0000
Commit:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Mon Sep 19 20:44:26 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2a925099

dev-python/executing: Stabilize 0.10.0 hppa, #871879

Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>

 dev-python/executing/executing-0.10.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/executing/executing-0.10.0.ebuild b/dev-python/executing/executing-0.10.0.ebuild
index 6052623daafc..8cfb5af3b630 100644
--- a/dev-python/executing/executing-0.10.0.ebuild
+++ b/dev-python/executing/executing-0.10.0.ebuild
@@ -20,7 +20,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc ~x86"
+KEYWORDS="~amd64 arm arm64 hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc ~x86"
 
 # asttokens is optional runtime dep
 BDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/executing/
@ 2022-09-20  0:07 Sam James
  0 siblings, 0 replies; 123+ messages in thread
From: Sam James @ 2022-09-20  0:07 UTC (permalink / raw
  To: gentoo-commits

commit:     ce0844a74119ffb616f79c84aacd08d14bd5ef48
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Sep 20 00:02:34 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Sep 20 00:05:05 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ce0844a7

dev-python/executing: Stabilize 0.10.0 amd64, #871879

Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-python/executing/executing-0.10.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/executing/executing-0.10.0.ebuild b/dev-python/executing/executing-0.10.0.ebuild
index 8cfb5af3b630..48fcc297be82 100644
--- a/dev-python/executing/executing-0.10.0.ebuild
+++ b/dev-python/executing/executing-0.10.0.ebuild
@@ -20,7 +20,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 arm arm64 hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc ~x86"
+KEYWORDS="amd64 arm arm64 hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc ~x86"
 
 # asttokens is optional runtime dep
 BDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/executing/
@ 2022-09-20  0:07 Sam James
  0 siblings, 0 replies; 123+ messages in thread
From: Sam James @ 2022-09-20  0:07 UTC (permalink / raw
  To: gentoo-commits

commit:     a863c42115933bb7693b7f92443862d43842117a
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Sep 20 00:05:14 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Sep 20 00:05:14 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a863c421

dev-python/executing: Stabilize 0.10.0 x86, #871879

Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-python/executing/executing-0.10.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/executing/executing-0.10.0.ebuild b/dev-python/executing/executing-0.10.0.ebuild
index 48fcc297be82..471d3466d941 100644
--- a/dev-python/executing/executing-0.10.0.ebuild
+++ b/dev-python/executing/executing-0.10.0.ebuild
@@ -20,7 +20,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 arm arm64 hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc ~x86"
+KEYWORDS="amd64 arm arm64 hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc x86"
 
 # asttokens is optional runtime dep
 BDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/executing/
@ 2022-09-20  5:43 Michał Górny
  0 siblings, 0 replies; 123+ messages in thread
From: Michał Górny @ 2022-09-20  5:43 UTC (permalink / raw
  To: gentoo-commits

commit:     821343bb564041e7f148bdaa151f0641988f3280
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Tue Sep 20 05:39:10 2022 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Tue Sep 20 05:39:10 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=821343bb

dev-python/executing: Remove old

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/executing/Manifest               |  1 -
 dev-python/executing/executing-0.9.1.ebuild | 42 -----------------------------
 2 files changed, 43 deletions(-)

diff --git a/dev-python/executing/Manifest b/dev-python/executing/Manifest
index cbd5786d768e..e19305e0f696 100644
--- a/dev-python/executing/Manifest
+++ b/dev-python/executing/Manifest
@@ -1,3 +1,2 @@
 DIST executing-0.10.0.gh.tar.gz 507523 BLAKE2B 5ab17adb1d40b83b0cf294aba350faf124a810b4c95e408e9bd2ba80d918154cb41d8b4d4748cd7d897d47e085883a30f431dedd595b00506beb5038e084f473 SHA512 f1ee25679cd1f88f273ee68e8e926a6e98b749a50d063ea3aa73f35ac0d7ea65b13364269f01265f164dba1d775a742cd7cf3594558e06efb39fb1157b3b9f5c
-DIST executing-0.9.1.gh.tar.gz 506644 BLAKE2B 04d7012a348186c44c892d9f442b33042a9e01951c47b1d9a42ca22195dc7fa0b8f17ebf552ca65e9aa038942a6962941aeafee2d15bdcef834d413d5512c910 SHA512 98ba2f155324e05ae927d0a97ec6ff54bcfd8d38551dde872f12aedfefc2297003b50d17e6e32e89a909a9b1e70cec9d474db03d6a4f9fb1814ebcca045bb982
 DIST executing-1.0.0.gh.tar.gz 507720 BLAKE2B 601ddbd4c7dacd6b72317e9f07d8b8566d14b1c805bb7a2768449d51bf75818945f3b61b67dd0402d1d6171bd74165107ef98e835910529d82b8858bd016ac6d SHA512 912cea61ddb2ef12034432d68fa7239daad3c6365dbcbed72f08121b9fdc07e614b5c2233c53f5f7ee3472fca4f690af3db0944a0ed2c83623de8d682cff0a61

diff --git a/dev-python/executing/executing-0.9.1.ebuild b/dev-python/executing/executing-0.9.1.ebuild
deleted file mode 100644
index 471d3466d941..000000000000
--- a/dev-python/executing/executing-0.9.1.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 2020-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{8..10} )
-
-inherit distutils-r1
-
-DESCRIPTION="Get information about what a Python frame is currently doing"
-HOMEPAGE="
-	https://github.com/alexmojaki/executing/
-	https://pypi.org/project/executing/
-"
-SRC_URI="
-	https://github.com/alexmojaki/executing/archive/v${PV}.tar.gz
-		-> ${P}.gh.tar.gz
-"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 arm arm64 hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc x86"
-
-# asttokens is optional runtime dep
-BDEPEND="
-	dev-python/setuptools_scm[${PYTHON_USEDEP}]
-	test? (
-		dev-python/asttokens[${PYTHON_USEDEP}]
-		dev-python/littleutils[${PYTHON_USEDEP}]
-	)
-"
-
-distutils_enable_tests pytest
-
-export SETUPTOOLS_SCM_PRETEND_VERSION=${PV}
-
-python_test() {
-	# this test explodes when collected by pytest
-	"${EPYTHON}" tests/test_main.py || die "Tests failed with ${EPYTHON}"
-	epytest tests/test_pytest.py
-}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/executing/
@ 2022-09-26 11:22 Michał Górny
  0 siblings, 0 replies; 123+ messages in thread
From: Michał Górny @ 2022-09-26 11:22 UTC (permalink / raw
  To: gentoo-commits

commit:     48af05f91744265fcafd51b805e9dca1a478af64
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Mon Sep 26 10:53:31 2022 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Mon Sep 26 11:10:05 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=48af05f9

dev-python/executing: Bump to 1.1.0

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/executing/Manifest               |  1 +
 dev-python/executing/executing-1.1.0.ebuild | 43 +++++++++++++++++++++++++++++
 2 files changed, 44 insertions(+)

diff --git a/dev-python/executing/Manifest b/dev-python/executing/Manifest
index e19305e0f696..46624c250e00 100644
--- a/dev-python/executing/Manifest
+++ b/dev-python/executing/Manifest
@@ -1,2 +1,3 @@
 DIST executing-0.10.0.gh.tar.gz 507523 BLAKE2B 5ab17adb1d40b83b0cf294aba350faf124a810b4c95e408e9bd2ba80d918154cb41d8b4d4748cd7d897d47e085883a30f431dedd595b00506beb5038e084f473 SHA512 f1ee25679cd1f88f273ee68e8e926a6e98b749a50d063ea3aa73f35ac0d7ea65b13364269f01265f164dba1d775a742cd7cf3594558e06efb39fb1157b3b9f5c
 DIST executing-1.0.0.gh.tar.gz 507720 BLAKE2B 601ddbd4c7dacd6b72317e9f07d8b8566d14b1c805bb7a2768449d51bf75818945f3b61b67dd0402d1d6171bd74165107ef98e835910529d82b8858bd016ac6d SHA512 912cea61ddb2ef12034432d68fa7239daad3c6365dbcbed72f08121b9fdc07e614b5c2233c53f5f7ee3472fca4f690af3db0944a0ed2c83623de8d682cff0a61
+DIST executing-1.1.0.gh.tar.gz 782214 BLAKE2B 56c97b1c0b6617db90a90f562409b406d0838e187fed4e45642506df85ae5e54824a393eb38982902bdb1c67fda2299bac282a5b260f3537cd06145b1c5b992e SHA512 090705c90051fdbf53310293fbb2e06bd2c2144cf83d3d02528768303c70871bd8b3a3d236705e29f8a9fc3132ca94bcb3375fe8834529a684b10b7c879faff0

diff --git a/dev-python/executing/executing-1.1.0.ebuild b/dev-python/executing/executing-1.1.0.ebuild
new file mode 100644
index 000000000000..26b7519766f7
--- /dev/null
+++ b/dev-python/executing/executing-1.1.0.ebuild
@@ -0,0 +1,43 @@
+# Copyright 2020-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..11} )
+
+inherit distutils-r1
+
+DESCRIPTION="Get information about what a Python frame is currently doing"
+HOMEPAGE="
+	https://github.com/alexmojaki/executing/
+	https://pypi.org/project/executing/
+"
+SRC_URI="
+	https://github.com/alexmojaki/executing/archive/v${PV}.tar.gz
+		-> ${P}.gh.tar.gz
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
+
+# asttokens is optional runtime dep
+BDEPEND="
+	dev-python/setuptools_scm[${PYTHON_USEDEP}]
+	test? (
+		dev-python/asttokens[${PYTHON_USEDEP}]
+		dev-python/littleutils[${PYTHON_USEDEP}]
+		dev-python/rich[${PYTHON_USEDEP}]
+	)
+"
+
+distutils_enable_tests pytest
+
+export SETUPTOOLS_SCM_PRETEND_VERSION=${PV}
+
+python_test() {
+	# this test explodes when collected by pytest
+	"${EPYTHON}" tests/test_main.py || die "Tests failed with ${EPYTHON}"
+	epytest tests/test_pytest.py
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/executing/
@ 2022-10-02 19:17 Arthur Zamarin
  0 siblings, 0 replies; 123+ messages in thread
From: Arthur Zamarin @ 2022-10-02 19:17 UTC (permalink / raw
  To: gentoo-commits

commit:     45a49daf470c245c0b407eea18d887badb95bfac
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sun Oct  2 19:17:19 2022 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sun Oct  2 19:17:19 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=45a49daf

dev-python/executing: Stabilize 1.0.0 arm, #874216

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 dev-python/executing/executing-1.0.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/executing/executing-1.0.0.ebuild b/dev-python/executing/executing-1.0.0.ebuild
index 627bcaa6de17..4fdd6c806bd0 100644
--- a/dev-python/executing/executing-1.0.0.ebuild
+++ b/dev-python/executing/executing-1.0.0.ebuild
@@ -21,7 +21,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
+KEYWORDS="~amd64 arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
 
 # asttokens is optional runtime dep
 BDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/executing/
@ 2022-10-02 19:24 Arthur Zamarin
  0 siblings, 0 replies; 123+ messages in thread
From: Arthur Zamarin @ 2022-10-02 19:24 UTC (permalink / raw
  To: gentoo-commits

commit:     7a8bcd429f5812571de0c97eeaff37d8afcd2b68
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sun Oct  2 19:24:47 2022 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sun Oct  2 19:24:47 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7a8bcd42

dev-python/executing: Stabilize 1.0.0 sparc, #874216

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 dev-python/executing/executing-1.0.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/executing/executing-1.0.0.ebuild b/dev-python/executing/executing-1.0.0.ebuild
index 4fdd6c806bd0..c30c77f4fe79 100644
--- a/dev-python/executing/executing-1.0.0.ebuild
+++ b/dev-python/executing/executing-1.0.0.ebuild
@@ -21,7 +21,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
+KEYWORDS="~amd64 arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 sparc ~x86"
 
 # asttokens is optional runtime dep
 BDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/executing/
@ 2022-10-03  0:44 Sam James
  0 siblings, 0 replies; 123+ messages in thread
From: Sam James @ 2022-10-03  0:44 UTC (permalink / raw
  To: gentoo-commits

commit:     fbc797e84df930510cb905be60c0867e28496131
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Oct  3 00:42:19 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Oct  3 00:42:19 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fbc797e8

dev-python/executing: Stabilize 1.0.0 x86, #874216

Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-python/executing/executing-1.0.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/executing/executing-1.0.0.ebuild b/dev-python/executing/executing-1.0.0.ebuild
index 7f109acdde73..ba62b437c7f7 100644
--- a/dev-python/executing/executing-1.0.0.ebuild
+++ b/dev-python/executing/executing-1.0.0.ebuild
@@ -21,7 +21,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 sparc ~x86"
+KEYWORDS="amd64 arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 sparc x86"
 
 # asttokens is optional runtime dep
 BDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/executing/
@ 2022-10-03  8:28 Agostino Sarubbo
  0 siblings, 0 replies; 123+ messages in thread
From: Agostino Sarubbo @ 2022-10-03  8:28 UTC (permalink / raw
  To: gentoo-commits

commit:     769564cb95d615ba405d5f29ddf29195f5d1cb1d
Author:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Mon Oct  3 08:27:34 2022 +0000
Commit:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Mon Oct  3 08:27:34 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=769564cb

dev-python/executing: Stabilize 1.0.0 arm64, #874216

Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>

 dev-python/executing/executing-1.0.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/executing/executing-1.0.0.ebuild b/dev-python/executing/executing-1.0.0.ebuild
index ba62b437c7f7..37defe3e3c3a 100644
--- a/dev-python/executing/executing-1.0.0.ebuild
+++ b/dev-python/executing/executing-1.0.0.ebuild
@@ -21,7 +21,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 sparc x86"
+KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 sparc x86"
 
 # asttokens is optional runtime dep
 BDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/executing/
@ 2022-10-05  6:50 Michał Górny
  0 siblings, 0 replies; 123+ messages in thread
From: Michał Górny @ 2022-10-05  6:50 UTC (permalink / raw
  To: gentoo-commits

commit:     935816d7378d89c25996aaf69359937fcaee7ce4
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed Oct  5 06:47:29 2022 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed Oct  5 06:50:31 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=935816d7

dev-python/executing: Stabilize 1.0.0 ppc ppc64, #874216

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/executing/executing-1.0.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/executing/executing-1.0.0.ebuild b/dev-python/executing/executing-1.0.0.ebuild
index 37defe3e3c3a..8a398995c3c1 100644
--- a/dev-python/executing/executing-1.0.0.ebuild
+++ b/dev-python/executing/executing-1.0.0.ebuild
@@ -21,7 +21,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 sparc x86"
+KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc x86"
 
 # asttokens is optional runtime dep
 BDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/executing/
@ 2022-10-10  8:18 Arthur Zamarin
  0 siblings, 0 replies; 123+ messages in thread
From: Arthur Zamarin @ 2022-10-10  8:18 UTC (permalink / raw
  To: gentoo-commits

commit:     c039d2c859950b17b66b02a328047f7869d3dd28
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Mon Oct 10 07:54:39 2022 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Mon Oct 10 08:18:24 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c039d2c8

dev-python/executing: add 1.1.1

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 dev-python/executing/Manifest               |  1 +
 dev-python/executing/executing-1.1.1.ebuild | 43 +++++++++++++++++++++++++++++
 2 files changed, 44 insertions(+)

diff --git a/dev-python/executing/Manifest b/dev-python/executing/Manifest
index 46624c250e00..59a6da2d2930 100644
--- a/dev-python/executing/Manifest
+++ b/dev-python/executing/Manifest
@@ -1,3 +1,4 @@
 DIST executing-0.10.0.gh.tar.gz 507523 BLAKE2B 5ab17adb1d40b83b0cf294aba350faf124a810b4c95e408e9bd2ba80d918154cb41d8b4d4748cd7d897d47e085883a30f431dedd595b00506beb5038e084f473 SHA512 f1ee25679cd1f88f273ee68e8e926a6e98b749a50d063ea3aa73f35ac0d7ea65b13364269f01265f164dba1d775a742cd7cf3594558e06efb39fb1157b3b9f5c
 DIST executing-1.0.0.gh.tar.gz 507720 BLAKE2B 601ddbd4c7dacd6b72317e9f07d8b8566d14b1c805bb7a2768449d51bf75818945f3b61b67dd0402d1d6171bd74165107ef98e835910529d82b8858bd016ac6d SHA512 912cea61ddb2ef12034432d68fa7239daad3c6365dbcbed72f08121b9fdc07e614b5c2233c53f5f7ee3472fca4f690af3db0944a0ed2c83623de8d682cff0a61
 DIST executing-1.1.0.gh.tar.gz 782214 BLAKE2B 56c97b1c0b6617db90a90f562409b406d0838e187fed4e45642506df85ae5e54824a393eb38982902bdb1c67fda2299bac282a5b260f3537cd06145b1c5b992e SHA512 090705c90051fdbf53310293fbb2e06bd2c2144cf83d3d02528768303c70871bd8b3a3d236705e29f8a9fc3132ca94bcb3375fe8834529a684b10b7c879faff0
+DIST executing-1.1.1.gh.tar.gz 661228 BLAKE2B 66ba8509a82d7c7354d70747d08e160423314718a2c1844260104eff474d39a244f880984e2388997f5620905a2f3fd90fcfa393f48e98cd5990e01a053012d6 SHA512 2b2277aa68d1abf2f1bbbf9010f7a27652f74e892e564a3c6269ea1110208b4c2fbf6a002b90423f5e9aa718cf698f996d21930b431241cf88012f20d244eeae

diff --git a/dev-python/executing/executing-1.1.1.ebuild b/dev-python/executing/executing-1.1.1.ebuild
new file mode 100644
index 000000000000..26b7519766f7
--- /dev/null
+++ b/dev-python/executing/executing-1.1.1.ebuild
@@ -0,0 +1,43 @@
+# Copyright 2020-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..11} )
+
+inherit distutils-r1
+
+DESCRIPTION="Get information about what a Python frame is currently doing"
+HOMEPAGE="
+	https://github.com/alexmojaki/executing/
+	https://pypi.org/project/executing/
+"
+SRC_URI="
+	https://github.com/alexmojaki/executing/archive/v${PV}.tar.gz
+		-> ${P}.gh.tar.gz
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
+
+# asttokens is optional runtime dep
+BDEPEND="
+	dev-python/setuptools_scm[${PYTHON_USEDEP}]
+	test? (
+		dev-python/asttokens[${PYTHON_USEDEP}]
+		dev-python/littleutils[${PYTHON_USEDEP}]
+		dev-python/rich[${PYTHON_USEDEP}]
+	)
+"
+
+distutils_enable_tests pytest
+
+export SETUPTOOLS_SCM_PRETEND_VERSION=${PV}
+
+python_test() {
+	# this test explodes when collected by pytest
+	"${EPYTHON}" tests/test_main.py || die "Tests failed with ${EPYTHON}"
+	epytest tests/test_pytest.py
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/executing/
@ 2022-10-10  8:18 Arthur Zamarin
  0 siblings, 0 replies; 123+ messages in thread
From: Arthur Zamarin @ 2022-10-10  8:18 UTC (permalink / raw
  To: gentoo-commits

commit:     2e91e8ba15964aba3db63b01d9ab9624ee2c84ca
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Mon Oct 10 07:56:52 2022 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Mon Oct 10 08:18:24 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2e91e8ba

dev-python/executing: add asttokens as optional dep

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 dev-python/executing/executing-1.1.1.ebuild | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/dev-python/executing/executing-1.1.1.ebuild b/dev-python/executing/executing-1.1.1.ebuild
index 26b7519766f7..eb688d352f1f 100644
--- a/dev-python/executing/executing-1.1.1.ebuild
+++ b/dev-python/executing/executing-1.1.1.ebuild
@@ -6,7 +6,7 @@ EAPI=8
 DISTUTILS_USE_PEP517=setuptools
 PYTHON_COMPAT=( python3_{8..11} )
 
-inherit distutils-r1
+inherit distutils-r1 optfeature
 
 DESCRIPTION="Get information about what a Python frame is currently doing"
 HOMEPAGE="
@@ -22,7 +22,6 @@ LICENSE="MIT"
 SLOT="0"
 KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
 
-# asttokens is optional runtime dep
 BDEPEND="
 	dev-python/setuptools_scm[${PYTHON_USEDEP}]
 	test? (
@@ -41,3 +40,7 @@ python_test() {
 	"${EPYTHON}" tests/test_main.py || die "Tests failed with ${EPYTHON}"
 	epytest tests/test_pytest.py
 }
+
+pkg_postinst() {
+	optfeature "getting node's source code" dev-python/asttokens
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/executing/
@ 2022-10-30  6:39 Michał Górny
  0 siblings, 0 replies; 123+ messages in thread
From: Michał Górny @ 2022-10-30  6:39 UTC (permalink / raw
  To: gentoo-commits

commit:     8eb487f5e673b7081b3803697787f853a203edcf
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sun Oct 30 06:14:40 2022 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun Oct 30 06:39:00 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8eb487f5

dev-python/executing: Bump to 1.2.0

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/executing/Manifest               |  1 +
 dev-python/executing/executing-1.2.0.ebuild | 46 +++++++++++++++++++++++++++++
 2 files changed, 47 insertions(+)

diff --git a/dev-python/executing/Manifest b/dev-python/executing/Manifest
index 59a6da2d2930..bdc4306118ad 100644
--- a/dev-python/executing/Manifest
+++ b/dev-python/executing/Manifest
@@ -2,3 +2,4 @@ DIST executing-0.10.0.gh.tar.gz 507523 BLAKE2B 5ab17adb1d40b83b0cf294aba350faf12
 DIST executing-1.0.0.gh.tar.gz 507720 BLAKE2B 601ddbd4c7dacd6b72317e9f07d8b8566d14b1c805bb7a2768449d51bf75818945f3b61b67dd0402d1d6171bd74165107ef98e835910529d82b8858bd016ac6d SHA512 912cea61ddb2ef12034432d68fa7239daad3c6365dbcbed72f08121b9fdc07e614b5c2233c53f5f7ee3472fca4f690af3db0944a0ed2c83623de8d682cff0a61
 DIST executing-1.1.0.gh.tar.gz 782214 BLAKE2B 56c97b1c0b6617db90a90f562409b406d0838e187fed4e45642506df85ae5e54824a393eb38982902bdb1c67fda2299bac282a5b260f3537cd06145b1c5b992e SHA512 090705c90051fdbf53310293fbb2e06bd2c2144cf83d3d02528768303c70871bd8b3a3d236705e29f8a9fc3132ca94bcb3375fe8834529a684b10b7c879faff0
 DIST executing-1.1.1.gh.tar.gz 661228 BLAKE2B 66ba8509a82d7c7354d70747d08e160423314718a2c1844260104eff474d39a244f880984e2388997f5620905a2f3fd90fcfa393f48e98cd5990e01a053012d6 SHA512 2b2277aa68d1abf2f1bbbf9010f7a27652f74e892e564a3c6269ea1110208b4c2fbf6a002b90423f5e9aa718cf698f996d21930b431241cf88012f20d244eeae
+DIST executing-1.2.0.gh.tar.gz 663650 BLAKE2B ba9420bfcf3805223e6b7e84d65499f3a73ef3156480586d2c5ffde4e438fcf8474f4f02c123953d04ee253de7a6a3a1b2587e57fcae546f3dae7af70a1aaa98 SHA512 c841958cc499b2d78c94570bf0556933d4a58ca5541f7a59e591be6036926ab79d5ae86bb95bbf649f3c3fb729109fe50cf04fbc72692e0cfe12edaa995ea0a6

diff --git a/dev-python/executing/executing-1.2.0.ebuild b/dev-python/executing/executing-1.2.0.ebuild
new file mode 100644
index 000000000000..eb688d352f1f
--- /dev/null
+++ b/dev-python/executing/executing-1.2.0.ebuild
@@ -0,0 +1,46 @@
+# Copyright 2020-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..11} )
+
+inherit distutils-r1 optfeature
+
+DESCRIPTION="Get information about what a Python frame is currently doing"
+HOMEPAGE="
+	https://github.com/alexmojaki/executing/
+	https://pypi.org/project/executing/
+"
+SRC_URI="
+	https://github.com/alexmojaki/executing/archive/v${PV}.tar.gz
+		-> ${P}.gh.tar.gz
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
+
+BDEPEND="
+	dev-python/setuptools_scm[${PYTHON_USEDEP}]
+	test? (
+		dev-python/asttokens[${PYTHON_USEDEP}]
+		dev-python/littleutils[${PYTHON_USEDEP}]
+		dev-python/rich[${PYTHON_USEDEP}]
+	)
+"
+
+distutils_enable_tests pytest
+
+export SETUPTOOLS_SCM_PRETEND_VERSION=${PV}
+
+python_test() {
+	# this test explodes when collected by pytest
+	"${EPYTHON}" tests/test_main.py || die "Tests failed with ${EPYTHON}"
+	epytest tests/test_pytest.py
+}
+
+pkg_postinst() {
+	optfeature "getting node's source code" dev-python/asttokens
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/executing/
@ 2022-11-06  7:24 Sam James
  0 siblings, 0 replies; 123+ messages in thread
From: Sam James @ 2022-11-06  7:24 UTC (permalink / raw
  To: gentoo-commits

commit:     06512c0d6b0c1ed40f4e5331e972ad35ef86475e
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Nov  6 07:24:08 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Nov  6 07:24:08 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=06512c0d

dev-python/executing: Stabilize 1.1.1 arm, #879995

Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-python/executing/executing-1.1.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/executing/executing-1.1.1.ebuild b/dev-python/executing/executing-1.1.1.ebuild
index eb688d352f1f..411bcd14eec3 100644
--- a/dev-python/executing/executing-1.1.1.ebuild
+++ b/dev-python/executing/executing-1.1.1.ebuild
@@ -20,7 +20,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
+KEYWORDS="~amd64 arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
 
 BDEPEND="
 	dev-python/setuptools_scm[${PYTHON_USEDEP}]


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/executing/
@ 2022-11-06  7:25 Sam James
  0 siblings, 0 replies; 123+ messages in thread
From: Sam James @ 2022-11-06  7:25 UTC (permalink / raw
  To: gentoo-commits

commit:     6c33be9a3dd5ec797b198f998d5396ccea15d572
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Nov  6 07:25:27 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Nov  6 07:25:27 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6c33be9a

dev-python/executing: Stabilize 1.1.1 amd64, #879995

Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-python/executing/executing-1.1.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/executing/executing-1.1.1.ebuild b/dev-python/executing/executing-1.1.1.ebuild
index 411bcd14eec3..0eafbbe7ef6e 100644
--- a/dev-python/executing/executing-1.1.1.ebuild
+++ b/dev-python/executing/executing-1.1.1.ebuild
@@ -20,7 +20,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
+KEYWORDS="amd64 arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
 
 BDEPEND="
 	dev-python/setuptools_scm[${PYTHON_USEDEP}]


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/executing/
@ 2022-11-07  7:26 Sam James
  0 siblings, 0 replies; 123+ messages in thread
From: Sam James @ 2022-11-07  7:26 UTC (permalink / raw
  To: gentoo-commits

commit:     65fac992de6fa38d2c50f9819422772f700379ef
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Nov  7 07:25:11 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Nov  7 07:25:11 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=65fac992

dev-python/executing: Stabilize 1.1.1 x86, #879995

Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-python/executing/executing-1.1.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/executing/executing-1.1.1.ebuild b/dev-python/executing/executing-1.1.1.ebuild
index 0eafbbe7ef6e..a72922e5a638 100644
--- a/dev-python/executing/executing-1.1.1.ebuild
+++ b/dev-python/executing/executing-1.1.1.ebuild
@@ -20,7 +20,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
+KEYWORDS="amd64 arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc x86"
 
 BDEPEND="
 	dev-python/setuptools_scm[${PYTHON_USEDEP}]


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/executing/
@ 2022-11-07 10:11 Sam James
  0 siblings, 0 replies; 123+ messages in thread
From: Sam James @ 2022-11-07 10:11 UTC (permalink / raw
  To: gentoo-commits

commit:     46ffea08b60207fef8a3d517810e40e57f349ee2
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Nov  7 10:11:47 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Nov  7 10:11:47 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=46ffea08

dev-python/executing: Stabilize 1.1.1 sparc, #879995

Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-python/executing/executing-1.1.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/executing/executing-1.1.1.ebuild b/dev-python/executing/executing-1.1.1.ebuild
index a72922e5a638..cca5171b2e1b 100644
--- a/dev-python/executing/executing-1.1.1.ebuild
+++ b/dev-python/executing/executing-1.1.1.ebuild
@@ -20,7 +20,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc x86"
+KEYWORDS="amd64 arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 sparc x86"
 
 BDEPEND="
 	dev-python/setuptools_scm[${PYTHON_USEDEP}]


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/executing/
@ 2022-11-07 10:20 Sam James
  0 siblings, 0 replies; 123+ messages in thread
From: Sam James @ 2022-11-07 10:20 UTC (permalink / raw
  To: gentoo-commits

commit:     77b09175b78e53e1d04f2cf74099913b550d6f09
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Nov  7 10:19:41 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Nov  7 10:19:41 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=77b09175

dev-python/executing: Stabilize 1.1.1 arm64, #879995

Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-python/executing/executing-1.1.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/executing/executing-1.1.1.ebuild b/dev-python/executing/executing-1.1.1.ebuild
index cca5171b2e1b..4ce687808df9 100644
--- a/dev-python/executing/executing-1.1.1.ebuild
+++ b/dev-python/executing/executing-1.1.1.ebuild
@@ -20,7 +20,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 sparc x86"
+KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 sparc x86"
 
 BDEPEND="
 	dev-python/setuptools_scm[${PYTHON_USEDEP}]


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/executing/
@ 2022-11-07 10:24 Sam James
  0 siblings, 0 replies; 123+ messages in thread
From: Sam James @ 2022-11-07 10:24 UTC (permalink / raw
  To: gentoo-commits

commit:     103de0df651370962fb7c4933e967ec2e7dc80b7
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Nov  7 10:24:04 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Nov  7 10:24:04 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=103de0df

dev-python/executing: Stabilize 1.1.1 ppc64, #879995

Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-python/executing/executing-1.1.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/executing/executing-1.1.1.ebuild b/dev-python/executing/executing-1.1.1.ebuild
index 4ce687808df9..77bb68c43c9a 100644
--- a/dev-python/executing/executing-1.1.1.ebuild
+++ b/dev-python/executing/executing-1.1.1.ebuild
@@ -20,7 +20,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 sparc x86"
+KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ~ppc ppc64 ~riscv ~s390 sparc x86"
 
 BDEPEND="
 	dev-python/setuptools_scm[${PYTHON_USEDEP}]


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/executing/
@ 2022-11-07 23:20 Sam James
  0 siblings, 0 replies; 123+ messages in thread
From: Sam James @ 2022-11-07 23:20 UTC (permalink / raw
  To: gentoo-commits

commit:     fd46d757f5baf7a26d13a603cfc78f5dbf35a131
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Nov  7 23:20:02 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Nov  7 23:20:02 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fd46d757

dev-python/executing: Stabilize 1.1.1 ppc, #879995

Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-python/executing/executing-1.1.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/executing/executing-1.1.1.ebuild b/dev-python/executing/executing-1.1.1.ebuild
index 77bb68c43c9a..b8e80c15053a 100644
--- a/dev-python/executing/executing-1.1.1.ebuild
+++ b/dev-python/executing/executing-1.1.1.ebuild
@@ -20,7 +20,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ~ppc ppc64 ~riscv ~s390 sparc x86"
+KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc x86"
 
 BDEPEND="
 	dev-python/setuptools_scm[${PYTHON_USEDEP}]


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/executing/
@ 2022-11-08  4:55 Sam James
  0 siblings, 0 replies; 123+ messages in thread
From: Sam James @ 2022-11-08  4:55 UTC (permalink / raw
  To: gentoo-commits

commit:     cb21c82acbc7870660ac8589aff5da3eb1a4d022
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Nov  8 04:55:17 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Nov  8 04:55:17 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cb21c82a

dev-python/executing: Stabilize 1.1.1 hppa, #879995

Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-python/executing/executing-1.1.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/executing/executing-1.1.1.ebuild b/dev-python/executing/executing-1.1.1.ebuild
index b8e80c15053a..c30d19f28ed4 100644
--- a/dev-python/executing/executing-1.1.1.ebuild
+++ b/dev-python/executing/executing-1.1.1.ebuild
@@ -20,7 +20,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc x86"
+KEYWORDS="amd64 arm arm64 hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc x86"
 
 BDEPEND="
 	dev-python/setuptools_scm[${PYTHON_USEDEP}]


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/executing/
@ 2022-11-08  5:17 Michał Górny
  0 siblings, 0 replies; 123+ messages in thread
From: Michał Górny @ 2022-11-08  5:17 UTC (permalink / raw
  To: gentoo-commits

commit:     768ea839a03b10a7aafdb09606d7820e17b0d334
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Tue Nov  8 05:06:03 2022 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Tue Nov  8 05:06:03 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=768ea839

dev-python/executing: Remove old

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/executing/Manifest                |  3 --
 dev-python/executing/executing-0.10.0.ebuild | 42 ---------------------------
 dev-python/executing/executing-1.0.0.ebuild  | 43 ----------------------------
 dev-python/executing/executing-1.1.0.ebuild  | 43 ----------------------------
 4 files changed, 131 deletions(-)

diff --git a/dev-python/executing/Manifest b/dev-python/executing/Manifest
index bdc4306118ad..06336fbf676b 100644
--- a/dev-python/executing/Manifest
+++ b/dev-python/executing/Manifest
@@ -1,5 +1,2 @@
-DIST executing-0.10.0.gh.tar.gz 507523 BLAKE2B 5ab17adb1d40b83b0cf294aba350faf124a810b4c95e408e9bd2ba80d918154cb41d8b4d4748cd7d897d47e085883a30f431dedd595b00506beb5038e084f473 SHA512 f1ee25679cd1f88f273ee68e8e926a6e98b749a50d063ea3aa73f35ac0d7ea65b13364269f01265f164dba1d775a742cd7cf3594558e06efb39fb1157b3b9f5c
-DIST executing-1.0.0.gh.tar.gz 507720 BLAKE2B 601ddbd4c7dacd6b72317e9f07d8b8566d14b1c805bb7a2768449d51bf75818945f3b61b67dd0402d1d6171bd74165107ef98e835910529d82b8858bd016ac6d SHA512 912cea61ddb2ef12034432d68fa7239daad3c6365dbcbed72f08121b9fdc07e614b5c2233c53f5f7ee3472fca4f690af3db0944a0ed2c83623de8d682cff0a61
-DIST executing-1.1.0.gh.tar.gz 782214 BLAKE2B 56c97b1c0b6617db90a90f562409b406d0838e187fed4e45642506df85ae5e54824a393eb38982902bdb1c67fda2299bac282a5b260f3537cd06145b1c5b992e SHA512 090705c90051fdbf53310293fbb2e06bd2c2144cf83d3d02528768303c70871bd8b3a3d236705e29f8a9fc3132ca94bcb3375fe8834529a684b10b7c879faff0
 DIST executing-1.1.1.gh.tar.gz 661228 BLAKE2B 66ba8509a82d7c7354d70747d08e160423314718a2c1844260104eff474d39a244f880984e2388997f5620905a2f3fd90fcfa393f48e98cd5990e01a053012d6 SHA512 2b2277aa68d1abf2f1bbbf9010f7a27652f74e892e564a3c6269ea1110208b4c2fbf6a002b90423f5e9aa718cf698f996d21930b431241cf88012f20d244eeae
 DIST executing-1.2.0.gh.tar.gz 663650 BLAKE2B ba9420bfcf3805223e6b7e84d65499f3a73ef3156480586d2c5ffde4e438fcf8474f4f02c123953d04ee253de7a6a3a1b2587e57fcae546f3dae7af70a1aaa98 SHA512 c841958cc499b2d78c94570bf0556933d4a58ca5541f7a59e591be6036926ab79d5ae86bb95bbf649f3c3fb729109fe50cf04fbc72692e0cfe12edaa995ea0a6

diff --git a/dev-python/executing/executing-0.10.0.ebuild b/dev-python/executing/executing-0.10.0.ebuild
deleted file mode 100644
index 471d3466d941..000000000000
--- a/dev-python/executing/executing-0.10.0.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 2020-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{8..10} )
-
-inherit distutils-r1
-
-DESCRIPTION="Get information about what a Python frame is currently doing"
-HOMEPAGE="
-	https://github.com/alexmojaki/executing/
-	https://pypi.org/project/executing/
-"
-SRC_URI="
-	https://github.com/alexmojaki/executing/archive/v${PV}.tar.gz
-		-> ${P}.gh.tar.gz
-"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 arm arm64 hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc x86"
-
-# asttokens is optional runtime dep
-BDEPEND="
-	dev-python/setuptools_scm[${PYTHON_USEDEP}]
-	test? (
-		dev-python/asttokens[${PYTHON_USEDEP}]
-		dev-python/littleutils[${PYTHON_USEDEP}]
-	)
-"
-
-distutils_enable_tests pytest
-
-export SETUPTOOLS_SCM_PRETEND_VERSION=${PV}
-
-python_test() {
-	# this test explodes when collected by pytest
-	"${EPYTHON}" tests/test_main.py || die "Tests failed with ${EPYTHON}"
-	epytest tests/test_pytest.py
-}

diff --git a/dev-python/executing/executing-1.0.0.ebuild b/dev-python/executing/executing-1.0.0.ebuild
deleted file mode 100644
index 8a398995c3c1..000000000000
--- a/dev-python/executing/executing-1.0.0.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 2020-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-# py3.11 not ready - https://github.com/alexmojaki/executing/pull/31
-PYTHON_COMPAT=( python3_{8..10} )
-
-inherit distutils-r1
-
-DESCRIPTION="Get information about what a Python frame is currently doing"
-HOMEPAGE="
-	https://github.com/alexmojaki/executing/
-	https://pypi.org/project/executing/
-"
-SRC_URI="
-	https://github.com/alexmojaki/executing/archive/v${PV}.tar.gz
-		-> ${P}.gh.tar.gz
-"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc x86"
-
-# asttokens is optional runtime dep
-BDEPEND="
-	dev-python/setuptools_scm[${PYTHON_USEDEP}]
-	test? (
-		dev-python/asttokens[${PYTHON_USEDEP}]
-		dev-python/littleutils[${PYTHON_USEDEP}]
-	)
-"
-
-distutils_enable_tests pytest
-
-export SETUPTOOLS_SCM_PRETEND_VERSION=${PV}
-
-python_test() {
-	# this test explodes when collected by pytest
-	"${EPYTHON}" tests/test_main.py || die "Tests failed with ${EPYTHON}"
-	epytest tests/test_pytest.py
-}

diff --git a/dev-python/executing/executing-1.1.0.ebuild b/dev-python/executing/executing-1.1.0.ebuild
deleted file mode 100644
index 26b7519766f7..000000000000
--- a/dev-python/executing/executing-1.1.0.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 2020-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{8..11} )
-
-inherit distutils-r1
-
-DESCRIPTION="Get information about what a Python frame is currently doing"
-HOMEPAGE="
-	https://github.com/alexmojaki/executing/
-	https://pypi.org/project/executing/
-"
-SRC_URI="
-	https://github.com/alexmojaki/executing/archive/v${PV}.tar.gz
-		-> ${P}.gh.tar.gz
-"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
-
-# asttokens is optional runtime dep
-BDEPEND="
-	dev-python/setuptools_scm[${PYTHON_USEDEP}]
-	test? (
-		dev-python/asttokens[${PYTHON_USEDEP}]
-		dev-python/littleutils[${PYTHON_USEDEP}]
-		dev-python/rich[${PYTHON_USEDEP}]
-	)
-"
-
-distutils_enable_tests pytest
-
-export SETUPTOOLS_SCM_PRETEND_VERSION=${PV}
-
-python_test() {
-	# this test explodes when collected by pytest
-	"${EPYTHON}" tests/test_main.py || die "Tests failed with ${EPYTHON}"
-	epytest tests/test_pytest.py
-}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/executing/
@ 2022-11-29  7:28 Arthur Zamarin
  0 siblings, 0 replies; 123+ messages in thread
From: Arthur Zamarin @ 2022-11-29  7:28 UTC (permalink / raw
  To: gentoo-commits

commit:     adf349d070af50b07d2af9e4765a540272631f02
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Tue Nov 29 07:28:40 2022 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Tue Nov 29 07:28:40 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=adf349d0

dev-python/executing: Stabilize 1.2.0 arm, #883495

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 dev-python/executing/executing-1.2.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/executing/executing-1.2.0.ebuild b/dev-python/executing/executing-1.2.0.ebuild
index eb688d352f1f..411bcd14eec3 100644
--- a/dev-python/executing/executing-1.2.0.ebuild
+++ b/dev-python/executing/executing-1.2.0.ebuild
@@ -20,7 +20,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
+KEYWORDS="~amd64 arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
 
 BDEPEND="
 	dev-python/setuptools_scm[${PYTHON_USEDEP}]


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/executing/
@ 2022-11-29  8:11 Arthur Zamarin
  0 siblings, 0 replies; 123+ messages in thread
From: Arthur Zamarin @ 2022-11-29  8:11 UTC (permalink / raw
  To: gentoo-commits

commit:     cf1a99d6682028f0f3f53d1088f2174682e9fea6
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Tue Nov 29 08:10:55 2022 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Tue Nov 29 08:10:55 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cf1a99d6

dev-python/executing: Stabilize 1.2.0 ppc64, #883495

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 dev-python/executing/executing-1.2.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/executing/executing-1.2.0.ebuild b/dev-python/executing/executing-1.2.0.ebuild
index 411bcd14eec3..ed750493a21f 100644
--- a/dev-python/executing/executing-1.2.0.ebuild
+++ b/dev-python/executing/executing-1.2.0.ebuild
@@ -20,7 +20,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
+KEYWORDS="~amd64 arm ~arm64 ~hppa ~ia64 ~ppc ppc64 ~riscv ~s390 ~sparc ~x86"
 
 BDEPEND="
 	dev-python/setuptools_scm[${PYTHON_USEDEP}]


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/executing/
@ 2022-11-29 22:22 Jakov Smolić
  0 siblings, 0 replies; 123+ messages in thread
From: Jakov Smolić @ 2022-11-29 22:22 UTC (permalink / raw
  To: gentoo-commits

commit:     e164d76579b209a172c69a0dc3a578043a900956
Author:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Tue Nov 29 22:22:04 2022 +0000
Commit:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Tue Nov 29 22:22:04 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e164d765

dev-python/executing: Stabilize 1.2.0 amd64, #883495

Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>

 dev-python/executing/executing-1.2.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/executing/executing-1.2.0.ebuild b/dev-python/executing/executing-1.2.0.ebuild
index ed750493a21f..15266a1f0912 100644
--- a/dev-python/executing/executing-1.2.0.ebuild
+++ b/dev-python/executing/executing-1.2.0.ebuild
@@ -20,7 +20,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 arm ~arm64 ~hppa ~ia64 ~ppc ppc64 ~riscv ~s390 ~sparc ~x86"
+KEYWORDS="amd64 arm ~arm64 ~hppa ~ia64 ~ppc ppc64 ~riscv ~s390 ~sparc ~x86"
 
 BDEPEND="
 	dev-python/setuptools_scm[${PYTHON_USEDEP}]


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/executing/
@ 2022-11-30  0:52 Sam James
  0 siblings, 0 replies; 123+ messages in thread
From: Sam James @ 2022-11-30  0:52 UTC (permalink / raw
  To: gentoo-commits

commit:     4607d72adf7503cfbc85e1a10a502ca06f65d33f
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Nov 30 00:51:07 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Nov 30 00:51:39 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4607d72a

dev-python/executing: Stabilize 1.2.0 x86, #883495

Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-python/executing/executing-1.2.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/executing/executing-1.2.0.ebuild b/dev-python/executing/executing-1.2.0.ebuild
index 15266a1f0912..507fb1b0cdcf 100644
--- a/dev-python/executing/executing-1.2.0.ebuild
+++ b/dev-python/executing/executing-1.2.0.ebuild
@@ -20,7 +20,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 arm ~arm64 ~hppa ~ia64 ~ppc ppc64 ~riscv ~s390 ~sparc ~x86"
+KEYWORDS="amd64 arm ~arm64 ~hppa ~ia64 ~ppc ppc64 ~riscv ~s390 ~sparc x86"
 
 BDEPEND="
 	dev-python/setuptools_scm[${PYTHON_USEDEP}]


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/executing/
@ 2022-11-30  9:56 Arthur Zamarin
  0 siblings, 0 replies; 123+ messages in thread
From: Arthur Zamarin @ 2022-11-30  9:56 UTC (permalink / raw
  To: gentoo-commits

commit:     99904792263138861ae86adf028edb80a109a8c0
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Wed Nov 30 09:56:12 2022 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Wed Nov 30 09:56:12 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=99904792

dev-python/executing: Stabilize 1.2.0 sparc, #883495

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 dev-python/executing/executing-1.2.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/executing/executing-1.2.0.ebuild b/dev-python/executing/executing-1.2.0.ebuild
index 7bee7f4d812a..a05ed2157549 100644
--- a/dev-python/executing/executing-1.2.0.ebuild
+++ b/dev-python/executing/executing-1.2.0.ebuild
@@ -20,7 +20,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 arm ~arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~s390 ~sparc x86"
+KEYWORDS="amd64 arm ~arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc x86"
 
 BDEPEND="
 	dev-python/setuptools_scm[${PYTHON_USEDEP}]


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/executing/
@ 2022-11-30  9:56 Arthur Zamarin
  0 siblings, 0 replies; 123+ messages in thread
From: Arthur Zamarin @ 2022-11-30  9:56 UTC (permalink / raw
  To: gentoo-commits

commit:     0789be108d48e693a28f83fe92104fd2ebfffc7a
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Wed Nov 30 09:56:11 2022 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Wed Nov 30 09:56:11 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0789be10

dev-python/executing: Stabilize 1.2.0 ppc, #883495

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 dev-python/executing/executing-1.2.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/executing/executing-1.2.0.ebuild b/dev-python/executing/executing-1.2.0.ebuild
index 507fb1b0cdcf..7bee7f4d812a 100644
--- a/dev-python/executing/executing-1.2.0.ebuild
+++ b/dev-python/executing/executing-1.2.0.ebuild
@@ -20,7 +20,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 arm ~arm64 ~hppa ~ia64 ~ppc ppc64 ~riscv ~s390 ~sparc x86"
+KEYWORDS="amd64 arm ~arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~s390 ~sparc x86"
 
 BDEPEND="
 	dev-python/setuptools_scm[${PYTHON_USEDEP}]


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/executing/
@ 2022-11-30  9:56 Arthur Zamarin
  0 siblings, 0 replies; 123+ messages in thread
From: Arthur Zamarin @ 2022-11-30  9:56 UTC (permalink / raw
  To: gentoo-commits

commit:     8c906edce36c3a0fd9b342db8540d94347b3c0b0
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Wed Nov 30 09:56:13 2022 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Wed Nov 30 09:56:13 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8c906edc

dev-python/executing: Stabilize 1.2.0 arm64, #883495

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 dev-python/executing/executing-1.2.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/executing/executing-1.2.0.ebuild b/dev-python/executing/executing-1.2.0.ebuild
index a05ed2157549..b8e80c15053a 100644
--- a/dev-python/executing/executing-1.2.0.ebuild
+++ b/dev-python/executing/executing-1.2.0.ebuild
@@ -20,7 +20,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 arm ~arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc x86"
+KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc x86"
 
 BDEPEND="
 	dev-python/setuptools_scm[${PYTHON_USEDEP}]


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/executing/
@ 2022-11-30 10:02 Arthur Zamarin
  0 siblings, 0 replies; 123+ messages in thread
From: Arthur Zamarin @ 2022-11-30 10:02 UTC (permalink / raw
  To: gentoo-commits

commit:     1833c57d9363c29faffce680dbd14825fd858088
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Wed Nov 30 10:02:18 2022 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Wed Nov 30 10:02:18 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1833c57d

dev-python/executing: Stabilize 1.2.0 hppa, #883495

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 dev-python/executing/executing-1.2.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/executing/executing-1.2.0.ebuild b/dev-python/executing/executing-1.2.0.ebuild
index b8e80c15053a..c30d19f28ed4 100644
--- a/dev-python/executing/executing-1.2.0.ebuild
+++ b/dev-python/executing/executing-1.2.0.ebuild
@@ -20,7 +20,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc x86"
+KEYWORDS="amd64 arm arm64 hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc x86"
 
 BDEPEND="
 	dev-python/setuptools_scm[${PYTHON_USEDEP}]


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/executing/
@ 2022-11-30 13:22 Michał Górny
  0 siblings, 0 replies; 123+ messages in thread
From: Michał Górny @ 2022-11-30 13:22 UTC (permalink / raw
  To: gentoo-commits

commit:     261edc836ab68bb8b3cf6208f66ad0a00be4a40c
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed Nov 30 13:16:07 2022 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed Nov 30 13:22:03 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=261edc83

dev-python/executing: Remove old

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/executing/Manifest               |  1 -
 dev-python/executing/executing-1.1.1.ebuild | 46 -----------------------------
 2 files changed, 47 deletions(-)

diff --git a/dev-python/executing/Manifest b/dev-python/executing/Manifest
index 06336fbf676b..2a0f954d4868 100644
--- a/dev-python/executing/Manifest
+++ b/dev-python/executing/Manifest
@@ -1,2 +1 @@
-DIST executing-1.1.1.gh.tar.gz 661228 BLAKE2B 66ba8509a82d7c7354d70747d08e160423314718a2c1844260104eff474d39a244f880984e2388997f5620905a2f3fd90fcfa393f48e98cd5990e01a053012d6 SHA512 2b2277aa68d1abf2f1bbbf9010f7a27652f74e892e564a3c6269ea1110208b4c2fbf6a002b90423f5e9aa718cf698f996d21930b431241cf88012f20d244eeae
 DIST executing-1.2.0.gh.tar.gz 663650 BLAKE2B ba9420bfcf3805223e6b7e84d65499f3a73ef3156480586d2c5ffde4e438fcf8474f4f02c123953d04ee253de7a6a3a1b2587e57fcae546f3dae7af70a1aaa98 SHA512 c841958cc499b2d78c94570bf0556933d4a58ca5541f7a59e591be6036926ab79d5ae86bb95bbf649f3c3fb729109fe50cf04fbc72692e0cfe12edaa995ea0a6

diff --git a/dev-python/executing/executing-1.1.1.ebuild b/dev-python/executing/executing-1.1.1.ebuild
deleted file mode 100644
index c30d19f28ed4..000000000000
--- a/dev-python/executing/executing-1.1.1.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 2020-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{8..11} )
-
-inherit distutils-r1 optfeature
-
-DESCRIPTION="Get information about what a Python frame is currently doing"
-HOMEPAGE="
-	https://github.com/alexmojaki/executing/
-	https://pypi.org/project/executing/
-"
-SRC_URI="
-	https://github.com/alexmojaki/executing/archive/v${PV}.tar.gz
-		-> ${P}.gh.tar.gz
-"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 arm arm64 hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc x86"
-
-BDEPEND="
-	dev-python/setuptools_scm[${PYTHON_USEDEP}]
-	test? (
-		dev-python/asttokens[${PYTHON_USEDEP}]
-		dev-python/littleutils[${PYTHON_USEDEP}]
-		dev-python/rich[${PYTHON_USEDEP}]
-	)
-"
-
-distutils_enable_tests pytest
-
-export SETUPTOOLS_SCM_PRETEND_VERSION=${PV}
-
-python_test() {
-	# this test explodes when collected by pytest
-	"${EPYTHON}" tests/test_main.py || die "Tests failed with ${EPYTHON}"
-	epytest tests/test_pytest.py
-}
-
-pkg_postinst() {
-	optfeature "getting node's source code" dev-python/asttokens
-}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/executing/
@ 2023-09-30 16:01 Michał Górny
  0 siblings, 0 replies; 123+ messages in thread
From: Michał Górny @ 2023-09-30 16:01 UTC (permalink / raw
  To: gentoo-commits

commit:     9e79a2d8e2cb15cb8c88fe5b3599b6dacb944493
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Sep 30 15:53:24 2023 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Sep 30 16:01:24 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9e79a2d8

dev-python/executing: Bump to 2.0.0

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/executing/Manifest               |  1 +
 dev-python/executing/executing-2.0.0.ebuild | 46 +++++++++++++++++++++++++++++
 2 files changed, 47 insertions(+)

diff --git a/dev-python/executing/Manifest b/dev-python/executing/Manifest
index 2a0f954d4868..bfb122cb3092 100644
--- a/dev-python/executing/Manifest
+++ b/dev-python/executing/Manifest
@@ -1 +1,2 @@
 DIST executing-1.2.0.gh.tar.gz 663650 BLAKE2B ba9420bfcf3805223e6b7e84d65499f3a73ef3156480586d2c5ffde4e438fcf8474f4f02c123953d04ee253de7a6a3a1b2587e57fcae546f3dae7af70a1aaa98 SHA512 c841958cc499b2d78c94570bf0556933d4a58ca5541f7a59e591be6036926ab79d5ae86bb95bbf649f3c3fb729109fe50cf04fbc72692e0cfe12edaa995ea0a6
+DIST executing-2.0.0.gh.tar.gz 837310 BLAKE2B d402a605ce80170e1789e7eec65e89da64fcbb70bbc7fcf9fb86dd6e4575312154fd969d3126ed7d88f7f9d0303304969544ad39c2161524e4157d7d1658a0bf SHA512 5c02ffafaa6993b783d013c1be0c92651af598bf872a10c3f6ea84c5e709cd1b22d9c37a778e5aaccfb05533b3c88395031c50ca722e1f780fc828256e8b201e

diff --git a/dev-python/executing/executing-2.0.0.ebuild b/dev-python/executing/executing-2.0.0.ebuild
new file mode 100644
index 000000000000..b48f2ba92db0
--- /dev/null
+++ b/dev-python/executing/executing-2.0.0.ebuild
@@ -0,0 +1,46 @@
+# Copyright 2020-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..11} )
+
+inherit distutils-r1 optfeature
+
+DESCRIPTION="Get information about what a Python frame is currently doing"
+HOMEPAGE="
+	https://github.com/alexmojaki/executing/
+	https://pypi.org/project/executing/
+"
+SRC_URI="
+	https://github.com/alexmojaki/executing/archive/v${PV}.tar.gz
+		-> ${P}.gh.tar.gz
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~arm64-macos ~x64-macos"
+
+BDEPEND="
+	dev-python/setuptools-scm[${PYTHON_USEDEP}]
+	test? (
+		>=dev-python/asttokens-2.1.0[${PYTHON_USEDEP}]
+		dev-python/ipython[${PYTHON_USEDEP}]
+		dev-python/littleutils[${PYTHON_USEDEP}]
+		dev-python/rich[${PYTHON_USEDEP}]
+	)
+"
+
+distutils_enable_tests pytest
+
+export SETUPTOOLS_SCM_PRETEND_VERSION=${PV}
+
+python_test() {
+	local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
+	epytest
+}
+
+pkg_postinst() {
+	optfeature "getting node's source code" dev-python/asttokens
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/executing/
@ 2023-10-30 19:01 Michał Górny
  0 siblings, 0 replies; 123+ messages in thread
From: Michał Górny @ 2023-10-30 19:01 UTC (permalink / raw
  To: gentoo-commits

commit:     3a7bf5f8d6f4517a4f07cb9a6d5fd776e6f9ccba
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Mon Oct 30 18:36:49 2023 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Mon Oct 30 19:00:59 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3a7bf5f8

dev-python/executing: Deselect test crashing on py3.10

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/executing/executing-2.0.0.ebuild | 10 ++++++++++
 1 file changed, 10 insertions(+)

diff --git a/dev-python/executing/executing-2.0.0.ebuild b/dev-python/executing/executing-2.0.0.ebuild
index 992a4b31cee4..a5e4ed0cc8c8 100644
--- a/dev-python/executing/executing-2.0.0.ebuild
+++ b/dev-python/executing/executing-2.0.0.ebuild
@@ -37,6 +37,16 @@ distutils_enable_tests pytest
 export SETUPTOOLS_SCM_PRETEND_VERSION=${PV}
 
 python_test() {
+	local EPYTEST_DESELECT=()
+	case ${EPYTHON} in
+		python3.10)
+			EPYTEST_DESELECT+=(
+				# crashes with infinite recursion (?)
+				"tests/test_main.py::test_small_samples[1656dc52edd2385921104de7bb255ca369713f4b8c034ebeba5cf946058109bc.py]"
+			)
+			;;
+	esac
+
 	local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
 	epytest
 }


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/executing/
@ 2023-10-30 19:01 Michał Górny
  0 siblings, 0 replies; 123+ messages in thread
From: Michał Górny @ 2023-10-30 19:01 UTC (permalink / raw
  To: gentoo-commits

commit:     9b7e1637149993af04fcf6fbd919df9d6fbcc065
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Mon Oct 30 18:37:04 2023 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Mon Oct 30 19:00:59 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9b7e1637

dev-python/executing: Bump to 2.0.1

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/executing/Manifest               |  1 +
 dev-python/executing/executing-2.0.1.ebuild | 56 +++++++++++++++++++++++++++++
 2 files changed, 57 insertions(+)

diff --git a/dev-python/executing/Manifest b/dev-python/executing/Manifest
index bfb122cb3092..0d20ae828ad6 100644
--- a/dev-python/executing/Manifest
+++ b/dev-python/executing/Manifest
@@ -1,2 +1,3 @@
 DIST executing-1.2.0.gh.tar.gz 663650 BLAKE2B ba9420bfcf3805223e6b7e84d65499f3a73ef3156480586d2c5ffde4e438fcf8474f4f02c123953d04ee253de7a6a3a1b2587e57fcae546f3dae7af70a1aaa98 SHA512 c841958cc499b2d78c94570bf0556933d4a58ca5541f7a59e591be6036926ab79d5ae86bb95bbf649f3c3fb729109fe50cf04fbc72692e0cfe12edaa995ea0a6
 DIST executing-2.0.0.gh.tar.gz 837310 BLAKE2B d402a605ce80170e1789e7eec65e89da64fcbb70bbc7fcf9fb86dd6e4575312154fd969d3126ed7d88f7f9d0303304969544ad39c2161524e4157d7d1658a0bf SHA512 5c02ffafaa6993b783d013c1be0c92651af598bf872a10c3f6ea84c5e709cd1b22d9c37a778e5aaccfb05533b3c88395031c50ca722e1f780fc828256e8b201e
+DIST executing-2.0.1.gh.tar.gz 837355 BLAKE2B 7d38890eb322809c2b705f51731fe7537f81a0775d99bebb4b4ae67453930daedd947b249385babbc2373969344b643f288441fc28f3588264e4ebc23e1c389d SHA512 8a753aab42ea2d3b61764ee77de3bb52ea7fcc2818298281180ffc47c7b22ee84974ee98b2137250f722ad559be92e72e8fc01d7b2d38ab6a01512618b65d4f3

diff --git a/dev-python/executing/executing-2.0.1.ebuild b/dev-python/executing/executing-2.0.1.ebuild
new file mode 100644
index 000000000000..a5e4ed0cc8c8
--- /dev/null
+++ b/dev-python/executing/executing-2.0.1.ebuild
@@ -0,0 +1,56 @@
+# Copyright 2020-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..12} )
+
+inherit distutils-r1 optfeature
+
+DESCRIPTION="Get information about what a Python frame is currently doing"
+HOMEPAGE="
+	https://github.com/alexmojaki/executing/
+	https://pypi.org/project/executing/
+"
+SRC_URI="
+	https://github.com/alexmojaki/executing/archive/v${PV}.tar.gz
+		-> ${P}.gh.tar.gz
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~arm64-macos ~x64-macos"
+
+BDEPEND="
+	dev-python/setuptools-scm[${PYTHON_USEDEP}]
+	test? (
+		>=dev-python/asttokens-2.1.0[${PYTHON_USEDEP}]
+		dev-python/ipython[${PYTHON_USEDEP}]
+		dev-python/littleutils[${PYTHON_USEDEP}]
+		dev-python/rich[${PYTHON_USEDEP}]
+	)
+"
+
+distutils_enable_tests pytest
+
+export SETUPTOOLS_SCM_PRETEND_VERSION=${PV}
+
+python_test() {
+	local EPYTEST_DESELECT=()
+	case ${EPYTHON} in
+		python3.10)
+			EPYTEST_DESELECT+=(
+				# crashes with infinite recursion (?)
+				"tests/test_main.py::test_small_samples[1656dc52edd2385921104de7bb255ca369713f4b8c034ebeba5cf946058109bc.py]"
+			)
+			;;
+	esac
+
+	local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
+	epytest
+}
+
+pkg_postinst() {
+	optfeature "getting node's source code" dev-python/asttokens
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/executing/
@ 2023-11-10  5:47 Viorel Munteanu
  0 siblings, 0 replies; 123+ messages in thread
From: Viorel Munteanu @ 2023-11-10  5:47 UTC (permalink / raw
  To: gentoo-commits

commit:     3e61c03b5caeca55db9b67e7de5f63fb575fb95a
Author:     Matoro Mahri <matoro_gentoo <AT> matoro <DOT> tk>
AuthorDate: Thu Nov  9 01:03:30 2023 +0000
Commit:     Viorel Munteanu <ceamac <AT> gentoo <DOT> org>
CommitDate: Fri Nov 10 05:40:36 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3e61c03b

dev-python/executing: Keyword 2.0.1 alpha, #909738

Signed-off-by: Matoro Mahri <matoro_gentoo <AT> matoro.tk>
Signed-off-by: Viorel Munteanu <ceamac <AT> gentoo.org>

 dev-python/executing/executing-2.0.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/executing/executing-2.0.1.ebuild b/dev-python/executing/executing-2.0.1.ebuild
index 3e29d488d602..0a6d4915a3b7 100644
--- a/dev-python/executing/executing-2.0.1.ebuild
+++ b/dev-python/executing/executing-2.0.1.ebuild
@@ -20,7 +20,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~arm64-macos ~x64-macos"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~arm64-macos ~x64-macos"
 
 BDEPEND="
 	dev-python/setuptools-scm[${PYTHON_USEDEP}]


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/executing/
@ 2023-11-16 17:11 Michał Górny
  0 siblings, 0 replies; 123+ messages in thread
From: Michał Górny @ 2023-11-16 17:11 UTC (permalink / raw
  To: gentoo-commits

commit:     ac3c895b10e8339b63947d209fc1d016868836f1
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Thu Nov 16 16:58:49 2023 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Thu Nov 16 17:10:54 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ac3c895b

dev-python/executing: Enable pypy3

Sponsored-by: Ex Makhina, Inc. <info-gentoo <AT> exmakhina.com>
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/executing/executing-2.0.1.ebuild | 17 ++++++++++++++---
 1 file changed, 14 insertions(+), 3 deletions(-)

diff --git a/dev-python/executing/executing-2.0.1.ebuild b/dev-python/executing/executing-2.0.1.ebuild
index 0a6d4915a3b7..1adb0b4974bd 100644
--- a/dev-python/executing/executing-2.0.1.ebuild
+++ b/dev-python/executing/executing-2.0.1.ebuild
@@ -4,7 +4,7 @@
 EAPI=8
 
 DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{10..12} )
+PYTHON_COMPAT=( pypy3 python3_{10..12} )
 
 inherit distutils-r1 optfeature
 
@@ -26,13 +26,14 @@ BDEPEND="
 	dev-python/setuptools-scm[${PYTHON_USEDEP}]
 	test? (
 		>=dev-python/asttokens-2.1.0[${PYTHON_USEDEP}]
-		dev-python/ipython[${PYTHON_USEDEP}]
 		dev-python/littleutils[${PYTHON_USEDEP}]
 		dev-python/rich[${PYTHON_USEDEP}]
 	)
 "
 
-PATCHES=( "${FILESDIR}/${PN}-2.0.1-additional-slow-tests.patch" )
+PATCHES=(
+	"${FILESDIR}/${PN}-2.0.1-additional-slow-tests.patch"
+)
 
 distutils_enable_tests pytest
 
@@ -41,6 +42,11 @@ export SETUPTOOLS_SCM_PRETEND_VERSION=${PV}
 python_test() {
 	local EPYTEST_DESELECT=()
 	case ${EPYTHON} in
+		pypy3)
+			EPYTEST_DESELECT+=(
+				"tests/test_main.py::test_small_samples[46597f8f896f11c5d7f432236344cc7e5645c2a39836eb6abdd2437c0422f0f4.py]"
+			)
+			;;
 		python3.10)
 			EPYTEST_DESELECT+=(
 				# crashes with infinite recursion (?)
@@ -48,6 +54,11 @@ python_test() {
 			)
 			;;
 	esac
+	if ! has_version "dev-python/ipython[${PYTHON_USEDEP}]"; then
+		EPYTEST_DESELECT+=(
+			tests/test_ipython.py
+		)
+	fi
 
 	local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
 	epytest


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/executing/
@ 2023-11-25  8:38 Sam James
  0 siblings, 0 replies; 123+ messages in thread
From: Sam James @ 2023-11-25  8:38 UTC (permalink / raw
  To: gentoo-commits

commit:     a414ce079a853b6aa97381fefc57f74fb24c3a98
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Nov 25 08:37:39 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Nov 25 08:37:39 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a414ce07

dev-python/executing: Stabilize 2.0.1 x86, #918466

Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-python/executing/executing-2.0.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/executing/executing-2.0.1.ebuild b/dev-python/executing/executing-2.0.1.ebuild
index 1adb0b4974bd..ba8b37f9dcb6 100644
--- a/dev-python/executing/executing-2.0.1.ebuild
+++ b/dev-python/executing/executing-2.0.1.ebuild
@@ -20,7 +20,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~arm64-macos ~x64-macos"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~ppc ~ppc64 ~riscv ~s390 ~sparc x86 ~arm64-macos ~x64-macos"
 
 BDEPEND="
 	dev-python/setuptools-scm[${PYTHON_USEDEP}]


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/executing/
@ 2023-11-25  8:51 Sam James
  0 siblings, 0 replies; 123+ messages in thread
From: Sam James @ 2023-11-25  8:51 UTC (permalink / raw
  To: gentoo-commits

commit:     5be877a04cc9bb7d303ae7982d88127dbfed0a71
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Nov 25 08:51:30 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Nov 25 08:51:30 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5be877a0

dev-python/executing: Stabilize 2.0.1 arm64, #918466

Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-python/executing/executing-2.0.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/executing/executing-2.0.1.ebuild b/dev-python/executing/executing-2.0.1.ebuild
index ba8b37f9dcb6..7003f45f86e8 100644
--- a/dev-python/executing/executing-2.0.1.ebuild
+++ b/dev-python/executing/executing-2.0.1.ebuild
@@ -20,7 +20,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~ppc ~ppc64 ~riscv ~s390 ~sparc x86 ~arm64-macos ~x64-macos"
+KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~loong ~ppc ~ppc64 ~riscv ~s390 ~sparc x86 ~arm64-macos ~x64-macos"
 
 BDEPEND="
 	dev-python/setuptools-scm[${PYTHON_USEDEP}]


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/executing/
@ 2023-11-25  9:37 Arthur Zamarin
  0 siblings, 0 replies; 123+ messages in thread
From: Arthur Zamarin @ 2023-11-25  9:37 UTC (permalink / raw
  To: gentoo-commits

commit:     04cbd13de2d2172c152b52eb9f7f510e05b292a4
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat Nov 25 09:36:35 2023 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Nov 25 09:36:35 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=04cbd13d

dev-python/executing: Stabilize 2.0.1 arm, #918466

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 dev-python/executing/executing-2.0.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/executing/executing-2.0.1.ebuild b/dev-python/executing/executing-2.0.1.ebuild
index 7003f45f86e8..9149c70823bf 100644
--- a/dev-python/executing/executing-2.0.1.ebuild
+++ b/dev-python/executing/executing-2.0.1.ebuild
@@ -20,7 +20,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~loong ~ppc ~ppc64 ~riscv ~s390 ~sparc x86 ~arm64-macos ~x64-macos"
+KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~loong ~ppc ~ppc64 ~riscv ~s390 ~sparc x86 ~arm64-macos ~x64-macos"
 
 BDEPEND="
 	dev-python/setuptools-scm[${PYTHON_USEDEP}]


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/executing/
@ 2023-11-25 11:02 Sam James
  0 siblings, 0 replies; 123+ messages in thread
From: Sam James @ 2023-11-25 11:02 UTC (permalink / raw
  To: gentoo-commits

commit:     228cadf89edeec1eb5a17347bf4a6673b27cc1b3
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Nov 25 11:02:00 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Nov 25 11:02:00 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=228cadf8

dev-python/executing: Stabilize 2.0.1 amd64, #918466

Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-python/executing/executing-2.0.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/executing/executing-2.0.1.ebuild b/dev-python/executing/executing-2.0.1.ebuild
index 9149c70823bf..4a999c088374 100644
--- a/dev-python/executing/executing-2.0.1.ebuild
+++ b/dev-python/executing/executing-2.0.1.ebuild
@@ -20,7 +20,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~loong ~ppc ~ppc64 ~riscv ~s390 ~sparc x86 ~arm64-macos ~x64-macos"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~ppc ~ppc64 ~riscv ~s390 ~sparc x86 ~arm64-macos ~x64-macos"
 
 BDEPEND="
 	dev-python/setuptools-scm[${PYTHON_USEDEP}]


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/executing/
@ 2023-11-25 11:35 Arthur Zamarin
  0 siblings, 0 replies; 123+ messages in thread
From: Arthur Zamarin @ 2023-11-25 11:35 UTC (permalink / raw
  To: gentoo-commits

commit:     5c97292d72c8142a8f11e97a29f6497d3e549927
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat Nov 25 11:34:54 2023 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Nov 25 11:34:54 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5c97292d

dev-python/executing: Stabilize 2.0.1 hppa, #918466

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 dev-python/executing/executing-2.0.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/executing/executing-2.0.1.ebuild b/dev-python/executing/executing-2.0.1.ebuild
index 4a999c088374..226d26e32aba 100644
--- a/dev-python/executing/executing-2.0.1.ebuild
+++ b/dev-python/executing/executing-2.0.1.ebuild
@@ -20,7 +20,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~ppc ~ppc64 ~riscv ~s390 ~sparc x86 ~arm64-macos ~x64-macos"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~ppc ~ppc64 ~riscv ~s390 ~sparc x86 ~arm64-macos ~x64-macos"
 
 BDEPEND="
 	dev-python/setuptools-scm[${PYTHON_USEDEP}]


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/executing/
@ 2023-11-29  9:51 Arthur Zamarin
  0 siblings, 0 replies; 123+ messages in thread
From: Arthur Zamarin @ 2023-11-29  9:51 UTC (permalink / raw
  To: gentoo-commits

commit:     f1384d334c9dc3bc0f85b0601811e9e65ae63088
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Wed Nov 29 09:51:41 2023 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Wed Nov 29 09:51:41 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f1384d33

dev-python/executing: Stabilize 2.0.1 ppc, #918466

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 dev-python/executing/executing-2.0.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/executing/executing-2.0.1.ebuild b/dev-python/executing/executing-2.0.1.ebuild
index 226d26e32aba..df41384e515d 100644
--- a/dev-python/executing/executing-2.0.1.ebuild
+++ b/dev-python/executing/executing-2.0.1.ebuild
@@ -20,7 +20,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~ppc ~ppc64 ~riscv ~s390 ~sparc x86 ~arm64-macos ~x64-macos"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ppc ~ppc64 ~riscv ~s390 ~sparc x86 ~arm64-macos ~x64-macos"
 
 BDEPEND="
 	dev-python/setuptools-scm[${PYTHON_USEDEP}]


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/executing/
@ 2023-11-29 12:21 Arthur Zamarin
  0 siblings, 0 replies; 123+ messages in thread
From: Arthur Zamarin @ 2023-11-29 12:21 UTC (permalink / raw
  To: gentoo-commits

commit:     1c10834f80673735c89a6d30c0331b2b4aa5a038
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Wed Nov 29 12:21:17 2023 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Wed Nov 29 12:21:17 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1c10834f

dev-python/executing: Stabilize 2.0.1 ppc64, #918466

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 dev-python/executing/executing-2.0.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/executing/executing-2.0.1.ebuild b/dev-python/executing/executing-2.0.1.ebuild
index df41384e515d..2f54446c3c26 100644
--- a/dev-python/executing/executing-2.0.1.ebuild
+++ b/dev-python/executing/executing-2.0.1.ebuild
@@ -20,7 +20,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ppc ~ppc64 ~riscv ~s390 ~sparc x86 ~arm64-macos ~x64-macos"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ppc ppc64 ~riscv ~s390 ~sparc x86 ~arm64-macos ~x64-macos"
 
 BDEPEND="
 	dev-python/setuptools-scm[${PYTHON_USEDEP}]


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/executing/
@ 2023-11-29 12:40 Arthur Zamarin
  0 siblings, 0 replies; 123+ messages in thread
From: Arthur Zamarin @ 2023-11-29 12:40 UTC (permalink / raw
  To: gentoo-commits

commit:     5ba217b152f7083abce26711dbdef56507d02413
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Wed Nov 29 12:40:46 2023 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Wed Nov 29 12:40:46 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5ba217b1

dev-python/executing: Stabilize 2.0.1 sparc, #918466

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 dev-python/executing/executing-2.0.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/executing/executing-2.0.1.ebuild b/dev-python/executing/executing-2.0.1.ebuild
index 2f54446c3c26..6bb21080f195 100644
--- a/dev-python/executing/executing-2.0.1.ebuild
+++ b/dev-python/executing/executing-2.0.1.ebuild
@@ -20,7 +20,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ppc ppc64 ~riscv ~s390 ~sparc x86 ~arm64-macos ~x64-macos"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ppc ppc64 ~riscv ~s390 sparc x86 ~arm64-macos ~x64-macos"
 
 BDEPEND="
 	dev-python/setuptools-scm[${PYTHON_USEDEP}]


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/executing/
@ 2023-11-29 15:15 Michał Górny
  0 siblings, 0 replies; 123+ messages in thread
From: Michał Górny @ 2023-11-29 15:15 UTC (permalink / raw
  To: gentoo-commits

commit:     01bb620bd6a4809a5661228a2634e4d23331bb87
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed Nov 29 12:46:09 2023 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed Nov 29 15:13:54 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=01bb620b

dev-python/executing: Remove old

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/executing/Manifest               |  2 --
 dev-python/executing/executing-1.2.0.ebuild | 46 ------------------------
 dev-python/executing/executing-2.0.0.ebuild | 56 -----------------------------
 3 files changed, 104 deletions(-)

diff --git a/dev-python/executing/Manifest b/dev-python/executing/Manifest
index 0d20ae828ad6..d2ce7ff6f380 100644
--- a/dev-python/executing/Manifest
+++ b/dev-python/executing/Manifest
@@ -1,3 +1 @@
-DIST executing-1.2.0.gh.tar.gz 663650 BLAKE2B ba9420bfcf3805223e6b7e84d65499f3a73ef3156480586d2c5ffde4e438fcf8474f4f02c123953d04ee253de7a6a3a1b2587e57fcae546f3dae7af70a1aaa98 SHA512 c841958cc499b2d78c94570bf0556933d4a58ca5541f7a59e591be6036926ab79d5ae86bb95bbf649f3c3fb729109fe50cf04fbc72692e0cfe12edaa995ea0a6
-DIST executing-2.0.0.gh.tar.gz 837310 BLAKE2B d402a605ce80170e1789e7eec65e89da64fcbb70bbc7fcf9fb86dd6e4575312154fd969d3126ed7d88f7f9d0303304969544ad39c2161524e4157d7d1658a0bf SHA512 5c02ffafaa6993b783d013c1be0c92651af598bf872a10c3f6ea84c5e709cd1b22d9c37a778e5aaccfb05533b3c88395031c50ca722e1f780fc828256e8b201e
 DIST executing-2.0.1.gh.tar.gz 837355 BLAKE2B 7d38890eb322809c2b705f51731fe7537f81a0775d99bebb4b4ae67453930daedd947b249385babbc2373969344b643f288441fc28f3588264e4ebc23e1c389d SHA512 8a753aab42ea2d3b61764ee77de3bb52ea7fcc2818298281180ffc47c7b22ee84974ee98b2137250f722ad559be92e72e8fc01d7b2d38ab6a01512618b65d4f3

diff --git a/dev-python/executing/executing-1.2.0.ebuild b/dev-python/executing/executing-1.2.0.ebuild
deleted file mode 100644
index 5079c38a00f8..000000000000
--- a/dev-python/executing/executing-1.2.0.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 2020-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{9..11} )
-
-inherit distutils-r1 optfeature
-
-DESCRIPTION="Get information about what a Python frame is currently doing"
-HOMEPAGE="
-	https://github.com/alexmojaki/executing/
-	https://pypi.org/project/executing/
-"
-SRC_URI="
-	https://github.com/alexmojaki/executing/archive/v${PV}.tar.gz
-		-> ${P}.gh.tar.gz
-"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 arm arm64 hppa ~ia64 ~loong ppc ppc64 ~riscv ~s390 sparc x86 ~arm64-macos ~x64-macos"
-
-BDEPEND="
-	dev-python/setuptools-scm[${PYTHON_USEDEP}]
-	test? (
-		dev-python/asttokens[${PYTHON_USEDEP}]
-		dev-python/littleutils[${PYTHON_USEDEP}]
-		dev-python/rich[${PYTHON_USEDEP}]
-	)
-"
-
-distutils_enable_tests pytest
-
-export SETUPTOOLS_SCM_PRETEND_VERSION=${PV}
-
-python_test() {
-	# this test explodes when collected by pytest
-	"${EPYTHON}" tests/test_main.py || die "Tests failed with ${EPYTHON}"
-	epytest tests/test_pytest.py
-}
-
-pkg_postinst() {
-	optfeature "getting node's source code" dev-python/asttokens
-}

diff --git a/dev-python/executing/executing-2.0.0.ebuild b/dev-python/executing/executing-2.0.0.ebuild
deleted file mode 100644
index a5e4ed0cc8c8..000000000000
--- a/dev-python/executing/executing-2.0.0.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 2020-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{10..12} )
-
-inherit distutils-r1 optfeature
-
-DESCRIPTION="Get information about what a Python frame is currently doing"
-HOMEPAGE="
-	https://github.com/alexmojaki/executing/
-	https://pypi.org/project/executing/
-"
-SRC_URI="
-	https://github.com/alexmojaki/executing/archive/v${PV}.tar.gz
-		-> ${P}.gh.tar.gz
-"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~arm64-macos ~x64-macos"
-
-BDEPEND="
-	dev-python/setuptools-scm[${PYTHON_USEDEP}]
-	test? (
-		>=dev-python/asttokens-2.1.0[${PYTHON_USEDEP}]
-		dev-python/ipython[${PYTHON_USEDEP}]
-		dev-python/littleutils[${PYTHON_USEDEP}]
-		dev-python/rich[${PYTHON_USEDEP}]
-	)
-"
-
-distutils_enable_tests pytest
-
-export SETUPTOOLS_SCM_PRETEND_VERSION=${PV}
-
-python_test() {
-	local EPYTEST_DESELECT=()
-	case ${EPYTHON} in
-		python3.10)
-			EPYTEST_DESELECT+=(
-				# crashes with infinite recursion (?)
-				"tests/test_main.py::test_small_samples[1656dc52edd2385921104de7bb255ca369713f4b8c034ebeba5cf946058109bc.py]"
-			)
-			;;
-	esac
-
-	local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
-	epytest
-}
-
-pkg_postinst() {
-	optfeature "getting node's source code" dev-python/asttokens
-}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/executing/
@ 2024-07-12  7:33 Michał Górny
  0 siblings, 0 replies; 123+ messages in thread
From: Michał Górny @ 2024-07-12  7:33 UTC (permalink / raw
  To: gentoo-commits

commit:     1dfb8741f14dce2a5a22b52aa3f58dd98671927f
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Fri Jul 12 07:32:29 2024 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri Jul 12 07:33:02 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1dfb8741

dev-python/executing: Add py3.13 snapshot (2.0.2_pre20240626)

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/executing/Manifest                      |  1 +
 .../executing/executing-2.0.2_pre20240626.ebuild   | 65 ++++++++++++++++++++++
 2 files changed, 66 insertions(+)

diff --git a/dev-python/executing/Manifest b/dev-python/executing/Manifest
index d2ce7ff6f380..8ba7530c201b 100644
--- a/dev-python/executing/Manifest
+++ b/dev-python/executing/Manifest
@@ -1 +1,2 @@
 DIST executing-2.0.1.gh.tar.gz 837355 BLAKE2B 7d38890eb322809c2b705f51731fe7537f81a0775d99bebb4b4ae67453930daedd947b249385babbc2373969344b643f288441fc28f3588264e4ebc23e1c389d SHA512 8a753aab42ea2d3b61764ee77de3bb52ea7fcc2818298281180ffc47c7b22ee84974ee98b2137250f722ad559be92e72e8fc01d7b2d38ab6a01512618b65d4f3
+DIST executing-b3821ddf99132b61d8d32adfdae450e2418610ca.gh.tar.gz 983168 BLAKE2B 6f305aff1ff027efc5dc18288a1373623dc8e87f0a66f35ad6c92954fa1e6fc2422d50aaec128216efd1e090f1f69428447700b0adc8d4b61f40a777b3768c29 SHA512 049f95e363660052538b9d4c07123705663680d1c415ee43895678e4b740b3b2697c62c78e150fd14f75836727512e138c312ece7a48b2d3d11393f522b2ce60

diff --git a/dev-python/executing/executing-2.0.2_pre20240626.ebuild b/dev-python/executing/executing-2.0.2_pre20240626.ebuild
new file mode 100644
index 000000000000..2773da51d616
--- /dev/null
+++ b/dev-python/executing/executing-2.0.2_pre20240626.ebuild
@@ -0,0 +1,65 @@
+# Copyright 2020-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( pypy3 python3_{10..13} )
+
+inherit distutils-r1 optfeature
+
+# https://github.com/alexmojaki/executing/commits/3.13
+EGIT_COMMIT="b3821ddf99132b61d8d32adfdae450e2418610ca"
+MY_P="${PN}-${EGIT_COMMIT}"
+
+DESCRIPTION="Get information about what a Python frame is currently doing"
+HOMEPAGE="
+	https://github.com/alexmojaki/executing/
+	https://pypi.org/project/executing/
+"
+SRC_URI="
+	https://github.com/alexmojaki/executing/archive/${EGIT_COMMIT}.tar.gz
+		-> ${MY_P}.gh.tar.gz
+"
+S=${WORKDIR}/${MY_P}
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~arm64-macos ~x64-macos"
+
+BDEPEND="
+	dev-python/setuptools-scm[${PYTHON_USEDEP}]
+	test? (
+		>=dev-python/asttokens-2.1.0[${PYTHON_USEDEP}]
+		dev-python/littleutils[${PYTHON_USEDEP}]
+		dev-python/rich[${PYTHON_USEDEP}]
+	)
+"
+
+distutils_enable_tests pytest
+
+export SETUPTOOLS_SCM_PRETEND_VERSION=${PV/_pre/.dev}
+
+python_test() {
+	local EPYTEST_DESELECT=()
+	case ${EPYTHON} in
+		pypy3)
+			EPYTEST_DESELECT+=(
+				"tests/test_main.py::test_small_samples[22bc344a43584c051d8962116e8fd149d72e7e68bcb54caf201ee6e78986b167.py]"
+				"tests/test_main.py::test_small_samples[46597f8f896f11c5d7f432236344cc7e5645c2a39836eb6abdd2437c0422f0f4.py]"
+			)
+			;;
+	esac
+	if ! has_version "dev-python/ipython[${PYTHON_USEDEP}]"; then
+		EPYTEST_DESELECT+=(
+			tests/test_ipython.py
+		)
+	fi
+
+	local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
+	epytest
+}
+
+pkg_postinst() {
+	optfeature "getting node's source code" dev-python/asttokens
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/executing/
@ 2024-09-02  3:02 Michał Górny
  0 siblings, 0 replies; 123+ messages in thread
From: Michał Górny @ 2024-09-02  3:02 UTC (permalink / raw
  To: gentoo-commits

commit:     c53a28c3c30a6d1a35762024d7eca60265d91c27
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Mon Sep  2 02:44:08 2024 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Mon Sep  2 03:02:28 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c53a28c3

dev-python/executing: Bump to 2.1.0

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/executing/Manifest               |  1 +
 dev-python/executing/executing-2.1.0.ebuild | 60 +++++++++++++++++++++++++++++
 2 files changed, 61 insertions(+)

diff --git a/dev-python/executing/Manifest b/dev-python/executing/Manifest
index 8ba7530c201b..e2e7180fa798 100644
--- a/dev-python/executing/Manifest
+++ b/dev-python/executing/Manifest
@@ -1,2 +1,3 @@
 DIST executing-2.0.1.gh.tar.gz 837355 BLAKE2B 7d38890eb322809c2b705f51731fe7537f81a0775d99bebb4b4ae67453930daedd947b249385babbc2373969344b643f288441fc28f3588264e4ebc23e1c389d SHA512 8a753aab42ea2d3b61764ee77de3bb52ea7fcc2818298281180ffc47c7b22ee84974ee98b2137250f722ad559be92e72e8fc01d7b2d38ab6a01512618b65d4f3
+DIST executing-2.1.0.gh.tar.gz 980727 BLAKE2B 0d7a3f0a7e83a1607fdc5bd618b7484bd2eb27443568ee6542d7caad050ff7f5a2ddf71518d434059bdc5f17bff81badf393b91628754b5d6b8ec5a4dbe8146a SHA512 0918ed3eca37d55a1c19b20a959538c46d65688979e0808270b7060a25d3db44bb593d2f8de202740af9f008f273e1e7565ba5b20b90c678e070b52a12bed4cd
 DIST executing-b3821ddf99132b61d8d32adfdae450e2418610ca.gh.tar.gz 983168 BLAKE2B 6f305aff1ff027efc5dc18288a1373623dc8e87f0a66f35ad6c92954fa1e6fc2422d50aaec128216efd1e090f1f69428447700b0adc8d4b61f40a777b3768c29 SHA512 049f95e363660052538b9d4c07123705663680d1c415ee43895678e4b740b3b2697c62c78e150fd14f75836727512e138c312ece7a48b2d3d11393f522b2ce60

diff --git a/dev-python/executing/executing-2.1.0.ebuild b/dev-python/executing/executing-2.1.0.ebuild
new file mode 100644
index 000000000000..d883aa2e3471
--- /dev/null
+++ b/dev-python/executing/executing-2.1.0.ebuild
@@ -0,0 +1,60 @@
+# Copyright 2020-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( pypy3 python3_{10..13} )
+
+inherit distutils-r1 optfeature
+
+DESCRIPTION="Get information about what a Python frame is currently doing"
+HOMEPAGE="
+	https://github.com/alexmojaki/executing/
+	https://pypi.org/project/executing/
+"
+SRC_URI="
+	https://github.com/alexmojaki/executing/archive/v${PV}.tar.gz
+		-> ${P}.gh.tar.gz
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~arm64-macos ~x64-macos"
+
+BDEPEND="
+	dev-python/setuptools-scm[${PYTHON_USEDEP}]
+	test? (
+		>=dev-python/asttokens-2.1.0[${PYTHON_USEDEP}]
+		dev-python/littleutils[${PYTHON_USEDEP}]
+		dev-python/rich[${PYTHON_USEDEP}]
+	)
+"
+
+distutils_enable_tests pytest
+
+export SETUPTOOLS_SCM_PRETEND_VERSION=${PV}
+
+python_test() {
+	local EPYTEST_DESELECT=()
+	case ${EPYTHON} in
+		pypy3)
+			EPYTEST_DESELECT+=(
+				"tests/test_main.py::test_small_samples[22bc344a43584c051d8962116e8fd149d72e7e68bcb54caf201ee6e78986b167.py]"
+				"tests/test_main.py::test_small_samples[46597f8f896f11c5d7f432236344cc7e5645c2a39836eb6abdd2437c0422f0f4.py]"
+			)
+			;;
+	esac
+	if ! has_version "dev-python/ipython[${PYTHON_USEDEP}]"; then
+		EPYTEST_DESELECT+=(
+			tests/test_ipython.py
+		)
+	fi
+
+	local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
+	epytest
+}
+
+pkg_postinst() {
+	optfeature "getting node's source code" dev-python/asttokens
+}


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

end of thread, other threads:[~2024-09-02  3:02 UTC | newest]

Thread overview: 123+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-09-18 23:58 [gentoo-commits] repo/gentoo:master commit in: dev-python/executing/ Sam James
  -- strict thread matches above, loose matches on Subject: below --
2024-09-02  3:02 Michał Górny
2024-07-12  7:33 Michał Górny
2023-11-29 15:15 Michał Górny
2023-11-29 12:40 Arthur Zamarin
2023-11-29 12:21 Arthur Zamarin
2023-11-29  9:51 Arthur Zamarin
2023-11-25 11:35 Arthur Zamarin
2023-11-25 11:02 Sam James
2023-11-25  9:37 Arthur Zamarin
2023-11-25  8:51 Sam James
2023-11-25  8:38 Sam James
2023-11-16 17:11 Michał Górny
2023-11-10  5:47 Viorel Munteanu
2023-10-30 19:01 Michał Górny
2023-10-30 19:01 Michał Górny
2023-09-30 16:01 Michał Górny
2022-11-30 13:22 Michał Górny
2022-11-30 10:02 Arthur Zamarin
2022-11-30  9:56 Arthur Zamarin
2022-11-30  9:56 Arthur Zamarin
2022-11-30  9:56 Arthur Zamarin
2022-11-30  0:52 Sam James
2022-11-29 22:22 Jakov Smolić
2022-11-29  8:11 Arthur Zamarin
2022-11-29  7:28 Arthur Zamarin
2022-11-08  5:17 Michał Górny
2022-11-08  4:55 Sam James
2022-11-07 23:20 Sam James
2022-11-07 10:24 Sam James
2022-11-07 10:20 Sam James
2022-11-07 10:11 Sam James
2022-11-07  7:26 Sam James
2022-11-06  7:25 Sam James
2022-11-06  7:24 Sam James
2022-10-30  6:39 Michał Górny
2022-10-10  8:18 Arthur Zamarin
2022-10-10  8:18 Arthur Zamarin
2022-10-05  6:50 Michał Górny
2022-10-03  8:28 Agostino Sarubbo
2022-10-03  0:44 Sam James
2022-10-02 19:24 Arthur Zamarin
2022-10-02 19:17 Arthur Zamarin
2022-09-26 11:22 Michał Górny
2022-09-20  5:43 Michał Górny
2022-09-20  0:07 Sam James
2022-09-20  0:07 Sam James
2022-09-19 20:44 Jakov Smolić
2022-09-19 19:47 Arthur Zamarin
2022-09-19 19:47 Arthur Zamarin
2022-09-19 19:36 Arthur Zamarin
2022-09-19 19:33 Arthur Zamarin
2022-09-19 19:30 Arthur Zamarin
2022-08-28 20:15 Arthur Zamarin
2022-08-27  6:24 Michał Górny
2022-08-26 23:28 Sam James
2022-08-26 23:27 Sam James
2022-08-26 18:38 Arthur Zamarin
2022-08-26 18:37 Arthur Zamarin
2022-08-26 18:12 Arthur Zamarin
2022-08-26 18:12 Arthur Zamarin
2022-08-26 17:46 Arthur Zamarin
2022-08-26 17:26 Arthur Zamarin
2022-08-13 20:09 Arthur Zamarin
2022-07-29 10:12 Arthur Zamarin
2022-07-25  7:12 Michał Górny
2022-05-08  8:47 Michał Górny
2022-05-08  4:08 Sam James
2022-05-07 17:52 Arthur Zamarin
2022-05-07 17:52 Arthur Zamarin
2022-05-05  5:29 Arthur Zamarin
2022-05-02 19:03 Sam James
2022-03-20 18:11 Arthur Zamarin
2022-03-19 18:49 Arthur Zamarin
2022-03-19 18:49 Arthur Zamarin
2022-03-19 18:47 Arthur Zamarin
2022-03-18  9:16 Arthur Zamarin
2022-03-18  9:00 Arthur Zamarin
2022-03-15 18:16 Jakov Smolić
2022-02-28  8:28 Michał Górny
2022-02-04 12:04 Michał Górny
2022-01-21 12:25 Sam James
2022-01-15 11:41 Yixun Lan
2022-01-15  9:55 Arthur Zamarin
2021-10-17 19:25 Arthur Zamarin
2021-10-17 19:09 Sam James
2021-10-15 22:43 Sam James
2021-10-15 22:42 Sam James
2021-10-15 22:42 Sam James
2021-10-03  6:37 Michał Górny
2021-09-12 21:38 Michał Górny
2021-09-07 19:19 Sam James
2021-09-06  5:40 Agostino Sarubbo
2021-09-05 20:01 Agostino Sarubbo
2021-09-05  6:02 Sam James
2021-09-04 21:57 Michał Górny
2021-08-09  0:35 Sam James
2021-08-07 23:37 Sam James
2021-08-07 14:43 Sam James
2021-08-01  8:17 Michał Górny
2021-07-06  7:13 Michał Górny
2021-05-26 13:31 Michał Górny
2021-05-26 13:17 Sam James
2021-05-26  8:11 Sam James
2021-05-25 16:55 Sam James
2021-04-19  7:23 Michał Górny
2021-03-03 19:08 Michał Górny
2021-03-03 18:59 Sam James
2021-03-03 13:54 Sam James
2021-03-02  4:40 Sam James
2021-03-02  4:39 Sam James
2021-01-18 14:52 Sam James
2020-12-27 19:43 Michał Górny
2020-11-20 13:42 Sam James
2020-11-18 10:45 Sam James
2020-11-14 19:00 Sam James
2020-10-19 20:13 Sam James
2020-10-17 19:01 Michał Górny
2020-09-16  3:01 Sam James
2020-09-13  9:04 Sam James
2020-09-13  8:59 Sam James
2020-09-13  7:01 Sam James
2020-09-10  8:49 Michał Górny

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