mirror of https://github.com/yt-dlp/yt-dlp
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
133 lines
4.1 KiB
Python
133 lines
4.1 KiB
Python
3 years ago
|
#!/usr/bin/env python3
|
||
2 years ago
|
|
||
2 years ago
|
# Allow direct execution
|
||
3 years ago
|
import os
|
||
|
import sys
|
||
3 years ago
|
|
||
9 months ago
|
sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
|
||
2 years ago
|
|
||
|
import platform
|
||
|
|
||
3 years ago
|
from PyInstaller.__main__ import run as run_pyinstaller
|
||
3 years ago
|
|
||
2 years ago
|
from devscripts.utils import read_version
|
||
|
|
||
2 years ago
|
OS_NAME, MACHINE, ARCH = sys.platform, platform.machine().lower(), platform.architecture()[0][:2]
|
||
|
if MACHINE in ('x86', 'x86_64', 'amd64', 'i386', 'i686'):
|
||
2 years ago
|
MACHINE = 'x86' if ARCH == '32' else ''
|
||
4 years ago
|
|
||
3 years ago
|
|
||
3 years ago
|
def main():
|
||
2 years ago
|
opts, version = parse_options(), read_version()
|
||
3 years ago
|
|
||
|
onedir = '--onedir' in opts or '-D' in opts
|
||
|
if not onedir and '-F' not in opts and '--onefile' not in opts:
|
||
|
opts.append('--onefile')
|
||
3 years ago
|
|
||
2 years ago
|
name, final_file = exe(onedir)
|
||
2 years ago
|
print(f'Building yt-dlp v{version} for {OS_NAME} {platform.machine()} with options {opts}')
|
||
3 years ago
|
print('Remember to update the version using "devscripts/update-version.py"')
|
||
3 years ago
|
if not os.path.isfile('yt_dlp/extractor/lazy_extractors.py'):
|
||
|
print('WARNING: Building without lazy_extractors. Run '
|
||
3 years ago
|
'"devscripts/make_lazy_extractors.py" to build lazy extractors', file=sys.stderr)
|
||
3 years ago
|
print(f'Destination: {final_file}\n')
|
||
4 years ago
|
|
||
3 years ago
|
opts = [
|
||
3 years ago
|
f'--name={name}',
|
||
3 years ago
|
'--icon=devscripts/logo.ico',
|
||
|
'--upx-exclude=vcruntime140.dll',
|
||
|
'--noconfirm',
|
||
2 years ago
|
'--additional-hooks-dir=yt_dlp/__pyinstaller',
|
||
3 years ago
|
*opts,
|
||
|
'yt_dlp/__main__.py',
|
||
|
]
|
||
|
|
||
3 years ago
|
print(f'Running PyInstaller with {opts}')
|
||
|
run_pyinstaller(opts)
|
||
3 years ago
|
set_version_info(final_file, version)
|
||
|
|
||
|
|
||
|
def parse_options():
|
||
2 years ago
|
# Compatibility with older arguments
|
||
3 years ago
|
opts = sys.argv[1:]
|
||
|
if opts[0:1] in (['32'], ['64']):
|
||
|
if ARCH != opts[0]:
|
||
|
raise Exception(f'{opts[0]}bit executable cannot be built on a {ARCH}bit system')
|
||
|
opts = opts[1:]
|
||
3 years ago
|
return opts
|
||
4 years ago
|
|
||
3 years ago
|
|
||
2 years ago
|
def exe(onedir):
|
||
|
"""@returns (name, path)"""
|
||
|
name = '_'.join(filter(None, (
|
||
|
'yt-dlp',
|
||
2 years ago
|
{'win32': '', 'darwin': 'macos'}.get(OS_NAME, OS_NAME),
|
||
2 years ago
|
MACHINE,
|
||
2 years ago
|
)))
|
||
|
return name, ''.join(filter(None, (
|
||
|
'dist/',
|
||
|
onedir and f'{name}/',
|
||
|
name,
|
||
|
OS_NAME == 'win32' and '.exe'
|
||
|
)))
|
||
|
|
||
|
|
||
3 years ago
|
def version_to_list(version):
|
||
|
version_list = version.split('.')
|
||
|
return list(map(int, version_list)) + [0] * (4 - len(version_list))
|
||
|
|
||
|
|
||
|
def set_version_info(exe, version):
|
||
2 years ago
|
if OS_NAME == 'win32':
|
||
3 years ago
|
windows_set_version(exe, version)
|
||
|
|
||
|
|
||
|
def windows_set_version(exe, version):
|
||
2 years ago
|
from PyInstaller.utils.win32.versioninfo import (
|
||
|
FixedFileInfo,
|
||
|
StringFileInfo,
|
||
|
StringStruct,
|
||
|
StringTable,
|
||
|
VarFileInfo,
|
||
|
VarStruct,
|
||
|
VSVersionInfo,
|
||
|
)
|
||
|
|
||
2 years ago
|
try:
|
||
|
from PyInstaller.utils.win32.versioninfo import SetVersion
|
||
|
except ImportError: # Pyinstaller >= 5.8
|
||
|
from PyInstaller.utils.win32.versioninfo import write_version_info_to_executable as SetVersion
|
||
|
|
||
3 years ago
|
version_list = version_to_list(version)
|
||
2 years ago
|
suffix = MACHINE and f'_{MACHINE}'
|
||
3 years ago
|
SetVersion(exe, VSVersionInfo(
|
||
|
ffi=FixedFileInfo(
|
||
|
filevers=version_list,
|
||
|
prodvers=version_list,
|
||
|
mask=0x3F,
|
||
|
flags=0x0,
|
||
|
OS=0x4,
|
||
|
fileType=0x1,
|
||
|
subtype=0x0,
|
||
|
date=(0, 0),
|
||
|
),
|
||
|
kids=[
|
||
|
StringFileInfo([StringTable('040904B0', [
|
||
2 years ago
|
StringStruct('Comments', 'yt-dlp%s Command Line Interface' % suffix),
|
||
3 years ago
|
StringStruct('CompanyName', 'https://github.com/yt-dlp'),
|
||
2 years ago
|
StringStruct('FileDescription', 'yt-dlp%s' % (MACHINE and f' ({MACHINE})')),
|
||
3 years ago
|
StringStruct('FileVersion', version),
|
||
|
StringStruct('InternalName', f'yt-dlp{suffix}'),
|
||
|
StringStruct('LegalCopyright', 'pukkandan.ytdlp@gmail.com | UNLICENSE'),
|
||
|
StringStruct('OriginalFilename', f'yt-dlp{suffix}.exe'),
|
||
|
StringStruct('ProductName', f'yt-dlp{suffix}'),
|
||
|
StringStruct(
|
||
|
'ProductVersion', f'{version}{suffix} on Python {platform.python_version()}'),
|
||
|
])]), VarFileInfo([VarStruct('Translation', [0, 1200])])
|
||
|
]
|
||
|
))
|
||
3 years ago
|
|
||
3 years ago
|
|
||
3 years ago
|
if __name__ == '__main__':
|
||
|
main()
|