summaryrefslogtreecommitdiff
path: root/dev-python/argh
diff options
context:
space:
mode:
authorLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2026-04-15 19:12:21 +0000
committerLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2026-04-15 19:12:21 +0000
commitf6bcc45ab811bbc6c133a87192de845240fdfd9c (patch)
tree2d40b5748b807e79e3247c8672686a94d5a61290 /dev-python/argh
parentef93034729ae626be7fa73289869f79c19ac7144 (diff)
downloadbaldeagleos-repo-f6bcc45ab811bbc6c133a87192de845240fdfd9c.tar.gz
baldeagleos-repo-f6bcc45ab811bbc6c133a87192de845240fdfd9c.tar.xz
baldeagleos-repo-f6bcc45ab811bbc6c133a87192de845240fdfd9c.zip
Adding metadata
Diffstat (limited to 'dev-python/argh')
-rw-r--r--dev-python/argh/argh-0.31.3.ebuild8
-rw-r--r--dev-python/argh/files/argh-0.31.3-py314.patch54
2 files changed, 61 insertions, 1 deletions
diff --git a/dev-python/argh/argh-0.31.3.ebuild b/dev-python/argh/argh-0.31.3.ebuild
index 89743babaa59..eb7d15eff04d 100644
--- a/dev-python/argh/argh-0.31.3.ebuild
+++ b/dev-python/argh/argh-0.31.3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2025 Gentoo Authors
+# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
@@ -25,4 +25,10 @@ BDEPEND="
)
"
+EPYTEST_PLUGINS=()
distutils_enable_tests pytest
+
+PATCHES=(
+ # https://github.com/neithere/argh/commit/699568ad674c5ea26d361202c386a8a8a82ec8ad
+ "${FILESDIR}/${P}-py314.patch"
+)
diff --git a/dev-python/argh/files/argh-0.31.3-py314.patch b/dev-python/argh/files/argh-0.31.3-py314.patch
new file mode 100644
index 000000000000..ef1ac87ebbc7
--- /dev/null
+++ b/dev-python/argh/files/argh-0.31.3-py314.patch
@@ -0,0 +1,54 @@
+From 699568ad674c5ea26d361202c386a8a8a82ec8ad Mon Sep 17 00:00:00 2001
+From: Andy Mikhaylenko <neithere@gmail.com>
+Date: Sun, 1 Jun 2025 21:28:53 +0200
+Subject: [PATCH] fix(test): tests were broken under Python 3.14.0b2 (fixes
+ #239)
+
+(stripped down to bare essentials)
+
+--- a/tests/test_integration.py
++++ b/tests/test_integration.py
+@@ -796,11 +796,17 @@ def func():
+ parser = DebugArghParser()
+ parser.set_default_command(func)
+
+- assert unindent(func.__doc__) in parser.format_help()
++ docstring = func.__doc__
++ assert docstring
++ assert unindent(docstring) in parser.format_help()
+
+
+ def test_prog(capsys: pytest.CaptureFixture[str]):
+- "Program name propagates from sys.argv[0]"
++ """
++ Program name propagates to the usage string.
++ It's not just sys.argv[0], the logic is a bit more complicated in argparse,
++ so we just reuse whatever it has produced.
++ """
+
+ def cmd(*, foo=1):
+ return foo
+@@ -808,10 +814,12 @@ def cmd(*, foo=1):
+ parser = DebugArghParser()
+ parser.add_commands([cmd])
+
+- usage = get_usage_string()
++ usage = f"usage: {parser.prog} [-h]"
+
+- assert run(parser, "-h", exit=True) == 0
++ exit_code = run(parser, "-h", exit=True)
+ captured = capsys.readouterr()
++
++ assert exit_code == 0
+ assert captured.out.startswith(usage)
+
+
+@@ -822,8 +830,6 @@ def cmd(*, foo=1):
+ parser = DebugArghParser()
+ parser.set_default_command(cmd)
+
+- get_usage_string("[-f FOO]")
+-
+ assert run(parser, "--foo 1") == R(out="1\n", err="")
+ assert run(parser, "--bar 1", exit=True) == "unrecognized arguments: --bar 1"
+ assert run(parser, "--bar 1", exit=False, kwargs={"skip_unknown_args": True}) == R(