commit: c9e0e8c6bba31f594f65d92e3f05451f44c0d33b
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Fri Mar 6 04:45:21 2026 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri Mar 6 04:52:43 2026 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c9e0e8c6
dev-python/test2ref: Bump to 1.2.3
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/test2ref/Manifest | 1 +
dev-python/test2ref/test2ref-1.2.3.ebuild | 37 +++++++++++++++++++++++++++++++
2 files changed, 38 insertions(+)
diff --git a/dev-python/test2ref/Manifest b/dev-python/test2ref/Manifest
index d3d725e6be70..c81ce9bbb733 100644
--- a/dev-python/test2ref/Manifest
+++ b/dev-python/test2ref/Manifest
@@ -1 +1,2 @@
DIST test2ref-1.2.1.tar.gz 10078 BLAKE2B
62b9d62f4bb0b69aaf463f9369bea2da10dc119665edb867267a082a28a5ec84338d9873fed3f2068a8783e126fcac96755e8c3e5db385257a9d27668efa0262
SHA512
2d10f7aa696ec8ec1898e93cbd27ce3c33889695e4eb6aa8c8ee5e7756bf926828bad80f93385a69e147844640d4135c4add0ec6b956672224a63047fe118dfc
+DIST test2ref-1.2.3.tar.gz 10401 BLAKE2B
d2f75e24151b52d326d89165cba7fdfb15bcb3a625bb2c25d6ffb821f2427329e4e8f52af941ea006f5ea94b40074f1ac784aa499306c5e47471c4d315d9ce77
SHA512
340048744b886c32479d2863d8234e429d92771e341d1551a7a1d845ca705ff2f9793eddf360ea8c0dbe6fcd7575739fd140b1afb3e4b756ace8750cf660280f
diff --git a/dev-python/test2ref/test2ref-1.2.3.ebuild
b/dev-python/test2ref/test2ref-1.2.3.ebuild
new file mode 100644
index 000000000000..9ac24e6719ca
--- /dev/null
+++ b/dev-python/test2ref/test2ref-1.2.3.ebuild
@@ -0,0 +1,37 @@
+# Copyright 2025-2026 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=pdm-backend
+PYTHON_COMPAT=( python3_{11..14} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="Testing Against Learned Reference Data"
+HOMEPAGE="
+ https://github.com/nbiotcloud/test2ref
+ https://pypi.org/project/test2ref/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+
+RDEPEND="
+ dev-python/binaryornot[${PYTHON_USEDEP}]
+"
+
+EPYTEST_DESELECT=(
+ # Whitespace differences
+ 'tests/test_main.py::test_caplog[False]'
+ 'tests/test_main.py::test_caplog[True]'
+)
+
+EPYTEST_PLUGINS=()
+distutils_enable_tests pytest
+
+python_test() {
+ # addopts= to avoid pytest-cov
+ epytest -o addopts=
+}