aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYuri Victorovich <yuri@FreeBSD.org>2023-10-07 05:00:55 +0000
committerYuri Victorovich <yuri@FreeBSD.org>2023-10-07 05:00:55 +0000
commit2c4a33a372bf4366dcdb9b0ce2fe48124c9efd0e (patch)
treeb88fd923ce1f4893d77fbbbcb7ebbd558a273a4b
parentb7c594ee694505271855f97416b22b0cc8c2d2b6 (diff)
downloadports-2c4a33a372bf4366dcdb9b0ce2fe48124c9efd0e.tar.gz
ports-2c4a33a372bf4366dcdb9b0ce2fe48124c9efd0e.zip
www/yt-dlp: update 2023.07.06 → 2023.10.07
-rw-r--r--www/yt-dlp/Makefile3
-rw-r--r--www/yt-dlp/distinfo6
-rw-r--r--www/yt-dlp/files/patch-yt__dlp_extractor_arte.py13
3 files changed, 4 insertions, 18 deletions
diff --git a/www/yt-dlp/Makefile b/www/yt-dlp/Makefile
index 816d71e01259..78e9adbdc412 100644
--- a/www/yt-dlp/Makefile
+++ b/www/yt-dlp/Makefile
@@ -1,6 +1,5 @@
PORTNAME= yt-dlp
-DISTVERSION= 2023.07.06
-PORTREVISION= 1
+DISTVERSION= 2023.10.07
CATEGORIES= www
MASTER_SITES= https://github.com/${PORTNAME}/${PORTNAME}/releases/download/${DISTVERSION}/
DISTNAME= ${PORTNAME}
diff --git a/www/yt-dlp/distinfo b/www/yt-dlp/distinfo
index 9a1e0f1b9f86..a82df3b144b0 100644
--- a/www/yt-dlp/distinfo
+++ b/www/yt-dlp/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1688671014
-SHA256 (yt-dlp/2023.07.06/yt-dlp.tar.gz) = 6d2115b84b6c11867f92cf4c23705b536bfa0ba9d538b1885f52da6756f8c980
-SIZE (yt-dlp/2023.07.06/yt-dlp.tar.gz) = 5362006
+TIMESTAMP = 1696654497
+SHA256 (yt-dlp/2023.10.07/yt-dlp.tar.gz) = 39d1a69242cc8235fe1f3e387cd383aae239e563796efb9de0f516133ee14870
+SIZE (yt-dlp/2023.10.07/yt-dlp.tar.gz) = 5513194
diff --git a/www/yt-dlp/files/patch-yt__dlp_extractor_arte.py b/www/yt-dlp/files/patch-yt__dlp_extractor_arte.py
deleted file mode 100644
index 60b653370f9a..000000000000
--- a/www/yt-dlp/files/patch-yt__dlp_extractor_arte.py
+++ /dev/null
@@ -1,13 +0,0 @@
-- patch from https://github.com/yt-dlp/yt-dlp/issues/8156
-
---- yt_dlp/extractor/arte.py.orig 2022-05-18 03:37:32 UTC
-+++ yt_dlp/extractor/arte.py
-@@ -169,7 +169,7 @@ def _real_extract(self, url):
- )))
-
- short_label = traverse_obj(stream_version, 'shortLabel', expected_type=str, default='?')
-- if stream['protocol'].startswith('HLS'):
-+ if 'HLS' in stream['protocol']:
- fmts, subs = self._extract_m3u8_formats_and_subtitles(
- stream['url'], video_id=video_id, ext='mp4', m3u8_id=stream_version_code, fatal=False)
- for fmt in fmts: