2021-06-03 11:43:42 +02:00
|
|
|
#!/usr/bin/env python3
|
2022-06-24 13:06:16 +02:00
|
|
|
|
|
|
|
# Allow direct execution
|
|
|
|
import os
|
|
|
|
import sys
|
|
|
|
|
|
|
|
sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
|
|
|
|
|
|
|
|
|
2023-03-03 18:03:12 +01:00
|
|
|
import argparse
|
2022-08-08 21:38:47 +02:00
|
|
|
import contextlib
|
2022-04-12 00:32:57 +02:00
|
|
|
import sys
|
|
|
|
from datetime import datetime
|
2020-09-23 03:16:06 +02:00
|
|
|
|
2023-03-04 18:10:08 +01:00
|
|
|
from devscripts.utils import read_version, run_process, write_file
|
2020-09-23 03:16:06 +02:00
|
|
|
|
|
|
|
|
2023-03-03 18:03:12 +01:00
|
|
|
def get_new_version(version, revision):
|
|
|
|
if not version:
|
|
|
|
version = datetime.utcnow().strftime('%Y.%m.%d')
|
2020-09-23 03:16:06 +02:00
|
|
|
|
2022-08-08 21:38:47 +02:00
|
|
|
if revision:
|
|
|
|
assert revision.isdigit(), 'Revision must be a number'
|
|
|
|
else:
|
|
|
|
old_version = read_version().split('.')
|
|
|
|
if version.split('.') == old_version[:3]:
|
|
|
|
revision = str(int((old_version + [0])[3]) + 1)
|
2021-11-29 18:05:23 +01:00
|
|
|
|
2022-08-08 21:38:47 +02:00
|
|
|
return f'{version}.{revision}' if revision else version
|
2020-09-23 03:16:06 +02:00
|
|
|
|
|
|
|
|
2022-08-08 21:38:47 +02:00
|
|
|
def get_git_head():
|
|
|
|
with contextlib.suppress(Exception):
|
2023-03-04 18:10:08 +01:00
|
|
|
return run_process('git', 'rev-parse', 'HEAD').stdout.strip()
|
2022-08-08 21:38:47 +02:00
|
|
|
|
|
|
|
|
2023-03-03 18:03:12 +01:00
|
|
|
VERSION_TEMPLATE = '''\
|
2021-11-29 18:00:02 +01:00
|
|
|
# Autogenerated by devscripts/update-version.py
|
2020-09-23 03:16:06 +02:00
|
|
|
|
2023-03-03 18:03:12 +01:00
|
|
|
__version__ = {version!r}
|
2021-01-24 21:47:37 +01:00
|
|
|
|
2023-03-03 18:03:12 +01:00
|
|
|
RELEASE_GIT_HEAD = {git_head!r}
|
2022-07-29 17:03:01 +02:00
|
|
|
|
|
|
|
VARIANT = None
|
|
|
|
|
|
|
|
UPDATE_HINT = None
|
2023-03-03 18:03:12 +01:00
|
|
|
|
2023-03-03 20:54:22 +01:00
|
|
|
CHANNEL = {channel!r}
|
2021-12-23 02:42:26 +01:00
|
|
|
'''
|
2021-11-29 18:00:02 +01:00
|
|
|
|
2023-03-03 18:03:12 +01:00
|
|
|
if __name__ == '__main__':
|
|
|
|
parser = argparse.ArgumentParser(description='Update the version.py file')
|
|
|
|
parser.add_argument(
|
2023-05-20 18:08:50 +02:00
|
|
|
'-c', '--channel', default='stable',
|
2023-03-03 18:03:12 +01:00
|
|
|
help='Select update channel (default: %(default)s)')
|
|
|
|
parser.add_argument(
|
|
|
|
'-o', '--output', default='yt_dlp/version.py',
|
|
|
|
help='The output file to write to (default: %(default)s)')
|
|
|
|
parser.add_argument(
|
|
|
|
'version', nargs='?', default=None,
|
|
|
|
help='A version or revision to use instead of generating one')
|
|
|
|
args = parser.parse_args()
|
|
|
|
|
|
|
|
git_head = get_git_head()
|
|
|
|
version = (
|
|
|
|
args.version if args.version and '.' in args.version
|
|
|
|
else get_new_version(None, args.version))
|
|
|
|
write_file(args.output, VERSION_TEMPLATE.format(
|
|
|
|
version=version, git_head=git_head, channel=args.channel))
|
|
|
|
|
|
|
|
print(f'version={version} ({args.channel}), head={git_head}')
|