public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: dev-python/unittest-or-fail/
@ 2024-07-06 16:39 Michał Górny
  0 siblings, 0 replies; 38+ messages in thread
From: Michał Górny @ 2024-07-06 16:39 UTC (permalink / raw
  To: gentoo-commits

commit:     40f62ca6b3ababb3f6c62ce0807bcffb63f1c0b6
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Jul  6 16:35:18 2024 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Jul  6 16:37:50 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=40f62ca6

dev-python/unittest-or-fail: Make py3.12 and py3.13 support fake

Do not install any files for Python 3.12 or 3.13, but keep them
in PYTHON_COMPAT to make dependency graphs happier.

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

 .../unittest-or-fail/unittest-or-fail-2-r1.ebuild  | 45 ++++++++++++++++++++++
 1 file changed, 45 insertions(+)

diff --git a/dev-python/unittest-or-fail/unittest-or-fail-2-r1.ebuild b/dev-python/unittest-or-fail/unittest-or-fail-2-r1.ebuild
new file mode 100644
index 000000000000..522d10ee8ad3
--- /dev/null
+++ b/dev-python/unittest-or-fail/unittest-or-fail-2-r1.ebuild
@@ -0,0 +1,45 @@
+# Copyright 2021-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=flit
+# in py3.12+ unittest already fails when no tests are found
+# we're adding these impls to PYTHON_COMPAT to clean up upgrade graphs
+# but we're not installing anything
+PYTHON_USED=( pypy3 python3_{10..11} )
+PYTHON_COMPAT=( "${PYTHON_USED[@]}" python3_{12..13} )
+
+inherit distutils-r1
+
+DESCRIPTION="Run unittests or fail if no tests were found"
+HOMEPAGE="https://github.com/projg2/unittest-or-fail/"
+SRC_URI="
+	https://github.com/projg2/unittest-or-fail/archive/v${PV}.tar.gz
+		-> ${P}.tar.gz
+"
+
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris"
+
+python_compile() {
+	if has "${EPYTHON/./_}" "${PYTHON_USED[@]}"; then
+		distutils-r1_python_compile
+	fi
+}
+
+# Warning: do not use distutils_enable_tests to avoid a circular
+# dependency on itself!
+python_test() {
+	if has "${EPYTHON/./_}" "${PYTHON_USED[@]}"; then
+		"${EPYTHON}" -m unittest -v test/test_unittest_or_fail.py ||
+			die "Tests failed with ${EPYTHON}"
+	fi
+}
+
+python_install() {
+	if has "${EPYTHON/./_}" "${PYTHON_USED[@]}"; then
+		distutils-r1_python_install
+	fi
+}


^ permalink raw reply related	[flat|nested] 38+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/unittest-or-fail/
@ 2024-07-27  9:44 Michał Górny
  0 siblings, 0 replies; 38+ messages in thread
From: Michał Górny @ 2024-07-27  9:44 UTC (permalink / raw
  To: gentoo-commits

commit:     c64da07b2033a2a6f0732aa035ff903eaa20df34
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Jul 27 09:41:03 2024 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Jul 27 09:44:15 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c64da07b

dev-python/unittest-or-fail: Remove old

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

 .../unittest-or-fail/unittest-or-fail-2.ebuild     | 34 ----------------------
 1 file changed, 34 deletions(-)

diff --git a/dev-python/unittest-or-fail/unittest-or-fail-2.ebuild b/dev-python/unittest-or-fail/unittest-or-fail-2.ebuild
deleted file mode 100644
index e71959e95147..000000000000
--- a/dev-python/unittest-or-fail/unittest-or-fail-2.ebuild
+++ /dev/null
@@ -1,34 +0,0 @@
-# Copyright 2021-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=flit
-PYTHON_COMPAT=( python3_{10..12} pypy3 )
-
-inherit distutils-r1
-
-DESCRIPTION="Run unittests or fail if no tests were found"
-HOMEPAGE="https://github.com/projg2/unittest-or-fail/"
-SRC_URI="
-	https://github.com/projg2/unittest-or-fail/archive/v${PV}.tar.gz
-		-> ${P}.tar.gz
-"
-
-LICENSE="BSD-2"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris"
-
-# Warning: do not use distutils_enable_tests to avoid a circular
-# dependency on itself!
-python_test() {
-	# unittest fails in python3.12 by default, and it is more strict
-	# than the behavior expected from unittest-or-fail.  We only add
-	# 3.12 compat to workaround a pkgcheck limitation, so no point
-	# in fixing the tests.
-	# https://github.com/pkgcore/pkgcheck/issues/584
-	[[ ${EPYTHON} == python3.12 ]] && return
-
-	"${EPYTHON}" -m unittest -v test/test_unittest_or_fail.py ||
-		die "Tests failed with ${EPYTHON}"
-}


^ permalink raw reply related	[flat|nested] 38+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/unittest-or-fail/
@ 2024-07-27  6:44 Arthur Zamarin
  0 siblings, 0 replies; 38+ messages in thread
From: Arthur Zamarin @ 2024-07-27  6:44 UTC (permalink / raw
  To: gentoo-commits

commit:     476ce90c61d120c8a56be1e7c271111f967ac9ac
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat Jul 27 06:44:49 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Jul 27 06:44:49 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=476ce90c

dev-python/unittest-or-fail: Stabilize 2-r1 ALLARCHES, #936728

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

 dev-python/unittest-or-fail/unittest-or-fail-2-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/unittest-or-fail/unittest-or-fail-2-r1.ebuild b/dev-python/unittest-or-fail/unittest-or-fail-2-r1.ebuild
index 522d10ee8ad3..79c06c9a6b9b 100644
--- a/dev-python/unittest-or-fail/unittest-or-fail-2-r1.ebuild
+++ b/dev-python/unittest-or-fail/unittest-or-fail-2-r1.ebuild
@@ -21,7 +21,7 @@ SRC_URI="
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris"
 
 python_compile() {
 	if has "${EPYTHON/./_}" "${PYTHON_USED[@]}"; then


^ permalink raw reply related	[flat|nested] 38+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/unittest-or-fail/
@ 2023-10-20 14:55 Michał Górny
  0 siblings, 0 replies; 38+ messages in thread
From: Michał Górny @ 2023-10-20 14:55 UTC (permalink / raw
  To: gentoo-commits

commit:     1df93ed6766178d4dc701e3e8a3ad3a6f5c3ebd8
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Fri Oct 20 14:54:48 2023 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri Oct 20 14:54:48 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1df93ed6

dev-python/unittest-or-fail: Enable py3.12

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

 dev-python/unittest-or-fail/unittest-or-fail-2.ebuild | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/dev-python/unittest-or-fail/unittest-or-fail-2.ebuild b/dev-python/unittest-or-fail/unittest-or-fail-2.ebuild
index 58339b522c59..e71959e95147 100644
--- a/dev-python/unittest-or-fail/unittest-or-fail-2.ebuild
+++ b/dev-python/unittest-or-fail/unittest-or-fail-2.ebuild
@@ -4,7 +4,7 @@
 EAPI=8
 
 DISTUTILS_USE_PEP517=flit
-PYTHON_COMPAT=( python3_{9..11} pypy3 )
+PYTHON_COMPAT=( python3_{10..12} pypy3 )
 
 inherit distutils-r1
 
@@ -22,6 +22,13 @@ KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv
 # Warning: do not use distutils_enable_tests to avoid a circular
 # dependency on itself!
 python_test() {
+	# unittest fails in python3.12 by default, and it is more strict
+	# than the behavior expected from unittest-or-fail.  We only add
+	# 3.12 compat to workaround a pkgcheck limitation, so no point
+	# in fixing the tests.
+	# https://github.com/pkgcore/pkgcheck/issues/584
+	[[ ${EPYTHON} == python3.12 ]] && return
+
 	"${EPYTHON}" -m unittest -v test/test_unittest_or_fail.py ||
 		die "Tests failed with ${EPYTHON}"
 }


^ permalink raw reply related	[flat|nested] 38+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/unittest-or-fail/
@ 2023-03-09  7:38 Arthur Zamarin
  0 siblings, 0 replies; 38+ messages in thread
From: Arthur Zamarin @ 2023-03-09  7:38 UTC (permalink / raw
  To: gentoo-commits

commit:     32e53f1c98f2af02db173e49fbb92ac9aa79875c
Author:     Michael Mair-Keimberger <mmk <AT> levelnine <DOT> at>
AuthorDate: Mon Mar  6 17:13:02 2023 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Thu Mar  9 07:35:11 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=32e53f1c

dev-python/unittest-or-fail: update HOMEPAGE

Signed-off-by: Michael Mair-Keimberger <mmk <AT> levelnine.at>
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 dev-python/unittest-or-fail/metadata.xml              | 2 +-
 dev-python/unittest-or-fail/unittest-or-fail-2.ebuild | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/dev-python/unittest-or-fail/metadata.xml b/dev-python/unittest-or-fail/metadata.xml
index 662f8d0104c2..ea822a7564ad 100644
--- a/dev-python/unittest-or-fail/metadata.xml
+++ b/dev-python/unittest-or-fail/metadata.xml
@@ -11,6 +11,6 @@
 	</maintainer>
 	<stabilize-allarches/>
 	<upstream>
-		<remote-id type="github">mgorny/unittest-or-fail</remote-id>
+		<remote-id type="github">projg2/unittest-or-fail</remote-id>
 	</upstream>
 </pkgmetadata>

diff --git a/dev-python/unittest-or-fail/unittest-or-fail-2.ebuild b/dev-python/unittest-or-fail/unittest-or-fail-2.ebuild
index 836c19f34702..1887c7ff8366 100644
--- a/dev-python/unittest-or-fail/unittest-or-fail-2.ebuild
+++ b/dev-python/unittest-or-fail/unittest-or-fail-2.ebuild
@@ -9,9 +9,9 @@ PYTHON_COMPAT=( python3_{9..11} pypy3 )
 inherit distutils-r1
 
 DESCRIPTION="Run unittests or fail if no tests were found"
-HOMEPAGE="https://github.com/mgorny/unittest-or-fail/"
+HOMEPAGE="https://github.com/projg2/unittest-or-fail/"
 SRC_URI="
-	https://github.com/mgorny/unittest-or-fail/archive/v${PV}.tar.gz
+	https://github.com/projg2/unittest-or-fail/archive/v${PV}.tar.gz
 		-> ${P}.tar.gz
 "
 


^ permalink raw reply related	[flat|nested] 38+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/unittest-or-fail/
@ 2022-07-28 12:00 Sam James
  0 siblings, 0 replies; 38+ messages in thread
From: Sam James @ 2022-07-28 12:00 UTC (permalink / raw
  To: gentoo-commits

commit:     c1cc40b262016e9bd70f9b1755cd6d5ab4006478
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Jul 28 11:54:56 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Jul 28 11:59:06 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c1cc40b2

dev-python/unittest-or-fail: add github upstream metadata

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

 dev-python/unittest-or-fail/metadata.xml | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/dev-python/unittest-or-fail/metadata.xml b/dev-python/unittest-or-fail/metadata.xml
index eee9476c87e8..662f8d0104c2 100644
--- a/dev-python/unittest-or-fail/metadata.xml
+++ b/dev-python/unittest-or-fail/metadata.xml
@@ -10,4 +10,7 @@
 		<name>Python</name>
 	</maintainer>
 	<stabilize-allarches/>
+	<upstream>
+		<remote-id type="github">mgorny/unittest-or-fail</remote-id>
+	</upstream>
 </pkgmetadata>


^ permalink raw reply related	[flat|nested] 38+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/unittest-or-fail/
@ 2022-05-31  7:22 Michał Górny
  0 siblings, 0 replies; 38+ messages in thread
From: Michał Górny @ 2022-05-31  7:22 UTC (permalink / raw
  To: gentoo-commits

commit:     7e732b68d56957485076535bfc6da269a3ea456f
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Tue May 31 07:21:01 2022 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Tue May 31 07:22:52 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7e732b68

dev-python/unittest-or-fail: Remove old

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

 dev-python/unittest-or-fail/Manifest               |  1 -
 .../unittest-or-fail/unittest-or-fail-1-r1.ebuild  | 26 ----------------------
 2 files changed, 27 deletions(-)

diff --git a/dev-python/unittest-or-fail/Manifest b/dev-python/unittest-or-fail/Manifest
index 24314035a54c..c7be820f29d9 100644
--- a/dev-python/unittest-or-fail/Manifest
+++ b/dev-python/unittest-or-fail/Manifest
@@ -1,2 +1 @@
-DIST unittest-or-fail-1.tar.gz 2739 BLAKE2B 781fff33d12e2ebbf408875d8677a73fe3d5025c6d7e5e67ce23e1f5a36479e7680ffafc9ec73830a70114ddb8bb0c784095f15e8ee13fcf95fe4712c2d8a080 SHA512 c58a2b6a3723d1327d74fb528a5742f576a70453c81bcd55b551a6eac05bb6af4555b9274ca939df70ada85a0be42edd258ea7644ab1d24fbf897a1e96b23055
 DIST unittest-or-fail-2.tar.gz 3177 BLAKE2B 862a406f3faea7bdf47b8e3f9dfa0057cb45669d9ed47f94dd51b2db107be62d1a332e7e6f0fc8f8f1f6719db90a9ebe19a8379d12a3f0908b073f1dd1dc4643 SHA512 f5b34ed5f312618e174147d1717142fe817fca3f993606f572a6e3f7481f055f793c3b4bc56481e259513ca7ac1b94b8a27ac6e319ccf909f55492edd5f14951

diff --git a/dev-python/unittest-or-fail/unittest-or-fail-1-r1.ebuild b/dev-python/unittest-or-fail/unittest-or-fail-1-r1.ebuild
deleted file mode 100644
index d4f4c26bd57c..000000000000
--- a/dev-python/unittest-or-fail/unittest-or-fail-1-r1.ebuild
+++ /dev/null
@@ -1,26 +0,0 @@
-# Copyright 2021-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} pypy3 )
-
-inherit distutils-r1
-
-DESCRIPTION="Run unittests or fail if no tests were found"
-HOMEPAGE="https://github.com/mgorny/unittest-or-fail/"
-SRC_URI="
-	https://github.com/mgorny/unittest-or-fail/archive/v${PV}.tar.gz
-		-> ${P}.tar.gz"
-
-LICENSE="BSD-2"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
-
-# Warning: do not use distutils_enable_tests to avoid a circular
-# dependency on itself!
-python_test() {
-	"${EPYTHON}" -m unittest -v test/test_unittest_or_fail.py ||
-		die "Tests failed with ${EPYTHON}"
-}


^ permalink raw reply related	[flat|nested] 38+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/unittest-or-fail/
@ 2022-05-31  7:08 Jakov Smolić
  0 siblings, 0 replies; 38+ messages in thread
From: Jakov Smolić @ 2022-05-31  7:08 UTC (permalink / raw
  To: gentoo-commits

commit:     db674ae3e00fa0617df0f5bb48bca3d963739e3e
Author:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Tue May 31 07:08:22 2022 +0000
Commit:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Tue May 31 07:08:22 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=db674ae3

dev-python/unittest-or-fail: Stabilize 2 ALLARCHES, #848684

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

 dev-python/unittest-or-fail/unittest-or-fail-2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/unittest-or-fail/unittest-or-fail-2.ebuild b/dev-python/unittest-or-fail/unittest-or-fail-2.ebuild
index 406103e1dc02..8bd236e3b5a0 100644
--- a/dev-python/unittest-or-fail/unittest-or-fail-2.ebuild
+++ b/dev-python/unittest-or-fail/unittest-or-fail-2.ebuild
@@ -17,7 +17,7 @@ SRC_URI="
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 
 # Warning: do not use distutils_enable_tests to avoid a circular
 # dependency on itself!


^ permalink raw reply related	[flat|nested] 38+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/unittest-or-fail/
@ 2022-05-09 20:38 Michał Górny
  0 siblings, 0 replies; 38+ messages in thread
From: Michał Górny @ 2022-05-09 20:38 UTC (permalink / raw
  To: gentoo-commits

commit:     d1fd44eb14c2d59ccd98d761adf86145ea73db00
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Mon May  9 15:52:56 2022 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Mon May  9 20:34:01 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d1fd44eb

dev-python/unittest-or-fail: Enable py3.11

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

 dev-python/unittest-or-fail/unittest-or-fail-2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/unittest-or-fail/unittest-or-fail-2.ebuild b/dev-python/unittest-or-fail/unittest-or-fail-2.ebuild
index d67ea3ddb6e8..406103e1dc02 100644
--- a/dev-python/unittest-or-fail/unittest-or-fail-2.ebuild
+++ b/dev-python/unittest-or-fail/unittest-or-fail-2.ebuild
@@ -4,7 +4,7 @@
 EAPI=8
 
 DISTUTILS_USE_PEP517=flit
-PYTHON_COMPAT=( python3_{8..10} pypy3 )
+PYTHON_COMPAT=( python3_{8..11} pypy3 )
 
 inherit distutils-r1
 


^ permalink raw reply related	[flat|nested] 38+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/unittest-or-fail/
@ 2022-04-06 17:48 Michał Górny
  0 siblings, 0 replies; 38+ messages in thread
From: Michał Górny @ 2022-04-06 17:48 UTC (permalink / raw
  To: gentoo-commits

commit:     b87ea2dd2835865c865f17920de967bbbebf491e
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed Apr  6 17:44:27 2022 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed Apr  6 17:47:59 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b87ea2dd

dev-python/unittest-or-fail: Bump to v2

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

 dev-python/unittest-or-fail/Manifest               |  1 +
 .../unittest-or-fail/unittest-or-fail-2.ebuild     | 27 ++++++++++++++++++++++
 2 files changed, 28 insertions(+)

diff --git a/dev-python/unittest-or-fail/Manifest b/dev-python/unittest-or-fail/Manifest
index b5721178f45f..24314035a54c 100644
--- a/dev-python/unittest-or-fail/Manifest
+++ b/dev-python/unittest-or-fail/Manifest
@@ -1 +1,2 @@
 DIST unittest-or-fail-1.tar.gz 2739 BLAKE2B 781fff33d12e2ebbf408875d8677a73fe3d5025c6d7e5e67ce23e1f5a36479e7680ffafc9ec73830a70114ddb8bb0c784095f15e8ee13fcf95fe4712c2d8a080 SHA512 c58a2b6a3723d1327d74fb528a5742f576a70453c81bcd55b551a6eac05bb6af4555b9274ca939df70ada85a0be42edd258ea7644ab1d24fbf897a1e96b23055
+DIST unittest-or-fail-2.tar.gz 3177 BLAKE2B 862a406f3faea7bdf47b8e3f9dfa0057cb45669d9ed47f94dd51b2db107be62d1a332e7e6f0fc8f8f1f6719db90a9ebe19a8379d12a3f0908b073f1dd1dc4643 SHA512 f5b34ed5f312618e174147d1717142fe817fca3f993606f572a6e3f7481f055f793c3b4bc56481e259513ca7ac1b94b8a27ac6e319ccf909f55492edd5f14951

diff --git a/dev-python/unittest-or-fail/unittest-or-fail-2.ebuild b/dev-python/unittest-or-fail/unittest-or-fail-2.ebuild
new file mode 100644
index 000000000000..9700930bf33c
--- /dev/null
+++ b/dev-python/unittest-or-fail/unittest-or-fail-2.ebuild
@@ -0,0 +1,27 @@
+# Copyright 2021-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=flit
+PYTHON_COMPAT=( python3_{8..10} pypy3 )
+
+inherit distutils-r1
+
+DESCRIPTION="Run unittests or fail if no tests were found"
+HOMEPAGE="https://github.com/mgorny/unittest-or-fail/"
+SRC_URI="
+	https://github.com/mgorny/unittest-or-fail/archive/v${PV}.tar.gz
+		-> ${P}.tar.gz
+"
+
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+
+# Warning: do not use distutils_enable_tests to avoid a circular
+# dependency on itself!
+python_test() {
+	"${EPYTHON}" -m unittest -v test/test_unittest_or_fail.py ||
+		die "Tests failed with ${EPYTHON}"
+}


^ permalink raw reply related	[flat|nested] 38+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/unittest-or-fail/
@ 2022-03-16  7:56 Michał Górny
  0 siblings, 0 replies; 38+ messages in thread
From: Michał Górny @ 2022-03-16  7:56 UTC (permalink / raw
  To: gentoo-commits

commit:     19c6c9aeae44bc89298caf477020009d133cbcd6
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed Mar 16 07:51:43 2022 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed Mar 16 07:51:43 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=19c6c9ae

dev-python/unittest-or-fail: Remove old

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

 .../unittest-or-fail/unittest-or-fail-1.ebuild     | 25 ----------------------
 1 file changed, 25 deletions(-)

diff --git a/dev-python/unittest-or-fail/unittest-or-fail-1.ebuild b/dev-python/unittest-or-fail/unittest-or-fail-1.ebuild
deleted file mode 100644
index b77f5a5cfc0a..000000000000
--- a/dev-python/unittest-or-fail/unittest-or-fail-1.ebuild
+++ /dev/null
@@ -1,25 +0,0 @@
-# Copyright 2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DISTUTILS_USE_SETUPTOOLS=no
-PYTHON_COMPAT=( python3_{7..10} pypy3 )
-inherit distutils-r1
-
-DESCRIPTION="Run unittests or fail if no tests were found"
-HOMEPAGE="https://github.com/mgorny/unittest-or-fail/"
-SRC_URI="
-	https://github.com/mgorny/unittest-or-fail/archive/v${PV}.tar.gz
-		-> ${P}.tar.gz"
-
-LICENSE="BSD-2"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
-
-# Warning: do not use distutils_enable_tests to avoid a circular
-# dependency on itself!
-python_test() {
-	"${EPYTHON}" -m unittest -v test/test_unittest_or_fail.py ||
-		die "Tests failed with ${EPYTHON}"
-}


^ permalink raw reply related	[flat|nested] 38+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/unittest-or-fail/
@ 2022-01-30 13:09 Michał Górny
  0 siblings, 0 replies; 38+ messages in thread
From: Michał Górny @ 2022-01-30 13:09 UTC (permalink / raw
  To: gentoo-commits

commit:     12c09d23b4b2a9407e76048f33fb597f51225181
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sun Jan 30 12:53:31 2022 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun Jan 30 13:09:35 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=12c09d23

dev-python/unittest-or-fail: Switch to PEP 517 build

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

 .../unittest-or-fail/unittest-or-fail-1-r1.ebuild  | 26 ++++++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/dev-python/unittest-or-fail/unittest-or-fail-1-r1.ebuild b/dev-python/unittest-or-fail/unittest-or-fail-1-r1.ebuild
new file mode 100644
index 000000000000..f12c75497b62
--- /dev/null
+++ b/dev-python/unittest-or-fail/unittest-or-fail-1-r1.ebuild
@@ -0,0 +1,26 @@
+# Copyright 2021-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} pypy3 )
+
+inherit distutils-r1
+
+DESCRIPTION="Run unittests or fail if no tests were found"
+HOMEPAGE="https://github.com/mgorny/unittest-or-fail/"
+SRC_URI="
+	https://github.com/mgorny/unittest-or-fail/archive/v${PV}.tar.gz
+		-> ${P}.tar.gz"
+
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+
+# Warning: do not use distutils_enable_tests to avoid a circular
+# dependency on itself!
+python_test() {
+	"${EPYTHON}" -m unittest -v test/test_unittest_or_fail.py ||
+		die "Tests failed with ${EPYTHON}"
+}


^ permalink raw reply related	[flat|nested] 38+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/unittest-or-fail/
@ 2021-05-23 23:36 Joshua Kinard
  0 siblings, 0 replies; 38+ messages in thread
From: Joshua Kinard @ 2021-05-23 23:36 UTC (permalink / raw
  To: gentoo-commits

commit:     1f6ba4009e51e99f51b097bcb80001503a346102
Author:     Joshua Kinard <kumba <AT> gentoo <DOT> org>
AuthorDate: Sun May 23 22:36:17 2021 +0000
Commit:     Joshua Kinard <kumba <AT> gentoo <DOT> org>
CommitDate: Sun May 23 23:36:23 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1f6ba400

dev-python/unittest-or-fail: Added ~mips to KEYWORDS

Bug: https://bugs.gentoo.org/776019
Signed-off-by: Joshua Kinard <kumba <AT> gentoo.org>
Package-Manager: Portage-3.0.18, Repoman-3.0.3

 dev-python/unittest-or-fail/unittest-or-fail-1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/unittest-or-fail/unittest-or-fail-1.ebuild b/dev-python/unittest-or-fail/unittest-or-fail-1.ebuild
index bc3a13de7e0..f5359c5ac03 100644
--- a/dev-python/unittest-or-fail/unittest-or-fail-1.ebuild
+++ b/dev-python/unittest-or-fail/unittest-or-fail-1.ebuild
@@ -15,7 +15,7 @@ SRC_URI="
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 
 # Warning: do not use distutils_enable_tests to avoid a circular
 # dependency on itself!


^ permalink raw reply related	[flat|nested] 38+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/unittest-or-fail/
@ 2021-05-04 15:40 Michał Górny
  0 siblings, 0 replies; 38+ messages in thread
From: Michał Górny @ 2021-05-04 15:40 UTC (permalink / raw
  To: gentoo-commits

commit:     e560828fb5795084daa95e89270b23a7a01622fe
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Tue May  4 15:35:45 2021 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Tue May  4 15:35:45 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e560828f

dev-python/unittest-or-fail: Enable py3.10

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

 dev-python/unittest-or-fail/unittest-or-fail-1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/unittest-or-fail/unittest-or-fail-1.ebuild b/dev-python/unittest-or-fail/unittest-or-fail-1.ebuild
index 735771c62d8..bc3a13de7e0 100644
--- a/dev-python/unittest-or-fail/unittest-or-fail-1.ebuild
+++ b/dev-python/unittest-or-fail/unittest-or-fail-1.ebuild
@@ -4,7 +4,7 @@
 EAPI=7
 
 DISTUTILS_USE_SETUPTOOLS=no
-PYTHON_COMPAT=( python3_{7..9} pypy3 )
+PYTHON_COMPAT=( python3_{7..10} pypy3 )
 inherit distutils-r1
 
 DESCRIPTION="Run unittests or fail if no tests were found"


^ permalink raw reply related	[flat|nested] 38+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/unittest-or-fail/
@ 2021-03-28 10:13 Mikle Kolyada
  0 siblings, 0 replies; 38+ messages in thread
From: Mikle Kolyada @ 2021-03-28 10:13 UTC (permalink / raw
  To: gentoo-commits

commit:     ae76f14d939a963757a2717788c89f4ac1d4d32a
Author:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Sun Mar 28 10:13:52 2021 +0000
Commit:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Sun Mar 28 10:13:52 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ae76f14d

dev-python/unittest-or-fail: Keyword 1 riscv, #776019

Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>

 dev-python/unittest-or-fail/unittest-or-fail-1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/unittest-or-fail/unittest-or-fail-1.ebuild b/dev-python/unittest-or-fail/unittest-or-fail-1.ebuild
index d16aca54ab8..4e9207c2976 100644
--- a/dev-python/unittest-or-fail/unittest-or-fail-1.ebuild
+++ b/dev-python/unittest-or-fail/unittest-or-fail-1.ebuild
@@ -15,7 +15,7 @@ SRC_URI="
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 ~riscv s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 
 # Warning: do not use distutils_enable_tests to avoid a circular
 # dependency on itself!


^ permalink raw reply related	[flat|nested] 38+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/unittest-or-fail/
@ 2021-03-27 17:57 Matt Turner
  0 siblings, 0 replies; 38+ messages in thread
From: Matt Turner @ 2021-03-27 17:57 UTC (permalink / raw
  To: gentoo-commits

commit:     5fd9810a2e9ba72b467b257b33a99678c47e31a0
Author:     Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 27 17:56:57 2021 +0000
Commit:     Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Sat Mar 27 17:56:57 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5fd9810a

dev-python/unittest-or-fail: Keyword 1 alpha, #776019

Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>

 dev-python/unittest-or-fail/unittest-or-fail-1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/unittest-or-fail/unittest-or-fail-1.ebuild b/dev-python/unittest-or-fail/unittest-or-fail-1.ebuild
index 41973250d51..d16aca54ab8 100644
--- a/dev-python/unittest-or-fail/unittest-or-fail-1.ebuild
+++ b/dev-python/unittest-or-fail/unittest-or-fail-1.ebuild
@@ -15,7 +15,7 @@ SRC_URI="
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="amd64 arm arm64 hppa ~ia64 ppc ppc64 s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 
 # Warning: do not use distutils_enable_tests to avoid a circular
 # dependency on itself!


^ permalink raw reply related	[flat|nested] 38+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/unittest-or-fail/
@ 2021-03-26 20:34 Michał Górny
  0 siblings, 0 replies; 38+ messages in thread
From: Michał Górny @ 2021-03-26 20:34 UTC (permalink / raw
  To: gentoo-commits

commit:     8d656e81935386c3537775631025533e42139c06
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Fri Mar 26 19:42:35 2021 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri Mar 26 20:34:15 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8d656e81

dev-python/unittest-or-fail: Remove old

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

 dev-python/unittest-or-fail/Manifest               |  1 -
 .../unittest-or-fail/unittest-or-fail-0.ebuild     | 25 ----------------------
 2 files changed, 26 deletions(-)

diff --git a/dev-python/unittest-or-fail/Manifest b/dev-python/unittest-or-fail/Manifest
index c0403e127eb..b5721178f45 100644
--- a/dev-python/unittest-or-fail/Manifest
+++ b/dev-python/unittest-or-fail/Manifest
@@ -1,2 +1 @@
-DIST unittest-or-fail-0.tar.gz 2445 BLAKE2B 42d97fb3bd7e825ecf521ebbb435ca3973f83e107d86848f2c03d6d2321c9b87ec68db159e658bd5eead5321b7085ecec5350947818f55141eb18eb72719e2ad SHA512 8df21f5e235e03f4b5a8ae351420ac667612afddeb52a27bb2d4812bedbea87ba857dedfa37001a72872529b7c1984d15ddda93edfa6f989f0990b72c4b57baf
 DIST unittest-or-fail-1.tar.gz 2739 BLAKE2B 781fff33d12e2ebbf408875d8677a73fe3d5025c6d7e5e67ce23e1f5a36479e7680ffafc9ec73830a70114ddb8bb0c784095f15e8ee13fcf95fe4712c2d8a080 SHA512 c58a2b6a3723d1327d74fb528a5742f576a70453c81bcd55b551a6eac05bb6af4555b9274ca939df70ada85a0be42edd258ea7644ab1d24fbf897a1e96b23055

diff --git a/dev-python/unittest-or-fail/unittest-or-fail-0.ebuild b/dev-python/unittest-or-fail/unittest-or-fail-0.ebuild
deleted file mode 100644
index 707e0b2b5bb..00000000000
--- a/dev-python/unittest-or-fail/unittest-or-fail-0.ebuild
+++ /dev/null
@@ -1,25 +0,0 @@
-# Copyright 2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DISTUTILS_USE_SETUPTOOLS=no
-PYTHON_COMPAT=( python3_{7..9} pypy3 )
-inherit distutils-r1
-
-DESCRIPTION="Run unittests or fail if no tests were found"
-HOMEPAGE="https://github.com/mgorny/unittest-or-fail/"
-SRC_URI="
-	https://github.com/mgorny/unittest-or-fail/archive/v${PV}.tar.gz
-		-> ${P}.tar.gz"
-
-LICENSE="BSD-2"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
-
-# Warning: do not use distutils_enable_tests to avoid a circular
-# dependency on itself!
-python_test() {
-	"${EPYTHON}" -m unittest -v test/test_unittest_or_fail.py ||
-		die "Tests failed with ${EPYTHON}"
-}


^ permalink raw reply related	[flat|nested] 38+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/unittest-or-fail/
@ 2021-03-26 18:40 Sam James
  0 siblings, 0 replies; 38+ messages in thread
From: Sam James @ 2021-03-26 18:40 UTC (permalink / raw
  To: gentoo-commits

commit:     920db77126ce6a21fe0f3289a6cccbb62296bf81
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Mar 26 18:39:59 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Mar 26 18:39:59 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=920db771

dev-python/unittest-or-fail: Stabilize 1 arm, #777024

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

 dev-python/unittest-or-fail/unittest-or-fail-1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/unittest-or-fail/unittest-or-fail-1.ebuild b/dev-python/unittest-or-fail/unittest-or-fail-1.ebuild
index 5485dce168d..41973250d51 100644
--- a/dev-python/unittest-or-fail/unittest-or-fail-1.ebuild
+++ b/dev-python/unittest-or-fail/unittest-or-fail-1.ebuild
@@ -15,7 +15,7 @@ SRC_URI="
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="amd64 ~arm arm64 hppa ~ia64 ppc ppc64 s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="amd64 arm arm64 hppa ~ia64 ppc ppc64 s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 
 # Warning: do not use distutils_enable_tests to avoid a circular
 # dependency on itself!


^ permalink raw reply related	[flat|nested] 38+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/unittest-or-fail/
@ 2021-03-26 11:50 Agostino Sarubbo
  0 siblings, 0 replies; 38+ messages in thread
From: Agostino Sarubbo @ 2021-03-26 11:50 UTC (permalink / raw
  To: gentoo-commits

commit:     7d60395e092c911aeb50e7c8eb44819d2b41b558
Author:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Fri Mar 26 11:50:24 2021 +0000
Commit:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Fri Mar 26 11:50:24 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7d60395e

dev-python/unittest-or-fail: s390 stable wrt bug #777024

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

 dev-python/unittest-or-fail/unittest-or-fail-1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/unittest-or-fail/unittest-or-fail-1.ebuild b/dev-python/unittest-or-fail/unittest-or-fail-1.ebuild
index cca920bb988..5485dce168d 100644
--- a/dev-python/unittest-or-fail/unittest-or-fail-1.ebuild
+++ b/dev-python/unittest-or-fail/unittest-or-fail-1.ebuild
@@ -15,7 +15,7 @@ SRC_URI="
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="amd64 ~arm arm64 hppa ~ia64 ppc ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="amd64 ~arm arm64 hppa ~ia64 ppc ppc64 s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 
 # Warning: do not use distutils_enable_tests to avoid a circular
 # dependency on itself!


^ permalink raw reply related	[flat|nested] 38+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/unittest-or-fail/
@ 2021-03-25 21:32 Sam James
  0 siblings, 0 replies; 38+ messages in thread
From: Sam James @ 2021-03-25 21:32 UTC (permalink / raw
  To: gentoo-commits

commit:     a40aabf7306bb51008f6dc045976aeb7033c9b88
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Mar 25 21:31:51 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Mar 25 21:31:51 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a40aabf7

dev-python/unittest-or-fail: Stabilize 1 x86, #777024

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

 dev-python/unittest-or-fail/unittest-or-fail-1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/unittest-or-fail/unittest-or-fail-1.ebuild b/dev-python/unittest-or-fail/unittest-or-fail-1.ebuild
index f6990f760f1..cca920bb988 100644
--- a/dev-python/unittest-or-fail/unittest-or-fail-1.ebuild
+++ b/dev-python/unittest-or-fail/unittest-or-fail-1.ebuild
@@ -15,7 +15,7 @@ SRC_URI="
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="amd64 ~arm arm64 hppa ~ia64 ppc ppc64 ~s390 sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="amd64 ~arm arm64 hppa ~ia64 ppc ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 
 # Warning: do not use distutils_enable_tests to avoid a circular
 # dependency on itself!


^ permalink raw reply related	[flat|nested] 38+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/unittest-or-fail/
@ 2021-03-25 21:29 Sam James
  0 siblings, 0 replies; 38+ messages in thread
From: Sam James @ 2021-03-25 21:29 UTC (permalink / raw
  To: gentoo-commits

commit:     5aba66c22dfd941dd04ad5f1d2018af1265bad1a
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Mar 25 21:28:50 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Mar 25 21:28:50 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5aba66c2

dev-python/unittest-or-fail: Stabilize 1 amd64, #777024

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

 dev-python/unittest-or-fail/unittest-or-fail-1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/unittest-or-fail/unittest-or-fail-1.ebuild b/dev-python/unittest-or-fail/unittest-or-fail-1.ebuild
index 8593c47d603..f6990f760f1 100644
--- a/dev-python/unittest-or-fail/unittest-or-fail-1.ebuild
+++ b/dev-python/unittest-or-fail/unittest-or-fail-1.ebuild
@@ -15,7 +15,7 @@ SRC_URI="
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="~amd64 ~arm arm64 hppa ~ia64 ppc ppc64 ~s390 sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="amd64 ~arm arm64 hppa ~ia64 ppc ppc64 ~s390 sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 
 # Warning: do not use distutils_enable_tests to avoid a circular
 # dependency on itself!


^ permalink raw reply related	[flat|nested] 38+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/unittest-or-fail/
@ 2021-03-25 17:52 Sergei Trofimovich
  0 siblings, 0 replies; 38+ messages in thread
From: Sergei Trofimovich @ 2021-03-25 17:52 UTC (permalink / raw
  To: gentoo-commits

commit:     cb2328fa273bce9bf0b0efdfaa7a5b4f44ebb21e
Author:     Rolf Eike Beer <eike <AT> sf-mail <DOT> de>
AuthorDate: Thu Mar 25 16:34:06 2021 +0000
Commit:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Thu Mar 25 17:51:08 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cb2328fa

dev-python/unittest-or-fail: stable 1 for hppa, bug #777024

Package-Manager: Portage-3.0.13, Repoman-3.0.2
RepoMan-Options: --include-arches="hppa"
Signed-off-by: Rolf Eike Beer <eike <AT> sf-mail.de>
Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>

 dev-python/unittest-or-fail/unittest-or-fail-1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/unittest-or-fail/unittest-or-fail-1.ebuild b/dev-python/unittest-or-fail/unittest-or-fail-1.ebuild
index d6e44b47336..8593c47d603 100644
--- a/dev-python/unittest-or-fail/unittest-or-fail-1.ebuild
+++ b/dev-python/unittest-or-fail/unittest-or-fail-1.ebuild
@@ -15,7 +15,7 @@ SRC_URI="
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="~amd64 ~arm arm64 ~hppa ~ia64 ppc ppc64 ~s390 sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~amd64 ~arm arm64 hppa ~ia64 ppc ppc64 ~s390 sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 
 # Warning: do not use distutils_enable_tests to avoid a circular
 # dependency on itself!


^ permalink raw reply related	[flat|nested] 38+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/unittest-or-fail/
@ 2021-03-24 19:42 Sam James
  0 siblings, 0 replies; 38+ messages in thread
From: Sam James @ 2021-03-24 19:42 UTC (permalink / raw
  To: gentoo-commits

commit:     0c69bb72e11aaabd50aab9d3cd8f6b5a43f4b0ca
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Mar 24 19:41:32 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Mar 24 19:41:32 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0c69bb72

dev-python/unittest-or-fail: Stabilize 1 sparc, #777024

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

 dev-python/unittest-or-fail/unittest-or-fail-1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/unittest-or-fail/unittest-or-fail-1.ebuild b/dev-python/unittest-or-fail/unittest-or-fail-1.ebuild
index dae92ea7523..d6e44b47336 100644
--- a/dev-python/unittest-or-fail/unittest-or-fail-1.ebuild
+++ b/dev-python/unittest-or-fail/unittest-or-fail-1.ebuild
@@ -15,7 +15,7 @@ SRC_URI="
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="~amd64 ~arm arm64 ~hppa ~ia64 ppc ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~amd64 ~arm arm64 ~hppa ~ia64 ppc ppc64 ~s390 sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 
 # Warning: do not use distutils_enable_tests to avoid a circular
 # dependency on itself!


^ permalink raw reply related	[flat|nested] 38+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/unittest-or-fail/
@ 2021-03-22  0:10 Sam James
  0 siblings, 0 replies; 38+ messages in thread
From: Sam James @ 2021-03-22  0:10 UTC (permalink / raw
  To: gentoo-commits

commit:     31597321aebabd16647e04fec25578c74094271f
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Mar 22 00:09:55 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Mar 22 00:09:55 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=31597321

dev-python/unittest-or-fail: Stabilize 1 ALLARCHES, #777024

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

 dev-python/unittest-or-fail/unittest-or-fail-1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/unittest-or-fail/unittest-or-fail-1.ebuild b/dev-python/unittest-or-fail/unittest-or-fail-1.ebuild
index 2a017cd65ae..dae92ea7523 100644
--- a/dev-python/unittest-or-fail/unittest-or-fail-1.ebuild
+++ b/dev-python/unittest-or-fail/unittest-or-fail-1.ebuild
@@ -15,7 +15,7 @@ SRC_URI="
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ppc ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~amd64 ~arm arm64 ~hppa ~ia64 ppc ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 
 # Warning: do not use distutils_enable_tests to avoid a circular
 # dependency on itself!


^ permalink raw reply related	[flat|nested] 38+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/unittest-or-fail/
@ 2021-03-22  0:10 Sam James
  0 siblings, 0 replies; 38+ messages in thread
From: Sam James @ 2021-03-22  0:10 UTC (permalink / raw
  To: gentoo-commits

commit:     d04ff4efc8cbe5ef88694ff5ebb029dd028724d6
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Mar 22 00:09:17 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Mar 22 00:09:17 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d04ff4ef

dev-python/unittest-or-fail: Stabilize 1 ALLARCHES, #777024

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

 dev-python/unittest-or-fail/unittest-or-fail-1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/unittest-or-fail/unittest-or-fail-1.ebuild b/dev-python/unittest-or-fail/unittest-or-fail-1.ebuild
index 4b785841859..2a017cd65ae 100644
--- a/dev-python/unittest-or-fail/unittest-or-fail-1.ebuild
+++ b/dev-python/unittest-or-fail/unittest-or-fail-1.ebuild
@@ -15,7 +15,7 @@ SRC_URI="
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ppc ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 
 # Warning: do not use distutils_enable_tests to avoid a circular
 # dependency on itself!


^ permalink raw reply related	[flat|nested] 38+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/unittest-or-fail/
@ 2021-03-16 12:21 Michał Górny
  0 siblings, 0 replies; 38+ messages in thread
From: Michał Górny @ 2021-03-16 12:21 UTC (permalink / raw
  To: gentoo-commits

commit:     2bbaaafe074a0a5806ebb51bc84eeed29af4d110
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Tue Mar 16 12:21:14 2021 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Tue Mar 16 12:21:41 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2bbaaafe

dev-python/unittest-or-fail: Bump to v1

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

 dev-python/unittest-or-fail/Manifest               |  1 +
 .../unittest-or-fail/unittest-or-fail-1.ebuild     | 25 ++++++++++++++++++++++
 2 files changed, 26 insertions(+)

diff --git a/dev-python/unittest-or-fail/Manifest b/dev-python/unittest-or-fail/Manifest
index 8ce67bb37ef..c0403e127eb 100644
--- a/dev-python/unittest-or-fail/Manifest
+++ b/dev-python/unittest-or-fail/Manifest
@@ -1 +1,2 @@
 DIST unittest-or-fail-0.tar.gz 2445 BLAKE2B 42d97fb3bd7e825ecf521ebbb435ca3973f83e107d86848f2c03d6d2321c9b87ec68db159e658bd5eead5321b7085ecec5350947818f55141eb18eb72719e2ad SHA512 8df21f5e235e03f4b5a8ae351420ac667612afddeb52a27bb2d4812bedbea87ba857dedfa37001a72872529b7c1984d15ddda93edfa6f989f0990b72c4b57baf
+DIST unittest-or-fail-1.tar.gz 2739 BLAKE2B 781fff33d12e2ebbf408875d8677a73fe3d5025c6d7e5e67ce23e1f5a36479e7680ffafc9ec73830a70114ddb8bb0c784095f15e8ee13fcf95fe4712c2d8a080 SHA512 c58a2b6a3723d1327d74fb528a5742f576a70453c81bcd55b551a6eac05bb6af4555b9274ca939df70ada85a0be42edd258ea7644ab1d24fbf897a1e96b23055

diff --git a/dev-python/unittest-or-fail/unittest-or-fail-1.ebuild b/dev-python/unittest-or-fail/unittest-or-fail-1.ebuild
new file mode 100644
index 00000000000..707e0b2b5bb
--- /dev/null
+++ b/dev-python/unittest-or-fail/unittest-or-fail-1.ebuild
@@ -0,0 +1,25 @@
+# Copyright 2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DISTUTILS_USE_SETUPTOOLS=no
+PYTHON_COMPAT=( python3_{7..9} pypy3 )
+inherit distutils-r1
+
+DESCRIPTION="Run unittests or fail if no tests were found"
+HOMEPAGE="https://github.com/mgorny/unittest-or-fail/"
+SRC_URI="
+	https://github.com/mgorny/unittest-or-fail/archive/v${PV}.tar.gz
+		-> ${P}.tar.gz"
+
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+
+# Warning: do not use distutils_enable_tests to avoid a circular
+# dependency on itself!
+python_test() {
+	"${EPYTHON}" -m unittest -v test/test_unittest_or_fail.py ||
+		die "Tests failed with ${EPYTHON}"
+}


^ permalink raw reply related	[flat|nested] 38+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/unittest-or-fail/
@ 2021-03-15  7:52 Fabian Groffen
  0 siblings, 0 replies; 38+ messages in thread
From: Fabian Groffen @ 2021-03-15  7:52 UTC (permalink / raw
  To: gentoo-commits

commit:     02c5163583ff86af8164d0968e5a8f3b47c73f08
Author:     Fabian Groffen <grobian <AT> gentoo <DOT> org>
AuthorDate: Mon Mar 15 07:52:17 2021 +0000
Commit:     Fabian Groffen <grobian <AT> gentoo <DOT> org>
CommitDate: Mon Mar 15 07:52:17 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=02c51635

dev-python/unittest-or-fail-0: add Prefix keywords

Package-Manager: Portage-3.0.13, Repoman-3.0.2
Signed-off-by: Fabian Groffen <grobian <AT> gentoo.org>

 dev-python/unittest-or-fail/unittest-or-fail-0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/unittest-or-fail/unittest-or-fail-0.ebuild b/dev-python/unittest-or-fail/unittest-or-fail-0.ebuild
index ceb91cb9f25..707e0b2b5bb 100644
--- a/dev-python/unittest-or-fail/unittest-or-fail-0.ebuild
+++ b/dev-python/unittest-or-fail/unittest-or-fail-0.ebuild
@@ -15,7 +15,7 @@ SRC_URI="
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 ~x64-macos"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 
 # Warning: do not use distutils_enable_tests to avoid a circular
 # dependency on itself!


^ permalink raw reply related	[flat|nested] 38+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/unittest-or-fail/
@ 2021-03-15  7:43 Sam James
  0 siblings, 0 replies; 38+ messages in thread
From: Sam James @ 2021-03-15  7:43 UTC (permalink / raw
  To: gentoo-commits

commit:     e2a27173530792d21c144ffcb52c4c11a2ee9afd
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Mar 15 07:42:51 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Mar 15 07:42:51 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e2a27173

dev-python/unittest-or-fail: Keyword 0 hppa, #776019

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

 dev-python/unittest-or-fail/unittest-or-fail-0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/unittest-or-fail/unittest-or-fail-0.ebuild b/dev-python/unittest-or-fail/unittest-or-fail-0.ebuild
index e15b6fdfd06..ceb91cb9f25 100644
--- a/dev-python/unittest-or-fail/unittest-or-fail-0.ebuild
+++ b/dev-python/unittest-or-fail/unittest-or-fail-0.ebuild
@@ -15,7 +15,7 @@ SRC_URI="
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 ~x64-macos"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 ~x64-macos"
 
 # Warning: do not use distutils_enable_tests to avoid a circular
 # dependency on itself!


^ permalink raw reply related	[flat|nested] 38+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/unittest-or-fail/
@ 2021-03-15  7:02 Sam James
  0 siblings, 0 replies; 38+ messages in thread
From: Sam James @ 2021-03-15  7:02 UTC (permalink / raw
  To: gentoo-commits

commit:     c63e9e5b31deabe5a898fac491d435137219935b
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Mar 15 07:02:24 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Mar 15 07:02:24 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c63e9e5b

dev-python/unittest-or-fail: Keyword 0 arm64, #776019

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

 dev-python/unittest-or-fail/unittest-or-fail-0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/unittest-or-fail/unittest-or-fail-0.ebuild b/dev-python/unittest-or-fail/unittest-or-fail-0.ebuild
index dd9dbfa3023..e15b6fdfd06 100644
--- a/dev-python/unittest-or-fail/unittest-or-fail-0.ebuild
+++ b/dev-python/unittest-or-fail/unittest-or-fail-0.ebuild
@@ -15,7 +15,7 @@ SRC_URI="
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 ~x64-macos"
+KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 ~x64-macos"
 
 # Warning: do not use distutils_enable_tests to avoid a circular
 # dependency on itself!


^ permalink raw reply related	[flat|nested] 38+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/unittest-or-fail/
@ 2021-03-15  6:54 Sam James
  0 siblings, 0 replies; 38+ messages in thread
From: Sam James @ 2021-03-15  6:54 UTC (permalink / raw
  To: gentoo-commits

commit:     eadd75ae53c5231971d807f8aaea413965dde322
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Mar 15 06:54:15 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Mar 15 06:54:15 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eadd75ae

dev-python/unittest-or-fail: Keyword 0 ppc, #776019

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

 dev-python/unittest-or-fail/unittest-or-fail-0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/unittest-or-fail/unittest-or-fail-0.ebuild b/dev-python/unittest-or-fail/unittest-or-fail-0.ebuild
index 76fb6642f34..dd9dbfa3023 100644
--- a/dev-python/unittest-or-fail/unittest-or-fail-0.ebuild
+++ b/dev-python/unittest-or-fail/unittest-or-fail-0.ebuild
@@ -15,7 +15,7 @@ SRC_URI="
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~ia64 ~ppc64 ~s390 ~sparc ~x86 ~x64-macos"
+KEYWORDS="~amd64 ~arm ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 ~x64-macos"
 
 # Warning: do not use distutils_enable_tests to avoid a circular
 # dependency on itself!


^ permalink raw reply related	[flat|nested] 38+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/unittest-or-fail/
@ 2021-03-15  6:49 Sam James
  0 siblings, 0 replies; 38+ messages in thread
From: Sam James @ 2021-03-15  6:49 UTC (permalink / raw
  To: gentoo-commits

commit:     407a49350fcc0800380ff8ba806ca45ef1ee99c7
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Mar 15 06:49:42 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Mar 15 06:49:42 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=407a4935

dev-python/unittest-or-fail: Keyword 0 ppc64, #776019

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

 dev-python/unittest-or-fail/unittest-or-fail-0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/unittest-or-fail/unittest-or-fail-0.ebuild b/dev-python/unittest-or-fail/unittest-or-fail-0.ebuild
index 11f8746154a..76fb6642f34 100644
--- a/dev-python/unittest-or-fail/unittest-or-fail-0.ebuild
+++ b/dev-python/unittest-or-fail/unittest-or-fail-0.ebuild
@@ -15,7 +15,7 @@ SRC_URI="
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~ia64 ~s390 ~sparc ~x86 ~x64-macos"
+KEYWORDS="~amd64 ~arm ~ia64 ~ppc64 ~s390 ~sparc ~x86 ~x64-macos"
 
 # Warning: do not use distutils_enable_tests to avoid a circular
 # dependency on itself!


^ permalink raw reply related	[flat|nested] 38+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/unittest-or-fail/
@ 2021-03-15  6:46 Sam James
  0 siblings, 0 replies; 38+ messages in thread
From: Sam James @ 2021-03-15  6:46 UTC (permalink / raw
  To: gentoo-commits

commit:     bf1fae011eeda71adf0afc61339af205bd235fe7
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Mar 15 06:46:12 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Mar 15 06:46:12 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bf1fae01

dev-python/unittest-or-fail: Keyword 0 sparc, #776019

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

 dev-python/unittest-or-fail/unittest-or-fail-0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/unittest-or-fail/unittest-or-fail-0.ebuild b/dev-python/unittest-or-fail/unittest-or-fail-0.ebuild
index d787f2bf9ca..11f8746154a 100644
--- a/dev-python/unittest-or-fail/unittest-or-fail-0.ebuild
+++ b/dev-python/unittest-or-fail/unittest-or-fail-0.ebuild
@@ -15,7 +15,7 @@ SRC_URI="
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~ia64 ~s390 ~x86 ~x64-macos"
+KEYWORDS="~amd64 ~arm ~ia64 ~s390 ~sparc ~x86 ~x64-macos"
 
 # Warning: do not use distutils_enable_tests to avoid a circular
 # dependency on itself!


^ permalink raw reply related	[flat|nested] 38+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/unittest-or-fail/
@ 2021-03-15  6:45 Sam James
  0 siblings, 0 replies; 38+ messages in thread
From: Sam James @ 2021-03-15  6:45 UTC (permalink / raw
  To: gentoo-commits

commit:     cd7098fff405637dcd914ba1025da9b26fe63d6e
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Mar 15 06:44:43 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Mar 15 06:44:43 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cd7098ff

dev-python/unittest-or-fail: Keyword 0 ia64, #776019

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

 dev-python/unittest-or-fail/unittest-or-fail-0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/unittest-or-fail/unittest-or-fail-0.ebuild b/dev-python/unittest-or-fail/unittest-or-fail-0.ebuild
index b13be836660..d787f2bf9ca 100644
--- a/dev-python/unittest-or-fail/unittest-or-fail-0.ebuild
+++ b/dev-python/unittest-or-fail/unittest-or-fail-0.ebuild
@@ -15,7 +15,7 @@ SRC_URI="
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~s390 ~x86 ~x64-macos"
+KEYWORDS="~amd64 ~arm ~ia64 ~s390 ~x86 ~x64-macos"
 
 # Warning: do not use distutils_enable_tests to avoid a circular
 # dependency on itself!


^ permalink raw reply related	[flat|nested] 38+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/unittest-or-fail/
@ 2021-03-15  6:43 Sam James
  0 siblings, 0 replies; 38+ messages in thread
From: Sam James @ 2021-03-15  6:43 UTC (permalink / raw
  To: gentoo-commits

commit:     4431d16a2736954359cc031faf169d545357d58c
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Mar 15 06:43:47 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Mar 15 06:43:47 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4431d16a

dev-python/unittest-or-fail: Keyword 0 x64-macos, #776019

Package-Manager: Portage-3.0.14-prefix, Repoman-3.0.2
Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-python/unittest-or-fail/unittest-or-fail-0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/unittest-or-fail/unittest-or-fail-0.ebuild b/dev-python/unittest-or-fail/unittest-or-fail-0.ebuild
index 70c13fe9b87..b13be836660 100644
--- a/dev-python/unittest-or-fail/unittest-or-fail-0.ebuild
+++ b/dev-python/unittest-or-fail/unittest-or-fail-0.ebuild
@@ -15,7 +15,7 @@ SRC_URI="
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~s390 ~x86"
+KEYWORDS="~amd64 ~arm ~s390 ~x86 ~x64-macos"
 
 # Warning: do not use distutils_enable_tests to avoid a circular
 # dependency on itself!


^ permalink raw reply related	[flat|nested] 38+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/unittest-or-fail/
@ 2021-03-15  6:43 Sam James
  0 siblings, 0 replies; 38+ messages in thread
From: Sam James @ 2021-03-15  6:43 UTC (permalink / raw
  To: gentoo-commits

commit:     79c0c5cef83697eb72d759d2c90e28bc5290e468
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Mar 15 06:42:38 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Mar 15 06:42:38 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=79c0c5ce

dev-python/unittest-or-fail: Keyword 0 s390, #776019

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

 dev-python/unittest-or-fail/unittest-or-fail-0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/unittest-or-fail/unittest-or-fail-0.ebuild b/dev-python/unittest-or-fail/unittest-or-fail-0.ebuild
index fcf63668bfb..70c13fe9b87 100644
--- a/dev-python/unittest-or-fail/unittest-or-fail-0.ebuild
+++ b/dev-python/unittest-or-fail/unittest-or-fail-0.ebuild
@@ -15,7 +15,7 @@ SRC_URI="
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~x86"
+KEYWORDS="~amd64 ~arm ~s390 ~x86"
 
 # Warning: do not use distutils_enable_tests to avoid a circular
 # dependency on itself!


^ permalink raw reply related	[flat|nested] 38+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/unittest-or-fail/
@ 2021-03-15  6:38 Sam James
  0 siblings, 0 replies; 38+ messages in thread
From: Sam James @ 2021-03-15  6:38 UTC (permalink / raw
  To: gentoo-commits

commit:     821cbe61f37736d2acf292b36f9e95f46ffac9cb
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Mar 15 06:37:00 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Mar 15 06:37:00 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=821cbe61

dev-python/unittest-or-fail: Keyword 0 arm, #776019

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

 dev-python/unittest-or-fail/unittest-or-fail-0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/unittest-or-fail/unittest-or-fail-0.ebuild b/dev-python/unittest-or-fail/unittest-or-fail-0.ebuild
index 71a06e180e2..fcf63668bfb 100644
--- a/dev-python/unittest-or-fail/unittest-or-fail-0.ebuild
+++ b/dev-python/unittest-or-fail/unittest-or-fail-0.ebuild
@@ -15,7 +15,7 @@ SRC_URI="
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 ~arm ~x86"
 
 # Warning: do not use distutils_enable_tests to avoid a circular
 # dependency on itself!


^ permalink raw reply related	[flat|nested] 38+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/unittest-or-fail/
@ 2021-03-15  3:07 Sam James
  0 siblings, 0 replies; 38+ messages in thread
From: Sam James @ 2021-03-15  3:07 UTC (permalink / raw
  To: gentoo-commits

commit:     ef1c5cd9b5898149f2e0b0b58b1a5fe9b88804ee
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Mar 15 03:07:15 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Mar 15 03:07:15 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ef1c5cd9

dev-python/unittest-or-fail: mark ALLARCHES

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

 dev-python/unittest-or-fail/metadata.xml | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/dev-python/unittest-or-fail/metadata.xml b/dev-python/unittest-or-fail/metadata.xml
index 22e0d6d87f6..3136117dc03 100644
--- a/dev-python/unittest-or-fail/metadata.xml
+++ b/dev-python/unittest-or-fail/metadata.xml
@@ -7,5 +7,7 @@
 	</maintainer>
 	<maintainer type="project">
 		<email>python@gentoo.org</email>
+		<name>Python</name>
 	</maintainer>
+	<stabilize-allarches/>
 </pkgmetadata>


^ permalink raw reply related	[flat|nested] 38+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/unittest-or-fail/
@ 2021-03-14 15:20 Michał Górny
  0 siblings, 0 replies; 38+ messages in thread
From: Michał Górny @ 2021-03-14 15:20 UTC (permalink / raw
  To: gentoo-commits

commit:     904dacc249f7ed33376457c5f65b93a7b384dd7b
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sun Mar 14 15:05:30 2021 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun Mar 14 15:20:55 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=904dacc2

dev-python/unittest-or-fail: New package to aid running unittests

New package to ensure that src_test() will fail if unittest does not
discover any tests.

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

 dev-python/unittest-or-fail/Manifest               |  1 +
 dev-python/unittest-or-fail/metadata.xml           | 11 ++++++++++
 .../unittest-or-fail/unittest-or-fail-0.ebuild     | 25 ++++++++++++++++++++++
 3 files changed, 37 insertions(+)

diff --git a/dev-python/unittest-or-fail/Manifest b/dev-python/unittest-or-fail/Manifest
new file mode 100644
index 00000000000..8ce67bb37ef
--- /dev/null
+++ b/dev-python/unittest-or-fail/Manifest
@@ -0,0 +1 @@
+DIST unittest-or-fail-0.tar.gz 2445 BLAKE2B 42d97fb3bd7e825ecf521ebbb435ca3973f83e107d86848f2c03d6d2321c9b87ec68db159e658bd5eead5321b7085ecec5350947818f55141eb18eb72719e2ad SHA512 8df21f5e235e03f4b5a8ae351420ac667612afddeb52a27bb2d4812bedbea87ba857dedfa37001a72872529b7c1984d15ddda93edfa6f989f0990b72c4b57baf

diff --git a/dev-python/unittest-or-fail/metadata.xml b/dev-python/unittest-or-fail/metadata.xml
new file mode 100644
index 00000000000..22e0d6d87f6
--- /dev/null
+++ b/dev-python/unittest-or-fail/metadata.xml
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<maintainer type="person">
+		<email>mgorny@gentoo.org</email>
+		<name>Michał Górny</name>
+	</maintainer>
+	<maintainer type="project">
+		<email>python@gentoo.org</email>
+	</maintainer>
+</pkgmetadata>

diff --git a/dev-python/unittest-or-fail/unittest-or-fail-0.ebuild b/dev-python/unittest-or-fail/unittest-or-fail-0.ebuild
new file mode 100644
index 00000000000..71a06e180e2
--- /dev/null
+++ b/dev-python/unittest-or-fail/unittest-or-fail-0.ebuild
@@ -0,0 +1,25 @@
+# Copyright 2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DISTUTILS_USE_SETUPTOOLS=no
+PYTHON_COMPAT=( python3_{7..9} pypy3 )
+inherit distutils-r1
+
+DESCRIPTION="Run unittests or fail if no tests were found"
+HOMEPAGE="https://github.com/mgorny/unittest-or-fail/"
+SRC_URI="
+	https://github.com/mgorny/unittest-or-fail/archive/v${PV}.tar.gz
+		-> ${P}.tar.gz"
+
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+# Warning: do not use distutils_enable_tests to avoid a circular
+# dependency on itself!
+python_test() {
+	"${EPYTHON}" -m unittest -v test/test_unittest_or_fail.py ||
+		die "Tests failed with ${EPYTHON}"
+}


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

end of thread, other threads:[~2024-07-27  9:44 UTC | newest]

Thread overview: 38+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-07-06 16:39 [gentoo-commits] repo/gentoo:master commit in: dev-python/unittest-or-fail/ Michał Górny
  -- strict thread matches above, loose matches on Subject: below --
2024-07-27  9:44 Michał Górny
2024-07-27  6:44 Arthur Zamarin
2023-10-20 14:55 Michał Górny
2023-03-09  7:38 Arthur Zamarin
2022-07-28 12:00 Sam James
2022-05-31  7:22 Michał Górny
2022-05-31  7:08 Jakov Smolić
2022-05-09 20:38 Michał Górny
2022-04-06 17:48 Michał Górny
2022-03-16  7:56 Michał Górny
2022-01-30 13:09 Michał Górny
2021-05-23 23:36 Joshua Kinard
2021-05-04 15:40 Michał Górny
2021-03-28 10:13 Mikle Kolyada
2021-03-27 17:57 Matt Turner
2021-03-26 20:34 Michał Górny
2021-03-26 18:40 Sam James
2021-03-26 11:50 Agostino Sarubbo
2021-03-25 21:32 Sam James
2021-03-25 21:29 Sam James
2021-03-25 17:52 Sergei Trofimovich
2021-03-24 19:42 Sam James
2021-03-22  0:10 Sam James
2021-03-22  0:10 Sam James
2021-03-16 12:21 Michał Górny
2021-03-15  7:52 Fabian Groffen
2021-03-15  7:43 Sam James
2021-03-15  7:02 Sam James
2021-03-15  6:54 Sam James
2021-03-15  6:49 Sam James
2021-03-15  6:46 Sam James
2021-03-15  6:45 Sam James
2021-03-15  6:43 Sam James
2021-03-15  6:43 Sam James
2021-03-15  6:38 Sam James
2021-03-15  3:07 Sam James
2021-03-14 15:20 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