From d5f97db62430300260a26287c19c28f0c2ac7e5f Mon Sep 17 00:00:00 2001 From: Daniel Engberg Date: Sun, 28 Sep 2025 10:17:29 +0200 Subject: [PATCH] multimedia/streamlink: Allow greater versions of (py-)lxml than 6 This broke at runtime due to a6233e5a2fdfc3f67a89a90ac005521f25395355 and appears to work fine on my end Approved by: blanket, just fix it --- multimedia/streamlink/Makefile | 2 +- multimedia/streamlink/files/patch-pyproject.toml | 11 +++++++++++ 2 files changed, 12 insertions(+), 1 deletion(-) create mode 100644 multimedia/streamlink/files/patch-pyproject.toml diff --git a/multimedia/streamlink/Makefile b/multimedia/streamlink/Makefile index e38852186ebb..9a68e3590edd 100644 --- a/multimedia/streamlink/Makefile +++ b/multimedia/streamlink/Makefile @@ -1,6 +1,6 @@ PORTNAME= streamlink DISTVERSION= 6.5.1 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= multimedia MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/multimedia/streamlink/files/patch-pyproject.toml b/multimedia/streamlink/files/patch-pyproject.toml new file mode 100644 index 000000000000..24ca75e25a94 --- /dev/null +++ b/multimedia/streamlink/files/patch-pyproject.toml @@ -0,0 +1,11 @@ +--- pyproject.toml.orig 2025-09-28 08:11:20 UTC ++++ pyproject.toml +@@ -57,7 +57,7 @@ dependencies = [ + dependencies = [ + "certifi", + "isodate", +- "lxml >=4.6.4,<6", ++ "lxml >=4.6.4,<7", + "pycountry", + "pycryptodome >=3.4.3,<4", + "PySocks >=1.5.6,!=1.5.7",