-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
yt-dlp-ejs: new port, yt-dlp: update to 2025.11.12 #30045
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
akierig
wants to merge
1
commit into
macports:master
Choose a base branch
from
akierig:yt-dlp-2025.11.12
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+80
−4
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,71 @@ | ||
| # -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4 | ||
|
|
||
| PortSystem 1.0 | ||
| PortGroup python 1.0 | ||
|
|
||
| name yt-dlp-ejs | ||
| homepage https://github.com/yt-dlp/ejs | ||
| version 0.3.1 | ||
|
|
||
| master_sites https://files.pythonhosted.org/packages/e7/fd/34fbdaf0d53386c47e219c532a479766cd9336fde34c00834c8e0123df7a/ | ||
| distname yt_dlp_ejs-${version}-py3-none-any | ||
| extract.suffix .whl | ||
| extract.only | ||
|
|
||
| revision 0 | ||
| categories net | ||
| license public-domain | ||
|
|
||
| maintainers {@akierig fastmail.de:akierig} \ | ||
| {@ryandesign ryandesign} | ||
|
|
||
| checksums rmd160 f952db52d48e810454de82a5a3e2c80136954564 \ | ||
| sha256 a6e3548874db7c774388931752bb46c7f4642c044b2a189e56968f3d5ecab622 \ | ||
| size 53155 | ||
|
|
||
| description ${name} is an external JavaScript utility for \ | ||
| yt-dlp that supports multiple JS runtimes. | ||
| long_description {*}${description} It enables yt-dlp to solve \ | ||
| JavaScript challenges for YouTube and other sites. | ||
|
|
||
| supported_archs noarch | ||
| platforms {darwin any} | ||
| license public-domain | ||
|
|
||
| variant python310 conflicts python311 python312 python313 description {Use Python 3.10} {} | ||
| variant python311 conflicts python310 python312 python313 description {Use Python 3.11} {} | ||
| variant python312 conflicts python310 python311 python313 description {Use Python 3.12} {} | ||
| variant python313 conflicts python310 python311 python312 description {Use Python 3.13} {} | ||
|
|
||
| if {![variant_isset python310] && ![variant_isset python311] && ![variant_isset python312] && ![variant_isset python313]} { | ||
| default_variants +python313 | ||
| } | ||
|
|
||
| if {[variant_isset python310]} { | ||
| python.default_version 310 | ||
| } elseif {[variant_isset python311]} { | ||
| python.default_version 311 | ||
| } elseif {[variant_isset python312]} { | ||
| python.default_version 312 | ||
| } elseif {[variant_isset python313]} { | ||
| python.default_version 313 | ||
| } | ||
|
|
||
| depends_run-append port:deno | ||
|
|
||
| if {${os.major} <= 16} { | ||
| depends_run-delete port:deno | ||
| depends_run-append path:bin/qjs:quickjs | ||
| } | ||
|
|
||
| python.pep517_backend | ||
|
|
||
| build {} | ||
|
|
||
| destroot.target ${distpath}/${distfiles} | ||
|
|
||
| notes " | ||
| if you are using MacOS 10.12 or older, you will need to pass the | ||
| '--js-runtimes quickjs' flag or add the appropriate changes to | ||
| your yt-dlp configuration file. | ||
| " |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.