public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: dev-python/subprocess-tee/
@ 2021-06-11 15:05 Marek Szuba
  0 siblings, 0 replies; 21+ messages in thread
From: Marek Szuba @ 2021-06-11 15:05 UTC (permalink / raw
  To: gentoo-commits

commit:     3dc800ff3af15fada8130302b8cb49e042f8afa7
Author:     Marek Szuba <marecki <AT> gentoo <DOT> org>
AuthorDate: Fri Jun 11 15:00:52 2021 +0000
Commit:     Marek Szuba <marecki <AT> gentoo <DOT> org>
CommitDate: Fri Jun 11 15:05:44 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3dc800ff

dev-python/subprocess-tee: initial import

Builds, tests and installs fine on all implementations listed in
PYTHON_COMPAT. Needs a bit more work because it installs its own test suite
as a submodule, though.

Signed-off-by: Marek Szuba <marecki <AT> gentoo.org>

 dev-python/subprocess-tee/Manifest                 |  1 +
 dev-python/subprocess-tee/metadata.xml             | 13 ++++++++
 .../subprocess-tee/subprocess-tee-0.3.2.ebuild     | 38 ++++++++++++++++++++++
 3 files changed, 52 insertions(+)

diff --git a/dev-python/subprocess-tee/Manifest b/dev-python/subprocess-tee/Manifest
new file mode 100644
index 00000000000..cb2773b8f7a
--- /dev/null
+++ b/dev-python/subprocess-tee/Manifest
@@ -0,0 +1 @@
+DIST subprocess-tee-0.3.2.tar.gz 14975 BLAKE2B 3198832f4c8bbf90e83038e39017cff1efc61ede84aded8220214e388a088777bdb861c044cddbf4b07c7b3172f8164e8bbf82b33de68d1fefea0f81bbacdfc9 SHA512 e681abc27623a3e05031bc05dc15e34f82c9cb544cd16742855411a9edb11fe8e38f9d11f8e651681d04081f121a47c38ebd172d70d282c8110a62699ef687d6

diff --git a/dev-python/subprocess-tee/metadata.xml b/dev-python/subprocess-tee/metadata.xml
new file mode 100644
index 00000000000..228103910a3
--- /dev/null
+++ b/dev-python/subprocess-tee/metadata.xml
@@ -0,0 +1,13 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<maintainer type="person">
+		<email>marecki@gentoo.org</email>
+		<name>Marek Szuba</name>
+	</maintainer>
+	<stabilize-allarches/>
+	<upstream>
+		<remote-id type="github">pycontribs/subprocess-tee</remote-id>
+		<remote-id type="pypi">subprocess-tee</remote-id>
+	</upstream>
+</pkgmetadata>

diff --git a/dev-python/subprocess-tee/subprocess-tee-0.3.2.ebuild b/dev-python/subprocess-tee/subprocess-tee-0.3.2.ebuild
new file mode 100644
index 00000000000..2b37121c39f
--- /dev/null
+++ b/dev-python/subprocess-tee/subprocess-tee-0.3.2.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{8..10} )
+
+inherit distutils-r1
+
+DESCRIPTION="subprocess.run replacement with tee(1)-like output"
+HOMEPAGE="https://github.com/pycontribs/subprocess-tee"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+
+BDEPEND="dev-python/setuptools_scm[${PYTHON_USEDEP}]
+	dev-python/setuptools_scm_git_archive[${PYTHON_USEDEP}]
+	test? (
+		$(python_gen_cond_dep '
+			dev-python/enrich[${PYTHON_USEDEP}]
+		' python3_{8,9})
+	)"
+
+distutils_enable_tests pytest
+
+# dev-python/{,en}rich ebuilds do not support python3_10 yet
+# We test fine (modulo some deprecation warnings) against 3.10 under tox, though.
+python_test() {
+	if [[ ${EPYTHON} == "python3.10" ]]; then
+		ewarn "Skipping tests for ${EPYTHON} due to missing dependencies"
+		return 0
+	fi
+	distutils-r1_python_test
+}
+
+# TODO: do not install subprocess_tee.test


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/subprocess-tee/
@ 2021-06-14 12:39 Marek Szuba
  0 siblings, 0 replies; 21+ messages in thread
From: Marek Szuba @ 2021-06-14 12:39 UTC (permalink / raw
  To: gentoo-commits

commit:     a702aa08b7f990e73d2395bf71ca97b6c9c54460
Author:     Marek Szuba <marecki <AT> gentoo <DOT> org>
AuthorDate: Mon Jun 14 08:47:37 2021 +0000
Commit:     Marek Szuba <marecki <AT> gentoo <DOT> org>
CommitDate: Mon Jun 14 12:38:40 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a702aa08

dev-python/subprocess-tee: remove obsolete TODO note

Signed-off-by: Marek Szuba <marecki <AT> gentoo.org>

 dev-python/subprocess-tee/subprocess-tee-0.3.2.ebuild | 2 --
 1 file changed, 2 deletions(-)

diff --git a/dev-python/subprocess-tee/subprocess-tee-0.3.2.ebuild b/dev-python/subprocess-tee/subprocess-tee-0.3.2.ebuild
index 2b37121c39f..6fe160cd6d1 100644
--- a/dev-python/subprocess-tee/subprocess-tee-0.3.2.ebuild
+++ b/dev-python/subprocess-tee/subprocess-tee-0.3.2.ebuild
@@ -34,5 +34,3 @@ python_test() {
 	fi
 	distutils-r1_python_test
 }
-
-# TODO: do not install subprocess_tee.test


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/subprocess-tee/
@ 2021-09-15 15:14 Marek Szuba
  0 siblings, 0 replies; 21+ messages in thread
From: Marek Szuba @ 2021-09-15 15:14 UTC (permalink / raw
  To: gentoo-commits

commit:     970de4b3bfc40e95ece0350f5926d36d0c74c91d
Author:     Marek Szuba <marecki <AT> gentoo <DOT> org>
AuthorDate: Wed Sep 15 15:12:34 2021 +0000
Commit:     Marek Szuba <marecki <AT> gentoo <DOT> org>
CommitDate: Wed Sep 15 15:12:34 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=970de4b3

dev-python/subprocess-tee: add 0.3.4

Signed-off-by: Marek Szuba <marecki <AT> gentoo.org>

 dev-python/subprocess-tee/Manifest                 |  1 +
 .../subprocess-tee/subprocess-tee-0.3.4.ebuild     | 40 ++++++++++++++++++++++
 2 files changed, 41 insertions(+)

diff --git a/dev-python/subprocess-tee/Manifest b/dev-python/subprocess-tee/Manifest
index cb2773b8f7a..d3173fa0871 100644
--- a/dev-python/subprocess-tee/Manifest
+++ b/dev-python/subprocess-tee/Manifest
@@ -1 +1,2 @@
 DIST subprocess-tee-0.3.2.tar.gz 14975 BLAKE2B 3198832f4c8bbf90e83038e39017cff1efc61ede84aded8220214e388a088777bdb861c044cddbf4b07c7b3172f8164e8bbf82b33de68d1fefea0f81bbacdfc9 SHA512 e681abc27623a3e05031bc05dc15e34f82c9cb544cd16742855411a9edb11fe8e38f9d11f8e651681d04081f121a47c38ebd172d70d282c8110a62699ef687d6
+DIST subprocess-tee-0.3.4.tar.gz 16013 BLAKE2B 6a98caa111a73ef7062f26796dd3e919d05103ae4de88e2c5ce3acc04d9fbde6b31e39a1cee1984fd8d59b8168ab33faf7ff15c916d52a226ff2cb760fd8c796 SHA512 6a97ddc75b7e7954bb7f5f3bf05807e8dd892869cc13e60344c5f40363bdff4ec5441f829cfbcb8c3c4ab7f7b2697c0b1d4a871be8164acd7cfb6fea5032ae4b

diff --git a/dev-python/subprocess-tee/subprocess-tee-0.3.4.ebuild b/dev-python/subprocess-tee/subprocess-tee-0.3.4.ebuild
new file mode 100644
index 00000000000..cf66fc20271
--- /dev/null
+++ b/dev-python/subprocess-tee/subprocess-tee-0.3.4.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..10} )
+
+inherit distutils-r1
+
+DESCRIPTION="subprocess.run replacement with tee(1)-like output"
+HOMEPAGE="https://github.com/pycontribs/subprocess-tee"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+
+BDEPEND="dev-python/setuptools_scm[${PYTHON_USEDEP}]
+	dev-python/setuptools_scm_git_archive[${PYTHON_USEDEP}]
+	test? (
+		$(python_gen_cond_dep '
+			dev-python/enrich[${PYTHON_USEDEP}]
+		' python3_{8,9})
+	)"
+
+distutils_enable_tests pytest
+# Depends on app-admin/ansible-molecule, which pulls in A LOT of other
+# ebuilds - including subprocess-tee itself. Too much trouble for a single
+# test if you ask me.
+EPYTEST_DESELECT=( "src/${PN/-/_}/test/test_func.py::test_molecule" )
+
+# dev-python/{,en}rich ebuilds do not support python3_10 yet.
+# We test fine (modulo some deprecation warnings) against 3.10 under tox, though.
+python_test() {
+	if [[ ${EPYTHON} == "python3.10" ]]; then
+		ewarn "Skipping tests for ${EPYTHON} due to missing dependencies"
+		return 0
+	fi
+	distutils-r1_python_test
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/subprocess-tee/
@ 2021-09-16 15:19 Marek Szuba
  0 siblings, 0 replies; 21+ messages in thread
From: Marek Szuba @ 2021-09-16 15:19 UTC (permalink / raw
  To: gentoo-commits

commit:     3ec0cde123bdf9de1a4c28b312fb2e43a9d57733
Author:     Marek Szuba <marecki <AT> gentoo <DOT> org>
AuthorDate: Thu Sep 16 15:18:28 2021 +0000
Commit:     Marek Szuba <marecki <AT> gentoo <DOT> org>
CommitDate: Thu Sep 16 15:19:30 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3ec0cde1

dev-python/subprocess-tee: make it possible to run heavy tests

Signed-off-by: Marek Szuba <marecki <AT> gentoo.org>

 dev-python/subprocess-tee/metadata.xml                |  7 +++++++
 dev-python/subprocess-tee/subprocess-tee-0.3.4.ebuild | 12 ++++++++----
 2 files changed, 15 insertions(+), 4 deletions(-)

diff --git a/dev-python/subprocess-tee/metadata.xml b/dev-python/subprocess-tee/metadata.xml
index 89509cbe280..b512ef6a117 100644
--- a/dev-python/subprocess-tee/metadata.xml
+++ b/dev-python/subprocess-tee/metadata.xml
@@ -10,4 +10,11 @@
 		<remote-id type="github">pycontribs/subprocess-tee</remote-id>
 		<remote-id type="pypi">subprocess-tee</remote-id>
 	</upstream>
+	<use>
+		<flag name="test-full">
+			Enable full test mode. Pulls in many additional dependencies,
+			and requires having been emerged without this flag first
+			in order to avoid a circular dependency.
+		</flag>
+	</use>
 </pkgmetadata>

diff --git a/dev-python/subprocess-tee/subprocess-tee-0.3.4.ebuild b/dev-python/subprocess-tee/subprocess-tee-0.3.4.ebuild
index cf66fc20271..c17411cbabe 100644
--- a/dev-python/subprocess-tee/subprocess-tee-0.3.4.ebuild
+++ b/dev-python/subprocess-tee/subprocess-tee-0.3.4.ebuild
@@ -14,20 +14,21 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 LICENSE="MIT"
 SLOT="0"
 KEYWORDS="~amd64"
+IUSE="test-full"
 
+REQUIRED_USE="test-full? ( test )"
+
+# ansible-molecule is invoked as an executable so no need for PYTHON_USEDEP
 BDEPEND="dev-python/setuptools_scm[${PYTHON_USEDEP}]
 	dev-python/setuptools_scm_git_archive[${PYTHON_USEDEP}]
 	test? (
 		$(python_gen_cond_dep '
 			dev-python/enrich[${PYTHON_USEDEP}]
 		' python3_{8,9})
+		test-full? ( app-admin/ansible-molecule )
 	)"
 
 distutils_enable_tests pytest
-# Depends on app-admin/ansible-molecule, which pulls in A LOT of other
-# ebuilds - including subprocess-tee itself. Too much trouble for a single
-# test if you ask me.
-EPYTEST_DESELECT=( "src/${PN/-/_}/test/test_func.py::test_molecule" )
 
 # dev-python/{,en}rich ebuilds do not support python3_10 yet.
 # We test fine (modulo some deprecation warnings) against 3.10 under tox, though.
@@ -36,5 +37,8 @@ python_test() {
 		ewarn "Skipping tests for ${EPYTHON} due to missing dependencies"
 		return 0
 	fi
+	if ! use test-full; then
+		local -x EPYTEST_DESELECT=( "src/${PN/-/_}/test/test_func.py::test_molecule" )
+	fi
 	distutils-r1_python_test
 }


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

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

commit:     e7c83aacf6366655f1b4ca6385d807ffc71ed876
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed Oct  6 07:22:09 2021 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed Oct  6 07:22:09 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e7c83aac

dev-python/subprocess-tee: Bump to 0.3.5

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

 dev-python/subprocess-tee/Manifest                 |  1 +
 .../subprocess-tee/subprocess-tee-0.3.5.ebuild     | 43 ++++++++++++++++++++++
 2 files changed, 44 insertions(+)

diff --git a/dev-python/subprocess-tee/Manifest b/dev-python/subprocess-tee/Manifest
index d3173fa0871..0a0e1960550 100644
--- a/dev-python/subprocess-tee/Manifest
+++ b/dev-python/subprocess-tee/Manifest
@@ -1,2 +1,3 @@
 DIST subprocess-tee-0.3.2.tar.gz 14975 BLAKE2B 3198832f4c8bbf90e83038e39017cff1efc61ede84aded8220214e388a088777bdb861c044cddbf4b07c7b3172f8164e8bbf82b33de68d1fefea0f81bbacdfc9 SHA512 e681abc27623a3e05031bc05dc15e34f82c9cb544cd16742855411a9edb11fe8e38f9d11f8e651681d04081f121a47c38ebd172d70d282c8110a62699ef687d6
 DIST subprocess-tee-0.3.4.tar.gz 16013 BLAKE2B 6a98caa111a73ef7062f26796dd3e919d05103ae4de88e2c5ce3acc04d9fbde6b31e39a1cee1984fd8d59b8168ab33faf7ff15c916d52a226ff2cb760fd8c796 SHA512 6a97ddc75b7e7954bb7f5f3bf05807e8dd892869cc13e60344c5f40363bdff4ec5441f829cfbcb8c3c4ab7f7b2697c0b1d4a871be8164acd7cfb6fea5032ae4b
+DIST subprocess-tee-0.3.5.tar.gz 16887 BLAKE2B 6eb25085eb2b2ee4557efd556d8035ab8f6b781b47783f24f227db04b3f82fffcfa29d69f0e3588c3fa6188446a3d96d4421e6b1ea5b3292f42635e19a404bab SHA512 47de075e7b6c75598dac0ad1899e1cce9dc1131b49c35ccade2b67c8d2a2d0248ce22a20c336519ff00bfd57269613bc663012e48cf0afa087c93ee74e18e4d4

diff --git a/dev-python/subprocess-tee/subprocess-tee-0.3.5.ebuild b/dev-python/subprocess-tee/subprocess-tee-0.3.5.ebuild
new file mode 100644
index 00000000000..80f643d8365
--- /dev/null
+++ b/dev-python/subprocess-tee/subprocess-tee-0.3.5.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..10} )
+inherit distutils-r1
+
+DESCRIPTION="subprocess.run replacement with tee(1)-like output"
+HOMEPAGE="https://github.com/pycontribs/subprocess-tee"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="test-full"
+
+REQUIRED_USE="test-full? ( test )"
+
+# ansible-molecule is invoked as an executable so no need for PYTHON_USEDEP
+BDEPEND="dev-python/setuptools_scm[${PYTHON_USEDEP}]
+	dev-python/setuptools_scm_git_archive[${PYTHON_USEDEP}]
+	test? (
+		$(python_gen_cond_dep '
+			dev-python/enrich[${PYTHON_USEDEP}]
+		' python3_{8,9})
+		test-full? ( app-admin/ansible-molecule )
+	)"
+
+distutils_enable_tests pytest
+
+# dev-python/{,en}rich ebuilds do not support python3_10 yet.
+# We test fine (modulo some deprecation warnings) against 3.10 under tox, though.
+python_test() {
+	if [[ ${EPYTHON} == "python3.10" ]]; then
+		ewarn "Skipping tests for ${EPYTHON} due to missing dependencies"
+		return 0
+	fi
+	if ! use test-full; then
+		local -x EPYTEST_DESELECT=( "src/${PN/-/_}/test/test_func.py::test_molecule" )
+	fi
+	distutils-r1_python_test
+}


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

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

commit:     eb7b5f3225404a80c2a773ac9188b42d674a7e3e
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Thu Oct  7 06:40:45 2021 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Thu Oct  7 07:21:10 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eb7b5f32

dev-python/subprocess-tee: Enable testing on py3.10

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

 dev-python/subprocess-tee/subprocess-tee-0.3.5.ebuild | 11 +----------
 1 file changed, 1 insertion(+), 10 deletions(-)

diff --git a/dev-python/subprocess-tee/subprocess-tee-0.3.5.ebuild b/dev-python/subprocess-tee/subprocess-tee-0.3.5.ebuild
index 80f643d8365..c715a596b1a 100644
--- a/dev-python/subprocess-tee/subprocess-tee-0.3.5.ebuild
+++ b/dev-python/subprocess-tee/subprocess-tee-0.3.5.ebuild
@@ -14,28 +14,19 @@ LICENSE="MIT"
 SLOT="0"
 KEYWORDS="~amd64"
 IUSE="test-full"
-
 REQUIRED_USE="test-full? ( test )"
 
 # ansible-molecule is invoked as an executable so no need for PYTHON_USEDEP
 BDEPEND="dev-python/setuptools_scm[${PYTHON_USEDEP}]
 	dev-python/setuptools_scm_git_archive[${PYTHON_USEDEP}]
 	test? (
-		$(python_gen_cond_dep '
-			dev-python/enrich[${PYTHON_USEDEP}]
-		' python3_{8,9})
+		dev-python/enrich[${PYTHON_USEDEP}]
 		test-full? ( app-admin/ansible-molecule )
 	)"
 
 distutils_enable_tests pytest
 
-# dev-python/{,en}rich ebuilds do not support python3_10 yet.
-# We test fine (modulo some deprecation warnings) against 3.10 under tox, though.
 python_test() {
-	if [[ ${EPYTHON} == "python3.10" ]]; then
-		ewarn "Skipping tests for ${EPYTHON} due to missing dependencies"
-		return 0
-	fi
 	if ! use test-full; then
 		local -x EPYTEST_DESELECT=( "src/${PN/-/_}/test/test_func.py::test_molecule" )
 	fi


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/subprocess-tee/
@ 2021-10-17  9:41 Michał Górny
  0 siblings, 0 replies; 21+ messages in thread
From: Michał Górny @ 2021-10-17  9:41 UTC (permalink / raw
  To: gentoo-commits

commit:     94a1a587121898866aede182b4e432472d1fa4c2
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sun Oct 17 09:35:08 2021 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun Oct 17 09:35:08 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=94a1a587

dev-python/subprocess-tee: Remove old

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

 dev-python/subprocess-tee/Manifest                 |  2 -
 .../subprocess-tee/subprocess-tee-0.3.2.ebuild     | 36 ------------------
 .../subprocess-tee/subprocess-tee-0.3.4.ebuild     | 44 ----------------------
 3 files changed, 82 deletions(-)

diff --git a/dev-python/subprocess-tee/Manifest b/dev-python/subprocess-tee/Manifest
index 0a0e1960550..34f583554fc 100644
--- a/dev-python/subprocess-tee/Manifest
+++ b/dev-python/subprocess-tee/Manifest
@@ -1,3 +1 @@
-DIST subprocess-tee-0.3.2.tar.gz 14975 BLAKE2B 3198832f4c8bbf90e83038e39017cff1efc61ede84aded8220214e388a088777bdb861c044cddbf4b07c7b3172f8164e8bbf82b33de68d1fefea0f81bbacdfc9 SHA512 e681abc27623a3e05031bc05dc15e34f82c9cb544cd16742855411a9edb11fe8e38f9d11f8e651681d04081f121a47c38ebd172d70d282c8110a62699ef687d6
-DIST subprocess-tee-0.3.4.tar.gz 16013 BLAKE2B 6a98caa111a73ef7062f26796dd3e919d05103ae4de88e2c5ce3acc04d9fbde6b31e39a1cee1984fd8d59b8168ab33faf7ff15c916d52a226ff2cb760fd8c796 SHA512 6a97ddc75b7e7954bb7f5f3bf05807e8dd892869cc13e60344c5f40363bdff4ec5441f829cfbcb8c3c4ab7f7b2697c0b1d4a871be8164acd7cfb6fea5032ae4b
 DIST subprocess-tee-0.3.5.tar.gz 16887 BLAKE2B 6eb25085eb2b2ee4557efd556d8035ab8f6b781b47783f24f227db04b3f82fffcfa29d69f0e3588c3fa6188446a3d96d4421e6b1ea5b3292f42635e19a404bab SHA512 47de075e7b6c75598dac0ad1899e1cce9dc1131b49c35ccade2b67c8d2a2d0248ce22a20c336519ff00bfd57269613bc663012e48cf0afa087c93ee74e18e4d4

diff --git a/dev-python/subprocess-tee/subprocess-tee-0.3.2.ebuild b/dev-python/subprocess-tee/subprocess-tee-0.3.2.ebuild
deleted file mode 100644
index 6fe160cd6d1..00000000000
--- a/dev-python/subprocess-tee/subprocess-tee-0.3.2.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{8..10} )
-
-inherit distutils-r1
-
-DESCRIPTION="subprocess.run replacement with tee(1)-like output"
-HOMEPAGE="https://github.com/pycontribs/subprocess-tee"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64"
-
-BDEPEND="dev-python/setuptools_scm[${PYTHON_USEDEP}]
-	dev-python/setuptools_scm_git_archive[${PYTHON_USEDEP}]
-	test? (
-		$(python_gen_cond_dep '
-			dev-python/enrich[${PYTHON_USEDEP}]
-		' python3_{8,9})
-	)"
-
-distutils_enable_tests pytest
-
-# dev-python/{,en}rich ebuilds do not support python3_10 yet
-# We test fine (modulo some deprecation warnings) against 3.10 under tox, though.
-python_test() {
-	if [[ ${EPYTHON} == "python3.10" ]]; then
-		ewarn "Skipping tests for ${EPYTHON} due to missing dependencies"
-		return 0
-	fi
-	distutils-r1_python_test
-}

diff --git a/dev-python/subprocess-tee/subprocess-tee-0.3.4.ebuild b/dev-python/subprocess-tee/subprocess-tee-0.3.4.ebuild
deleted file mode 100644
index c17411cbabe..00000000000
--- a/dev-python/subprocess-tee/subprocess-tee-0.3.4.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{8..10} )
-
-inherit distutils-r1
-
-DESCRIPTION="subprocess.run replacement with tee(1)-like output"
-HOMEPAGE="https://github.com/pycontribs/subprocess-tee"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="test-full"
-
-REQUIRED_USE="test-full? ( test )"
-
-# ansible-molecule is invoked as an executable so no need for PYTHON_USEDEP
-BDEPEND="dev-python/setuptools_scm[${PYTHON_USEDEP}]
-	dev-python/setuptools_scm_git_archive[${PYTHON_USEDEP}]
-	test? (
-		$(python_gen_cond_dep '
-			dev-python/enrich[${PYTHON_USEDEP}]
-		' python3_{8,9})
-		test-full? ( app-admin/ansible-molecule )
-	)"
-
-distutils_enable_tests pytest
-
-# dev-python/{,en}rich ebuilds do not support python3_10 yet.
-# We test fine (modulo some deprecation warnings) against 3.10 under tox, though.
-python_test() {
-	if [[ ${EPYTHON} == "python3.10" ]]; then
-		ewarn "Skipping tests for ${EPYTHON} due to missing dependencies"
-		return 0
-	fi
-	if ! use test-full; then
-		local -x EPYTEST_DESELECT=( "src/${PN/-/_}/test/test_func.py::test_molecule" )
-	fi
-	distutils-r1_python_test
-}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/subprocess-tee/
@ 2022-04-01  8:18 Marek Szuba
  0 siblings, 0 replies; 21+ messages in thread
From: Marek Szuba @ 2022-04-01  8:18 UTC (permalink / raw
  To: gentoo-commits

commit:     065e50d3b5c76eca5bcb1639b85292a57f999b75
Author:     Marek Szuba <marecki <AT> gentoo <DOT> org>
AuthorDate: Fri Apr  1 08:14:16 2022 +0000
Commit:     Marek Szuba <marecki <AT> gentoo <DOT> org>
CommitDate: Fri Apr  1 08:18:11 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=065e50d3

dev-python/subprocess-tee: keyword 0.3.5 for ~riscv

Signed-off-by: Marek Szuba <marecki <AT> gentoo.org>

 dev-python/subprocess-tee/subprocess-tee-0.3.5.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/subprocess-tee/subprocess-tee-0.3.5.ebuild b/dev-python/subprocess-tee/subprocess-tee-0.3.5.ebuild
index c715a596b1ae..ea05ad858dc4 100644
--- a/dev-python/subprocess-tee/subprocess-tee-0.3.5.ebuild
+++ b/dev-python/subprocess-tee/subprocess-tee-0.3.5.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -12,7 +12,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="~amd64 ~riscv"
 IUSE="test-full"
 REQUIRED_USE="test-full? ( test )"
 


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/subprocess-tee/
@ 2022-06-05  5:52 Michał Górny
  0 siblings, 0 replies; 21+ messages in thread
From: Michał Górny @ 2022-06-05  5:52 UTC (permalink / raw
  To: gentoo-commits

commit:     772d2801f95e804cff31931133c4c13a29b979ff
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sun Jun  5 05:50:10 2022 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun Jun  5 05:50:10 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=772d2801

dev-python/subprocess-tee: Add python@ as co-maint.

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

 dev-python/subprocess-tee/metadata.xml | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/dev-python/subprocess-tee/metadata.xml b/dev-python/subprocess-tee/metadata.xml
index b512ef6a1174..143a4000daa5 100644
--- a/dev-python/subprocess-tee/metadata.xml
+++ b/dev-python/subprocess-tee/metadata.xml
@@ -5,6 +5,10 @@
 		<email>marecki@gentoo.org</email>
 		<name>Marek Szuba</name>
 	</maintainer>
+	<maintainer type="project">
+		<email>python@gentoo.org</email>
+		<name>Python</name>
+	</maintainer>
 	<stabilize-allarches/>
 	<upstream>
 		<remote-id type="github">pycontribs/subprocess-tee</remote-id>


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/subprocess-tee/
@ 2022-09-21 14:00 Marek Szuba
  0 siblings, 0 replies; 21+ messages in thread
From: Marek Szuba @ 2022-09-21 14:00 UTC (permalink / raw
  To: gentoo-commits

commit:     2a5f1d52d1136dec315f717d2f1491b2ea78a7d1
Author:     Marek Szuba <marecki <AT> gentoo <DOT> org>
AuthorDate: Wed Sep 21 13:24:51 2022 +0000
Commit:     Marek Szuba <marecki <AT> gentoo <DOT> org>
CommitDate: Wed Sep 21 14:00:05 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2a5f1d52

dev-python/subprocess-tee: enable py3.11 + PEP-517 mode

Signed-off-by: Marek Szuba <marecki <AT> gentoo.org>

 dev-python/subprocess-tee/subprocess-tee-0.3.5.ebuild | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/dev-python/subprocess-tee/subprocess-tee-0.3.5.ebuild b/dev-python/subprocess-tee/subprocess-tee-0.3.5.ebuild
index 07ec6f767cea..3c4eaee3f160 100644
--- a/dev-python/subprocess-tee/subprocess-tee-0.3.5.ebuild
+++ b/dev-python/subprocess-tee/subprocess-tee-0.3.5.ebuild
@@ -3,7 +3,9 @@
 
 EAPI=8
 
-PYTHON_COMPAT=( python3_{8..10} )
+PYTHON_COMPAT=( python3_{8..11} )
+DISTUTILS_USE_PEP517=setuptools
+
 inherit distutils-r1
 
 DESCRIPTION="subprocess.run replacement with tee(1)-like output"


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/subprocess-tee/
@ 2022-09-21 14:00 Marek Szuba
  0 siblings, 0 replies; 21+ messages in thread
From: Marek Szuba @ 2022-09-21 14:00 UTC (permalink / raw
  To: gentoo-commits

commit:     bc02e16fabc12a287f4beb0c628218458ca1d67a
Author:     Marek Szuba <marecki <AT> gentoo <DOT> org>
AuthorDate: Wed Sep 21 13:23:23 2022 +0000
Commit:     Marek Szuba <marecki <AT> gentoo <DOT> org>
CommitDate: Wed Sep 21 14:00:04 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bc02e16f

dev-python/subprocess-tee: skip tests triggering issues with dev-python/enrich

Closes: https://bugs.gentoo.org/866051
Signed-off-by: Marek Szuba <marecki <AT> gentoo.org>

 dev-python/subprocess-tee/subprocess-tee-0.3.5.ebuild | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/dev-python/subprocess-tee/subprocess-tee-0.3.5.ebuild b/dev-python/subprocess-tee/subprocess-tee-0.3.5.ebuild
index ea05ad858dc4..07ec6f767cea 100644
--- a/dev-python/subprocess-tee/subprocess-tee-0.3.5.ebuild
+++ b/dev-python/subprocess-tee/subprocess-tee-0.3.5.ebuild
@@ -24,11 +24,17 @@ BDEPEND="dev-python/setuptools_scm[${PYTHON_USEDEP}]
 		test-full? ( app-admin/ansible-molecule )
 	)"
 
+# With the exception of a handful of extra lines this is literally the same test suite
+# as test_console.py from dev-python/enrich, which is currently known to fail (Bug #865497).
+EPYTEST_DESELECT=(
+	src/subprocess_tee/test/test_rich.py
+)
+
 distutils_enable_tests pytest
 
 python_test() {
 	if ! use test-full; then
-		local -x EPYTEST_DESELECT=( "src/${PN/-/_}/test/test_func.py::test_molecule" )
+		EPYTEST_DESELECT+=( "src/${PN/-/_}/test/test_func.py::test_molecule" )
 	fi
 	distutils-r1_python_test
 }


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/subprocess-tee/
@ 2022-09-27  7:06 Agostino Sarubbo
  0 siblings, 0 replies; 21+ messages in thread
From: Agostino Sarubbo @ 2022-09-27  7:06 UTC (permalink / raw
  To: gentoo-commits

commit:     d9bd9d4d772f64c8a82431e84c18e5eabd4988d5
Author:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Tue Sep 27 07:05:24 2022 +0000
Commit:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Tue Sep 27 07:05:24 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d9bd9d4d

dev-python/subprocess-tee: Stabilize 0.3.5 amd64, #872965

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

 dev-python/subprocess-tee/subprocess-tee-0.3.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/subprocess-tee/subprocess-tee-0.3.5.ebuild b/dev-python/subprocess-tee/subprocess-tee-0.3.5.ebuild
index 3c4eaee3f160..44be8ed7fe5e 100644
--- a/dev-python/subprocess-tee/subprocess-tee-0.3.5.ebuild
+++ b/dev-python/subprocess-tee/subprocess-tee-0.3.5.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~riscv"
+KEYWORDS="amd64 ~riscv"
 IUSE="test-full"
 REQUIRED_USE="test-full? ( test )"
 


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

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

commit:     3fa049ba9799de85d0b32c50157b791dcdaf4942
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Fri Nov 25 04:45:50 2022 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri Nov 25 05:14:23 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3fa049ba

dev-python/subprocess-tee: Bump to 0.4.0

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

 dev-python/subprocess-tee/Manifest                 |  1 +
 .../subprocess-tee/subprocess-tee-0.4.0.ebuild     | 46 ++++++++++++++++++++++
 2 files changed, 47 insertions(+)

diff --git a/dev-python/subprocess-tee/Manifest b/dev-python/subprocess-tee/Manifest
index 34f583554fcf..e343a8b1fd30 100644
--- a/dev-python/subprocess-tee/Manifest
+++ b/dev-python/subprocess-tee/Manifest
@@ -1 +1,2 @@
 DIST subprocess-tee-0.3.5.tar.gz 16887 BLAKE2B 6eb25085eb2b2ee4557efd556d8035ab8f6b781b47783f24f227db04b3f82fffcfa29d69f0e3588c3fa6188446a3d96d4421e6b1ea5b3292f42635e19a404bab SHA512 47de075e7b6c75598dac0ad1899e1cce9dc1131b49c35ccade2b67c8d2a2d0248ce22a20c336519ff00bfd57269613bc663012e48cf0afa087c93ee74e18e4d4
+DIST subprocess-tee-0.4.0.tar.gz 12815 BLAKE2B 0a536daca56dd441848eaaeb3d53384349debdfe7b83458a89ff9e9d44cf63d4cae9eb6436705494cbb15282594a3ad0ce1c8dd51bfb6f79128c6855ab3b2c82 SHA512 944f978c87d612a7846709106b7857761288ef9e6923bf0b69e20cc493b7dbcf51c16867ed7b3038a1d2f180108972c35e8d9fe380542b56c7c68320caf9321b

diff --git a/dev-python/subprocess-tee/subprocess-tee-0.4.0.ebuild b/dev-python/subprocess-tee/subprocess-tee-0.4.0.ebuild
new file mode 100644
index 000000000000..998ec933fddb
--- /dev/null
+++ b/dev-python/subprocess-tee/subprocess-tee-0.4.0.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..11} )
+DISTUTILS_USE_PEP517=setuptools
+
+inherit distutils-r1
+
+DESCRIPTION="subprocess.run replacement with tee(1)-like output"
+HOMEPAGE="
+	https://github.com/pycontribs/subprocess-tee/
+	https://pypi.org/project/subprocess-tee/
+"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~riscv"
+IUSE="test-full"
+REQUIRED_USE="test-full? ( test )"
+
+# ansible-molecule is invoked as an executable so no need for PYTHON_USEDEP
+BDEPEND="
+	dev-python/setuptools_scm[${PYTHON_USEDEP}]
+	dev-python/setuptools_scm_git_archive[${PYTHON_USEDEP}]
+	test? (
+		dev-python/enrich[${PYTHON_USEDEP}]
+		test-full? ( app-admin/ansible-molecule )
+	)
+"
+
+distutils_enable_tests pytest
+
+python_test() {
+	local EPYTEST_DESELECT=()
+
+	if ! use test-full; then
+		EPYTEST_DESELECT+=(
+			test/test_func.py::test_molecule
+		)
+	fi
+
+	epytest
+}


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

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

commit:     75209004bb1eb76e7a71c893f3c39371845791ab
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sun Dec 18 05:44:55 2022 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun Dec 18 07:27:39 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=75209004

dev-python/subprocess-tee: Bump to 0.4.1

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

 dev-python/subprocess-tee/Manifest                 |  1 +
 .../subprocess-tee/subprocess-tee-0.4.1.ebuild     | 45 ++++++++++++++++++++++
 2 files changed, 46 insertions(+)

diff --git a/dev-python/subprocess-tee/Manifest b/dev-python/subprocess-tee/Manifest
index e343a8b1fd30..88b5ae2c3e91 100644
--- a/dev-python/subprocess-tee/Manifest
+++ b/dev-python/subprocess-tee/Manifest
@@ -1,2 +1,3 @@
 DIST subprocess-tee-0.3.5.tar.gz 16887 BLAKE2B 6eb25085eb2b2ee4557efd556d8035ab8f6b781b47783f24f227db04b3f82fffcfa29d69f0e3588c3fa6188446a3d96d4421e6b1ea5b3292f42635e19a404bab SHA512 47de075e7b6c75598dac0ad1899e1cce9dc1131b49c35ccade2b67c8d2a2d0248ce22a20c336519ff00bfd57269613bc663012e48cf0afa087c93ee74e18e4d4
 DIST subprocess-tee-0.4.0.tar.gz 12815 BLAKE2B 0a536daca56dd441848eaaeb3d53384349debdfe7b83458a89ff9e9d44cf63d4cae9eb6436705494cbb15282594a3ad0ce1c8dd51bfb6f79128c6855ab3b2c82 SHA512 944f978c87d612a7846709106b7857761288ef9e6923bf0b69e20cc493b7dbcf51c16867ed7b3038a1d2f180108972c35e8d9fe380542b56c7c68320caf9321b
+DIST subprocess-tee-0.4.1.tar.gz 13599 BLAKE2B 779a8b5381155e8d524b6715ab9cc37f8e55565dd378a2d256648d56f018dc71860b0db2a50572a5e03fab7d2de5cd691be53c49c1aa79e756b4eb8a8d5878a5 SHA512 683813096c4bb78a4263075ba8590a926134ec92db5e2e72ed98ab1db9e231768adc15bb4273ba138f9a1b2a14ae4050d0b6acc76d483d0f3530f376ce8d9eee

diff --git a/dev-python/subprocess-tee/subprocess-tee-0.4.1.ebuild b/dev-python/subprocess-tee/subprocess-tee-0.4.1.ebuild
new file mode 100644
index 000000000000..100597cf333b
--- /dev/null
+++ b/dev-python/subprocess-tee/subprocess-tee-0.4.1.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..11} )
+DISTUTILS_USE_PEP517=setuptools
+
+inherit distutils-r1
+
+DESCRIPTION="subprocess.run replacement with tee(1)-like output"
+HOMEPAGE="
+	https://github.com/pycontribs/subprocess-tee/
+	https://pypi.org/project/subprocess-tee/
+"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~riscv"
+IUSE="test-full"
+REQUIRED_USE="test-full? ( test )"
+
+# ansible-molecule is invoked as an executable so no need for PYTHON_USEDEP
+BDEPEND="
+	>=dev-python/setuptools_scm-7.0.0[${PYTHON_USEDEP}]
+	test? (
+		dev-python/enrich[${PYTHON_USEDEP}]
+		test-full? ( app-admin/ansible-molecule )
+	)
+"
+
+distutils_enable_tests pytest
+
+python_test() {
+	local EPYTEST_DESELECT=()
+
+	if ! use test-full; then
+		EPYTEST_DESELECT+=(
+			test/test_func.py::test_molecule
+		)
+	fi
+
+	epytest
+}


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

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

commit:     337aa411d2438b71601626fde69e0d248a17dc8a
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Dec 25 16:45:30 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Dec 25 16:45:30 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=337aa411

dev-python/subprocess-tee: Stabilize 0.4.1 ALLARCHES, #888407

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

 dev-python/subprocess-tee/subprocess-tee-0.4.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/subprocess-tee/subprocess-tee-0.4.1.ebuild b/dev-python/subprocess-tee/subprocess-tee-0.4.1.ebuild
index 100597cf333b..e2d047b2cc2c 100644
--- a/dev-python/subprocess-tee/subprocess-tee-0.4.1.ebuild
+++ b/dev-python/subprocess-tee/subprocess-tee-0.4.1.ebuild
@@ -17,7 +17,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~riscv"
+KEYWORDS="amd64 ~riscv"
 IUSE="test-full"
 REQUIRED_USE="test-full? ( test )"
 


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

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

commit:     484b99af390ddebc1a9f184fa023f424c60a8f6a
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sun Dec 25 17:47:51 2022 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun Dec 25 17:49:58 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=484b99af

dev-python/subprocess-tee: Remove old

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

 dev-python/subprocess-tee/Manifest                 |  2 -
 .../subprocess-tee/subprocess-tee-0.3.5.ebuild     | 42 --------------------
 .../subprocess-tee/subprocess-tee-0.4.0.ebuild     | 46 ----------------------
 3 files changed, 90 deletions(-)

diff --git a/dev-python/subprocess-tee/Manifest b/dev-python/subprocess-tee/Manifest
index 88b5ae2c3e91..37ace876f6e8 100644
--- a/dev-python/subprocess-tee/Manifest
+++ b/dev-python/subprocess-tee/Manifest
@@ -1,3 +1 @@
-DIST subprocess-tee-0.3.5.tar.gz 16887 BLAKE2B 6eb25085eb2b2ee4557efd556d8035ab8f6b781b47783f24f227db04b3f82fffcfa29d69f0e3588c3fa6188446a3d96d4421e6b1ea5b3292f42635e19a404bab SHA512 47de075e7b6c75598dac0ad1899e1cce9dc1131b49c35ccade2b67c8d2a2d0248ce22a20c336519ff00bfd57269613bc663012e48cf0afa087c93ee74e18e4d4
-DIST subprocess-tee-0.4.0.tar.gz 12815 BLAKE2B 0a536daca56dd441848eaaeb3d53384349debdfe7b83458a89ff9e9d44cf63d4cae9eb6436705494cbb15282594a3ad0ce1c8dd51bfb6f79128c6855ab3b2c82 SHA512 944f978c87d612a7846709106b7857761288ef9e6923bf0b69e20cc493b7dbcf51c16867ed7b3038a1d2f180108972c35e8d9fe380542b56c7c68320caf9321b
 DIST subprocess-tee-0.4.1.tar.gz 13599 BLAKE2B 779a8b5381155e8d524b6715ab9cc37f8e55565dd378a2d256648d56f018dc71860b0db2a50572a5e03fab7d2de5cd691be53c49c1aa79e756b4eb8a8d5878a5 SHA512 683813096c4bb78a4263075ba8590a926134ec92db5e2e72ed98ab1db9e231768adc15bb4273ba138f9a1b2a14ae4050d0b6acc76d483d0f3530f376ce8d9eee

diff --git a/dev-python/subprocess-tee/subprocess-tee-0.3.5.ebuild b/dev-python/subprocess-tee/subprocess-tee-0.3.5.ebuild
deleted file mode 100644
index 44be8ed7fe5e..000000000000
--- a/dev-python/subprocess-tee/subprocess-tee-0.3.5.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{8..11} )
-DISTUTILS_USE_PEP517=setuptools
-
-inherit distutils-r1
-
-DESCRIPTION="subprocess.run replacement with tee(1)-like output"
-HOMEPAGE="https://github.com/pycontribs/subprocess-tee"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 ~riscv"
-IUSE="test-full"
-REQUIRED_USE="test-full? ( test )"
-
-# ansible-molecule is invoked as an executable so no need for PYTHON_USEDEP
-BDEPEND="dev-python/setuptools_scm[${PYTHON_USEDEP}]
-	dev-python/setuptools_scm_git_archive[${PYTHON_USEDEP}]
-	test? (
-		dev-python/enrich[${PYTHON_USEDEP}]
-		test-full? ( app-admin/ansible-molecule )
-	)"
-
-# With the exception of a handful of extra lines this is literally the same test suite
-# as test_console.py from dev-python/enrich, which is currently known to fail (Bug #865497).
-EPYTEST_DESELECT=(
-	src/subprocess_tee/test/test_rich.py
-)
-
-distutils_enable_tests pytest
-
-python_test() {
-	if ! use test-full; then
-		EPYTEST_DESELECT+=( "src/${PN/-/_}/test/test_func.py::test_molecule" )
-	fi
-	distutils-r1_python_test
-}

diff --git a/dev-python/subprocess-tee/subprocess-tee-0.4.0.ebuild b/dev-python/subprocess-tee/subprocess-tee-0.4.0.ebuild
deleted file mode 100644
index 998ec933fddb..000000000000
--- a/dev-python/subprocess-tee/subprocess-tee-0.4.0.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{8..11} )
-DISTUTILS_USE_PEP517=setuptools
-
-inherit distutils-r1
-
-DESCRIPTION="subprocess.run replacement with tee(1)-like output"
-HOMEPAGE="
-	https://github.com/pycontribs/subprocess-tee/
-	https://pypi.org/project/subprocess-tee/
-"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~riscv"
-IUSE="test-full"
-REQUIRED_USE="test-full? ( test )"
-
-# ansible-molecule is invoked as an executable so no need for PYTHON_USEDEP
-BDEPEND="
-	dev-python/setuptools_scm[${PYTHON_USEDEP}]
-	dev-python/setuptools_scm_git_archive[${PYTHON_USEDEP}]
-	test? (
-		dev-python/enrich[${PYTHON_USEDEP}]
-		test-full? ( app-admin/ansible-molecule )
-	)
-"
-
-distutils_enable_tests pytest
-
-python_test() {
-	local EPYTEST_DESELECT=()
-
-	if ! use test-full; then
-		EPYTEST_DESELECT+=(
-			test/test_func.py::test_molecule
-		)
-	fi
-
-	epytest
-}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/subprocess-tee/
@ 2023-11-04 18:03 Michał Górny
  0 siblings, 0 replies; 21+ messages in thread
From: Michał Górny @ 2023-11-04 18:03 UTC (permalink / raw
  To: gentoo-commits

commit:     e84dc4db7b204ed07ba85c849c7bec9d42ad38d0
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Nov  4 17:14:48 2023 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Nov  4 18:03:15 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e84dc4db

dev-python/subprocess-tee: Enable py3.12

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

 dev-python/subprocess-tee/subprocess-tee-0.4.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/subprocess-tee/subprocess-tee-0.4.1.ebuild b/dev-python/subprocess-tee/subprocess-tee-0.4.1.ebuild
index 66074e9ff463..50630e278d00 100644
--- a/dev-python/subprocess-tee/subprocess-tee-0.4.1.ebuild
+++ b/dev-python/subprocess-tee/subprocess-tee-0.4.1.ebuild
@@ -3,9 +3,9 @@
 
 EAPI=8
 
-PYTHON_COMPAT=( python3_{9..11} )
 DISTUTILS_USE_PEP517=setuptools
 PYPI_NO_NORMALIZE=1
+PYTHON_COMPAT=( python3_{10..12} )
 
 inherit distutils-r1 pypi
 


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/subprocess-tee/
@ 2024-05-18  9:41 Michał Górny
  0 siblings, 0 replies; 21+ messages in thread
From: Michał Górny @ 2024-05-18  9:41 UTC (permalink / raw
  To: gentoo-commits

commit:     7b3105d0f81d9f71cfdcdd121f101933c1a61506
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat May 18 09:34:24 2024 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat May 18 09:39:06 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7b3105d0

dev-python/subprocess-tee: Enable py3.13

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

 dev-python/subprocess-tee/subprocess-tee-0.4.1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/subprocess-tee/subprocess-tee-0.4.1.ebuild b/dev-python/subprocess-tee/subprocess-tee-0.4.1.ebuild
index 7fe26d7f68c5..c88d963d66ba 100644
--- a/dev-python/subprocess-tee/subprocess-tee-0.4.1.ebuild
+++ b/dev-python/subprocess-tee/subprocess-tee-0.4.1.ebuild
@@ -1,11 +1,11 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
 
 DISTUTILS_USE_PEP517=setuptools
 PYPI_NO_NORMALIZE=1
-PYTHON_COMPAT=( python3_{10..12} )
+PYTHON_COMPAT=( python3_{10..13} )
 
 inherit distutils-r1 pypi
 


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/subprocess-tee/
@ 2024-06-18  4:45 Michał Górny
  0 siblings, 0 replies; 21+ messages in thread
From: Michał Górny @ 2024-06-18  4:45 UTC (permalink / raw
  To: gentoo-commits

commit:     5864bf1922fb399703e53798631b93812aa3f33f
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Tue Jun 18 04:08:00 2024 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Tue Jun 18 04:26:33 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5864bf19

dev-python/subprocess-tee: Bump to 0.4.2

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

 dev-python/subprocess-tee/Manifest                 |  1 +
 .../subprocess-tee/subprocess-tee-0.4.2.ebuild     | 44 ++++++++++++++++++++++
 2 files changed, 45 insertions(+)

diff --git a/dev-python/subprocess-tee/Manifest b/dev-python/subprocess-tee/Manifest
index 37ace876f6e8..2b9e1875172d 100644
--- a/dev-python/subprocess-tee/Manifest
+++ b/dev-python/subprocess-tee/Manifest
@@ -1 +1,2 @@
 DIST subprocess-tee-0.4.1.tar.gz 13599 BLAKE2B 779a8b5381155e8d524b6715ab9cc37f8e55565dd378a2d256648d56f018dc71860b0db2a50572a5e03fab7d2de5cd691be53c49c1aa79e756b4eb8a8d5878a5 SHA512 683813096c4bb78a4263075ba8590a926134ec92db5e2e72ed98ab1db9e231768adc15bb4273ba138f9a1b2a14ae4050d0b6acc76d483d0f3530f376ce8d9eee
+DIST subprocess_tee-0.4.2.tar.gz 14951 BLAKE2B b94a8adc779bfbfd17046c4c85c9fb4020a0ca4de11735ec672a90e3be93d09d5f2ec60184e12bce86864b6ef22fedd0927dbb26267cb763d197c54bb4f342ed SHA512 acb0103b8a9ba6288e42148062e82b37b625f5c518e195c4d6e32efd2d5d9841ac6f2c2b240d223e7cdecc643daaa3d86c63a6bc34ca7b48e187cbf968e5dae5

diff --git a/dev-python/subprocess-tee/subprocess-tee-0.4.2.ebuild b/dev-python/subprocess-tee/subprocess-tee-0.4.2.ebuild
new file mode 100644
index 000000000000..4ad64b4adb34
--- /dev/null
+++ b/dev-python/subprocess-tee/subprocess-tee-0.4.2.ebuild
@@ -0,0 +1,44 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..13} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="subprocess.run replacement with tee(1)-like output"
+HOMEPAGE="
+	https://github.com/pycontribs/subprocess-tee/
+	https://pypi.org/project/subprocess-tee/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~riscv"
+IUSE="test-full"
+REQUIRED_USE="test-full? ( test )"
+
+# ansible-molecule is invoked as an executable so no need for PYTHON_USEDEP
+BDEPEND="
+	>=dev-python/setuptools-scm-7.0.0[${PYTHON_USEDEP}]
+	test? (
+		dev-python/enrich[${PYTHON_USEDEP}]
+		test-full? ( app-admin/ansible-molecule )
+	)
+"
+
+distutils_enable_tests pytest
+
+python_test() {
+	local EPYTEST_DESELECT=()
+
+	if ! use test-full; then
+		EPYTEST_DESELECT+=(
+			test/test_func.py::test_molecule
+		)
+	fi
+
+	epytest
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/subprocess-tee/
@ 2024-07-06  6:56 Arthur Zamarin
  0 siblings, 0 replies; 21+ messages in thread
From: Arthur Zamarin @ 2024-07-06  6:56 UTC (permalink / raw
  To: gentoo-commits

commit:     22ebe94c33a464fc265af372f33938efd5da71ea
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat Jul  6 06:56:33 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Jul  6 06:56:33 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=22ebe94c

dev-python/subprocess-tee: Stabilize 0.4.2 ALLARCHES, #935601

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

 dev-python/subprocess-tee/subprocess-tee-0.4.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/subprocess-tee/subprocess-tee-0.4.2.ebuild b/dev-python/subprocess-tee/subprocess-tee-0.4.2.ebuild
index 4ad64b4adb34..7abc5cf978c2 100644
--- a/dev-python/subprocess-tee/subprocess-tee-0.4.2.ebuild
+++ b/dev-python/subprocess-tee/subprocess-tee-0.4.2.ebuild
@@ -16,7 +16,7 @@ HOMEPAGE="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~riscv"
+KEYWORDS="amd64 ~arm64 ~riscv"
 IUSE="test-full"
 REQUIRED_USE="test-full? ( test )"
 


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/subprocess-tee/
@ 2024-07-06  8:33 Michał Górny
  0 siblings, 0 replies; 21+ messages in thread
From: Michał Górny @ 2024-07-06  8:33 UTC (permalink / raw
  To: gentoo-commits

commit:     c13804efb26f4668e12847d8e1f3c4a6c3462c01
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Jul  6 08:16:03 2024 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Jul  6 08:33:34 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c13804ef

dev-python/subprocess-tee: Remove old

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

 dev-python/subprocess-tee/Manifest                 |  1 -
 .../subprocess-tee/subprocess-tee-0.4.1.ebuild     | 45 ----------------------
 2 files changed, 46 deletions(-)

diff --git a/dev-python/subprocess-tee/Manifest b/dev-python/subprocess-tee/Manifest
index 2b9e1875172d..19c5841e2bbe 100644
--- a/dev-python/subprocess-tee/Manifest
+++ b/dev-python/subprocess-tee/Manifest
@@ -1,2 +1 @@
-DIST subprocess-tee-0.4.1.tar.gz 13599 BLAKE2B 779a8b5381155e8d524b6715ab9cc37f8e55565dd378a2d256648d56f018dc71860b0db2a50572a5e03fab7d2de5cd691be53c49c1aa79e756b4eb8a8d5878a5 SHA512 683813096c4bb78a4263075ba8590a926134ec92db5e2e72ed98ab1db9e231768adc15bb4273ba138f9a1b2a14ae4050d0b6acc76d483d0f3530f376ce8d9eee
 DIST subprocess_tee-0.4.2.tar.gz 14951 BLAKE2B b94a8adc779bfbfd17046c4c85c9fb4020a0ca4de11735ec672a90e3be93d09d5f2ec60184e12bce86864b6ef22fedd0927dbb26267cb763d197c54bb4f342ed SHA512 acb0103b8a9ba6288e42148062e82b37b625f5c518e195c4d6e32efd2d5d9841ac6f2c2b240d223e7cdecc643daaa3d86c63a6bc34ca7b48e187cbf968e5dae5

diff --git a/dev-python/subprocess-tee/subprocess-tee-0.4.1.ebuild b/dev-python/subprocess-tee/subprocess-tee-0.4.1.ebuild
deleted file mode 100644
index c88d963d66ba..000000000000
--- a/dev-python/subprocess-tee/subprocess-tee-0.4.1.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYPI_NO_NORMALIZE=1
-PYTHON_COMPAT=( python3_{10..13} )
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="subprocess.run replacement with tee(1)-like output"
-HOMEPAGE="
-	https://github.com/pycontribs/subprocess-tee/
-	https://pypi.org/project/subprocess-tee/
-"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 ~arm64 ~riscv"
-IUSE="test-full"
-REQUIRED_USE="test-full? ( test )"
-
-# ansible-molecule is invoked as an executable so no need for PYTHON_USEDEP
-BDEPEND="
-	>=dev-python/setuptools-scm-7.0.0[${PYTHON_USEDEP}]
-	test? (
-		dev-python/enrich[${PYTHON_USEDEP}]
-		test-full? ( app-admin/ansible-molecule )
-	)
-"
-
-distutils_enable_tests pytest
-
-python_test() {
-	local EPYTEST_DESELECT=()
-
-	if ! use test-full; then
-		EPYTEST_DESELECT+=(
-			test/test_func.py::test_molecule
-		)
-	fi
-
-	epytest
-}


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

end of thread, other threads:[~2024-07-06  8:33 UTC | newest]

Thread overview: 21+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-11-25  5:14 [gentoo-commits] repo/gentoo:master commit in: dev-python/subprocess-tee/ Michał Górny
  -- strict thread matches above, loose matches on Subject: below --
2024-07-06  8:33 Michał Górny
2024-07-06  6:56 Arthur Zamarin
2024-06-18  4:45 Michał Górny
2024-05-18  9:41 Michał Górny
2023-11-04 18:03 Michał Górny
2022-12-25 17:50 Michał Górny
2022-12-25 16:45 Sam James
2022-12-18  7:27 Michał Górny
2022-09-27  7:06 Agostino Sarubbo
2022-09-21 14:00 Marek Szuba
2022-09-21 14:00 Marek Szuba
2022-06-05  5:52 Michał Górny
2022-04-01  8:18 Marek Szuba
2021-10-17  9:41 Michał Górny
2021-10-07  7:21 Michał Górny
2021-10-06  7:46 Michał Górny
2021-09-16 15:19 Marek Szuba
2021-09-15 15:14 Marek Szuba
2021-06-14 12:39 Marek Szuba
2021-06-11 15:05 Marek Szuba

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