mirror of
https://github.com/openwrt/packages.git
synced 2025-12-21 21:24:31 +04:00
yt-dlp: bump to 2025.11.12
An external JavaScript runtime (e.g. QuickJS) is now required for full YouTube support. Add QuickJS as a dependency and use it as an external runtime. Move cache to /var/cache. Changelog: https://github.com/yt-dlp/yt-dlp/releases/tag/2025.11.12 Signed-off-by: George Sapkin <george@sapk.in>
This commit is contained in:
@@ -1,11 +1,11 @@
|
|||||||
include $(TOPDIR)/rules.mk
|
include $(TOPDIR)/rules.mk
|
||||||
|
|
||||||
PKG_NAME:=yt-dlp
|
PKG_NAME:=yt-dlp
|
||||||
PKG_VERSION:=2025.10.22
|
PKG_VERSION:=2025.11.12
|
||||||
PKG_RELEASE:=1
|
PKG_RELEASE:=1
|
||||||
|
|
||||||
PYPI_NAME:=yt-dlp
|
PYPI_NAME:=yt-dlp
|
||||||
PKG_HASH:=db2d48133222b1d9508c6de757859c24b5cefb9568cf68ccad85dac20b07f77b
|
PKG_HASH:=5f0795a6b8fc57a5c23332d67d6c6acf819a0b46b91a6324bae29414fa97f052
|
||||||
PYPI_SOURCE_NAME:=yt_dlp
|
PYPI_SOURCE_NAME:=yt_dlp
|
||||||
|
|
||||||
PKG_MAINTAINER:=George Sapkin <george@sapk.in>
|
PKG_MAINTAINER:=George Sapkin <george@sapk.in>
|
||||||
@@ -36,7 +36,8 @@ define Package/yt-dlp
|
|||||||
+python3-sqlite3 \
|
+python3-sqlite3 \
|
||||||
+python3-urllib \
|
+python3-urllib \
|
||||||
+python3-uuid \
|
+python3-uuid \
|
||||||
+python3-xml
|
+python3-xml \
|
||||||
|
+quickjs
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Package/yt-dlp/description
|
define Package/yt-dlp/description
|
||||||
@@ -44,6 +45,20 @@ define Package/yt-dlp/description
|
|||||||
thousands of sites.
|
thousands of sites.
|
||||||
endef
|
endef
|
||||||
|
|
||||||
|
define Package/yt-dlp/conffiles
|
||||||
|
/etc/yt-dlp.conf
|
||||||
|
endef
|
||||||
|
|
||||||
|
define Py3Package/yt-dlp/install
|
||||||
|
if [ -d $(PKG_INSTALL_DIR)/usr/bin ]; then \
|
||||||
|
$(INSTALL_DIR) $(1)/usr/bin ; \
|
||||||
|
$(CP) $(PKG_INSTALL_DIR)/usr/bin/* $(1)/usr/bin/ ; \
|
||||||
|
fi
|
||||||
|
|
||||||
|
$(INSTALL_DIR) $(1)/etc
|
||||||
|
$(INSTALL_CONF) ./files/yt-dlp.conf $(1)/etc/yt-dlp.conf
|
||||||
|
endef
|
||||||
|
|
||||||
$(eval $(call Py3Package,yt-dlp))
|
$(eval $(call Py3Package,yt-dlp))
|
||||||
$(eval $(call BuildPackage,yt-dlp))
|
$(eval $(call BuildPackage,yt-dlp))
|
||||||
$(eval $(call BuildPackage,yt-dlp-src))
|
$(eval $(call BuildPackage,yt-dlp-src))
|
||||||
|
|||||||
3
multimedia/yt-dlp/files/yt-dlp.conf
Normal file
3
multimedia/yt-dlp/files/yt-dlp.conf
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
--cache-dir /var/cache/yt-dlp
|
||||||
|
--js-runtimes quickjs:/usr/bin/qjs
|
||||||
|
--remote-components ejs:github
|
||||||
Reference in New Issue
Block a user