29 lines
944 B
Python
29 lines
944 B
Python
import hashlib
|
|
import sys
|
|
from string import Template
|
|
|
|
sys.stdout.reconfigure(encoding='utf-8')
|
|
args = sys.argv
|
|
version = args[1].replace("v", "")
|
|
template_file_path = args[2]
|
|
generated_file_path = args[3]
|
|
|
|
# Deployment files
|
|
hash_64 = args[4].strip()
|
|
|
|
print("Generating formula")
|
|
print(" VERSION: %s" % version)
|
|
print(" TEMPLATE PATH: %s" % template_file_path)
|
|
print(" SAVING AT: %s" % generated_file_path)
|
|
print(" HASH: %s" % hash_64)
|
|
|
|
with open(template_file_path, "r", encoding="utf-8") as template_file:
|
|
template = Template(template_file.read())
|
|
substitute = template.safe_substitute(version=version, hash_64=hash_64)
|
|
print("\n================== Generated package file ==================\n")
|
|
print(substitute)
|
|
print("\n============================================================\n")
|
|
|
|
with open(generated_file_path, "w", encoding="utf-8") as generated_file:
|
|
generated_file.write(substitute)
|