git: d5f97db62430 - main - multimedia/streamlink: Allow greater versions of (py-)lxml than 6
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sun, 28 Sep 2025 08:25:13 UTC
The branch main has been updated by diizzy:
URL: https://cgit.FreeBSD.org/ports/commit/?id=d5f97db62430300260a26287c19c28f0c2ac7e5f
commit d5f97db62430300260a26287c19c28f0c2ac7e5f
Author: Daniel Engberg <diizzy@FreeBSD.org>
AuthorDate: 2025-09-28 08:17:29 +0000
Commit: Daniel Engberg <diizzy@FreeBSD.org>
CommitDate: 2025-09-28 08:17:34 +0000
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(-)
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",