2021-06-03 09:43:42 +00:00
|
|
|
#!/usr/bin/env python3
|
2021-02-04 16:31:22 +00:00
|
|
|
# coding: utf-8
|
|
|
|
|
2021-01-29 17:45:27 +00:00
|
|
|
from __future__ import unicode_literals
|
|
|
|
import sys
|
2021-02-04 16:31:22 +00:00
|
|
|
import platform
|
2021-01-29 17:45:27 +00:00
|
|
|
|
2021-06-21 17:23:17 +00:00
|
|
|
from PyInstaller.utils.hooks import collect_submodules
|
2021-01-29 17:45:27 +00:00
|
|
|
from PyInstaller.utils.win32.versioninfo import (
|
|
|
|
VarStruct, VarFileInfo, StringStruct, StringTable,
|
|
|
|
StringFileInfo, FixedFileInfo, VSVersionInfo, SetVersion,
|
|
|
|
)
|
|
|
|
import PyInstaller.__main__
|
|
|
|
|
2021-10-03 20:55:13 +00:00
|
|
|
arch = platform.architecture()[0][:2]
|
2021-02-04 16:31:22 +00:00
|
|
|
assert arch in ('32', '64')
|
|
|
|
_x86 = '_x86' if arch == '32' else ''
|
2021-01-29 17:45:27 +00:00
|
|
|
|
2021-10-03 20:55:13 +00:00
|
|
|
# Compatability with older arguments
|
|
|
|
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:]
|
|
|
|
opts = opts or ['--onefile']
|
|
|
|
|
2021-09-24 01:01:43 +00:00
|
|
|
print(f'Building {arch}bit version with options {opts}')
|
|
|
|
|
2021-05-31 20:33:40 +00:00
|
|
|
FILE_DESCRIPTION = 'yt-dlp%s' % (' (32 Bit)' if _x86 else '')
|
2021-01-29 17:45:27 +00:00
|
|
|
|
2021-02-24 18:45:56 +00:00
|
|
|
exec(compile(open('yt_dlp/version.py').read(), 'yt_dlp/version.py', 'exec'))
|
2021-01-29 17:45:27 +00:00
|
|
|
VERSION = locals()['__version__']
|
|
|
|
|
2021-02-09 12:34:00 +00:00
|
|
|
VERSION_LIST = VERSION.split('.')
|
2021-01-29 17:45:27 +00:00
|
|
|
VERSION_LIST = list(map(int, VERSION_LIST)) + [0] * (4 - len(VERSION_LIST))
|
|
|
|
|
|
|
|
print('Version: %s%s' % (VERSION, _x86))
|
|
|
|
print('Remember to update the version using devscipts\\update-version.py')
|
|
|
|
|
|
|
|
VERSION_FILE = 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(
|
2021-02-04 16:31:22 +00:00
|
|
|
'040904B0', [
|
2021-02-24 18:45:56 +00:00
|
|
|
StringStruct('Comments', 'yt-dlp%s Command Line Interface.' % _x86),
|
|
|
|
StringStruct('CompanyName', 'https://github.com/yt-dlp'),
|
2021-02-04 16:31:22 +00:00
|
|
|
StringStruct('FileDescription', FILE_DESCRIPTION),
|
|
|
|
StringStruct('FileVersion', VERSION),
|
2021-02-24 18:45:56 +00:00
|
|
|
StringStruct('InternalName', 'yt-dlp%s' % _x86),
|
2021-01-29 17:45:27 +00:00
|
|
|
StringStruct(
|
2021-02-04 16:31:22 +00:00
|
|
|
'LegalCopyright',
|
2021-02-24 18:45:56 +00:00
|
|
|
'pukkandan.ytdlp@gmail.com | UNLICENSE',
|
2021-01-29 17:45:27 +00:00
|
|
|
),
|
2021-02-24 18:45:56 +00:00
|
|
|
StringStruct('OriginalFilename', 'yt-dlp%s.exe' % _x86),
|
|
|
|
StringStruct('ProductName', 'yt-dlp%s' % _x86),
|
2021-06-07 17:32:39 +00:00
|
|
|
StringStruct(
|
|
|
|
'ProductVersion',
|
|
|
|
'%s%s on Python %s' % (VERSION, _x86, platform.python_version())),
|
2021-01-29 17:45:27 +00:00
|
|
|
])]),
|
2021-02-04 16:31:22 +00:00
|
|
|
VarFileInfo([VarStruct('Translation', [0, 1200])])
|
2021-01-29 17:45:27 +00:00
|
|
|
]
|
|
|
|
)
|
|
|
|
|
2021-10-06 01:04:10 +00:00
|
|
|
|
|
|
|
def pycryptodome_module():
|
|
|
|
try:
|
|
|
|
import Cryptodome # noqa: F401
|
|
|
|
except ImportError:
|
|
|
|
try:
|
|
|
|
import Crypto # noqa: F401
|
|
|
|
print('WARNING: Using Crypto since Cryptodome is not available. '
|
|
|
|
'Install with: pip install pycryptodomex', file=sys.stderr)
|
|
|
|
return 'Crypto'
|
|
|
|
except ImportError:
|
|
|
|
pass
|
|
|
|
return 'Cryptodome'
|
|
|
|
|
|
|
|
|
|
|
|
dependancies = [pycryptodome_module(), 'mutagen'] + collect_submodules('websockets')
|
2021-06-21 17:23:17 +00:00
|
|
|
excluded_modules = ['test', 'ytdlp_plugins', 'youtube-dl', 'youtube-dlc']
|
|
|
|
|
2021-01-29 17:45:27 +00:00
|
|
|
PyInstaller.__main__.run([
|
2021-02-24 18:45:56 +00:00
|
|
|
'--name=yt-dlp%s' % _x86,
|
2021-07-31 02:19:28 +00:00
|
|
|
'--icon=devscripts/logo.ico',
|
2021-06-21 17:23:17 +00:00
|
|
|
*[f'--exclude-module={module}' for module in excluded_modules],
|
|
|
|
*[f'--hidden-import={module}' for module in dependancies],
|
2021-02-16 11:11:47 +00:00
|
|
|
'--upx-exclude=vcruntime140.dll',
|
2021-09-24 01:01:43 +00:00
|
|
|
'--noconfirm',
|
|
|
|
*opts,
|
2021-02-24 18:45:56 +00:00
|
|
|
'yt_dlp/__main__.py',
|
2021-01-29 17:45:27 +00:00
|
|
|
])
|
2021-10-03 20:55:13 +00:00
|
|
|
SetVersion('dist/%syt-dlp%s.exe' % ('yt-dlp/' if '--onedir' in opts else '', _x86), VERSION_FILE)
|