mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-11-04 00:25:15 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			38 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			38 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
#!/usr/bin/env python3
 | 
						|
from __future__ import unicode_literals
 | 
						|
 | 
						|
import json
 | 
						|
import os
 | 
						|
import re
 | 
						|
import sys
 | 
						|
 | 
						|
sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
 | 
						|
 | 
						|
from yt_dlp.compat import compat_urllib_request
 | 
						|
 | 
						|
 | 
						|
# usage: python3 ./devscripts/update-formulae.py <path-to-formulae-rb> <version>
 | 
						|
# version can be either 0-aligned (yt-dlp version) or normalized (PyPl version)
 | 
						|
 | 
						|
filename, version = sys.argv[1:]
 | 
						|
 | 
						|
normalized_version = '.'.join(str(int(x)) for x in version.split('.'))
 | 
						|
 | 
						|
pypi_release = json.loads(compat_urllib_request.urlopen(
 | 
						|
    'https://pypi.org/pypi/yt-dlp/%s/json' % normalized_version
 | 
						|
).read().decode('utf-8'))
 | 
						|
 | 
						|
tarball_file = next(x for x in pypi_release['urls'] if x['filename'].endswith('.tar.gz'))
 | 
						|
 | 
						|
sha256sum = tarball_file['digests']['sha256']
 | 
						|
url = tarball_file['url']
 | 
						|
 | 
						|
with open(filename, 'r') as r:
 | 
						|
    formulae_text = r.read()
 | 
						|
 | 
						|
formulae_text = re.sub(r'sha256 "[0-9a-f]*?"', 'sha256 "%s"' % sha256sum, formulae_text)
 | 
						|
formulae_text = re.sub(r'url "[^"]*?"', 'url "%s"' % url, formulae_text)
 | 
						|
 | 
						|
with open(filename, 'w') as w:
 | 
						|
    w.write(formulae_text)
 |