1
0
Fork 1
mirror of https://github.com/zen-browser/desktop.git synced 2025-07-08 01:19:59 +02:00

Add autopep8 configuration and integrate into workflows for code formatting

This commit is contained in:
mr. M 2025-01-12 16:57:34 +01:00
parent 838569e386
commit 225ab67a50
No known key found for this signature in database
GPG key ID: CBD57A2AEDBDA1FB
9 changed files with 156 additions and 99 deletions

View file

@ -5,7 +5,8 @@ import os
FLATID = "io.github.zen_browser.zen"
def get_sha256sum(filename):
def get_sha256sum(filename):
"""Calculate the SHA256 checksum of a file."""
sha256 = hashlib.sha256()
try:
@ -17,16 +18,16 @@ def get_sha256sum(filename):
sys.exit(1)
return sha256.hexdigest()
def build_template(template, linux_sha256, flatpak_sha256, version):
"""Build the template with the provided hashes and version."""
print(f"Building template with version {version}")
print(f"\tLinux archive sha256: {linux_sha256}")
print(f"\tFlatpak archive sha256: {flatpak_sha256}")
return template.format(
linux_sha256=linux_sha256,
flatpak_sha256=flatpak_sha256,
version=version
)
return template.format(linux_sha256=linux_sha256,
flatpak_sha256=flatpak_sha256,
version=version)
def get_template(template_root):
"""Get the template content from the specified root directory."""
@ -39,23 +40,32 @@ def get_template(template_root):
print(f"Template {file} not found.")
sys.exit(1)
def main():
"""Main function to parse arguments and process files."""
parser = argparse.ArgumentParser(description='Prepare flatpak release')
parser.add_argument('--version', help='Version of the release', required=True)
parser.add_argument('--linux-archive', help='Linux archive', required=True)
parser.add_argument('--flatpak-archive', help='Flatpak archive', required=True)
parser.add_argument('--output', help='Output file', default=f"{FLATID}.yml")
parser.add_argument('--template-root', help='Template root', default="flatpak")
parser = argparse.ArgumentParser(description="Prepare flatpak release")
parser.add_argument("--version",
help="Version of the release",
required=True)
parser.add_argument("--linux-archive", help="Linux archive", required=True)
parser.add_argument("--flatpak-archive",
help="Flatpak archive",
required=True)
parser.add_argument("--output", help="Output file", default=f"{FLATID}.yml")
parser.add_argument("--template-root",
help="Template root",
default="flatpak")
args = parser.parse_args()
linux_sha256 = get_sha256sum(args.linux_archive)
flatpak_sha256 = get_sha256sum(args.flatpak_archive)
template = build_template(get_template(args.template_root), linux_sha256, flatpak_sha256, args.version)
template = build_template(get_template(args.template_root), linux_sha256,
flatpak_sha256, args.version)
print(f"Writing output to {args.output}")
with open(args.output, "w") as f:
f.write(template)
if __name__ == "__main__":
main()