From 5ec346ead2212a6bca03f317570f4f46d4789f79 Mon Sep 17 00:00:00 2001 From: sthen Date: Thu, 19 Feb 2026 13:18:28 +0000 Subject: [PATCH] fix builds where py-test-runner is not installed, found by / ok jca --- productivity/topydo/Makefile | 3 +-- productivity/topydo/patches/patch-pyproject_toml | 10 ++++++++++ 2 files changed, 11 insertions(+), 2 deletions(-) create mode 100644 productivity/topydo/patches/patch-pyproject_toml diff --git a/productivity/topydo/Makefile b/productivity/topydo/Makefile index aeb5072d062..48117559d43 100644 --- a/productivity/topydo/Makefile +++ b/productivity/topydo/Makefile @@ -13,8 +13,7 @@ MAINTAINER= Martin Ziemer # GPLv3+ PERMIT_PACKAGE= Yes -TEST_DEPENDS = devel/py-freezegun \ - devel/py-test-runner +TEST_DEPENDS = devel/py-freezegun RUN_DEPENDS = devel/py-arrow \ devel/py-urwid \ diff --git a/productivity/topydo/patches/patch-pyproject_toml b/productivity/topydo/patches/patch-pyproject_toml new file mode 100644 index 00000000000..4e354dc5894 --- /dev/null +++ b/productivity/topydo/patches/patch-pyproject_toml @@ -0,0 +1,10 @@ +Index: pyproject.toml +--- pyproject.toml.orig ++++ pyproject.toml +@@ -1,5 +1,5 @@ + [build-system] +-requires = ["setuptools", "wheel", "pytest-runner"] ++requires = ["setuptools", "wheel"] + build-backend = "setuptools.build_meta" + + [tool.black]