aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoshua M. Boniface <joshua@boniface.me>2024-03-06 20:58:49 -0500
committerJoshua M. Boniface <joshua@boniface.me>2024-03-06 20:58:49 -0500
commit5ff299ae2aa4906281f00154989dd53b3f4de595 (patch)
treed16b30e5c87735a0e9086d6909f70e1fe336fee1
parentReformat Nuget build component (style, fstrings) (diff)
downloadjellyfin-packaging-5ff299ae2aa4906281f00154989dd53b3f4de595.tar.gz
jellyfin-packaging-5ff299ae2aa4906281f00154989dd53b3f4de595.tar.bz2
jellyfin-packaging-5ff299ae2aa4906281f00154989dd53b3f4de595.zip
Reformat with black
-rwxr-xr-xbuild.py33
1 files changed, 25 insertions, 8 deletions
diff --git a/build.py b/build.py
index f0d3cb7..2ba2c02 100755
--- a/build.py
+++ b/build.py
@@ -35,7 +35,9 @@ except Exception as e:
exit(1)
-def build_package_deb(jellyfin_version, build_type, build_arch, build_version, no_push=False):
+def build_package_deb(
+ jellyfin_version, build_type, build_arch, build_version, no_push=False
+):
"""
Build a .deb package (Debian or Ubuntu) within a Docker container that matches the requested distribution version
"""
@@ -111,7 +113,9 @@ def build_package_deb(jellyfin_version, build_type, build_arch, build_version, n
)
-def build_package_rpm(jellyfin_version, build_type, build_arch, build_version, no_push=False):
+def build_package_rpm(
+ jellyfin_version, build_type, build_arch, build_version, no_push=False
+):
"""
Build a .rpm package (Fedora or CentOS) within a Docker container that matches the requested distribution version
"""
@@ -121,7 +125,9 @@ def build_package_rpm(jellyfin_version, build_type, build_arch, build_version, n
pass
-def build_linux(jellyfin_version, build_type, build_arch, _build_version, no_push=False):
+def build_linux(
+ jellyfin_version, build_type, build_arch, _build_version, no_push=False
+):
"""
Build a portable Linux archive
"""
@@ -163,7 +169,9 @@ def build_linux(jellyfin_version, build_type, build_arch, _build_version, no_pus
)
-def build_windows(jellyfin_version, build_type, _build_arch, _build_version, no_push=False):
+def build_windows(
+ jellyfin_version, build_type, _build_arch, _build_version, no_push=False
+):
"""
Build a portable Windows archive
"""
@@ -205,7 +213,9 @@ def build_windows(jellyfin_version, build_type, _build_arch, _build_version, no_
)
-def build_macos(jellyfin_version, build_type, build_arch, _build_version, no_push=False):
+def build_macos(
+ jellyfin_version, build_type, build_arch, _build_version, no_push=False
+):
"""
Build a portable MacOS archive
"""
@@ -247,7 +257,9 @@ def build_macos(jellyfin_version, build_type, build_arch, _build_version, no_pus
)
-def build_portable(jellyfin_version, build_type, _build_arch, _build_version, no_push=False):
+def build_portable(
+ jellyfin_version, build_type, _build_arch, _build_version, no_push=False
+):
"""
Build a portable .NET archive
"""
@@ -276,7 +288,9 @@ def build_portable(jellyfin_version, build_type, _build_arch, _build_version, no
)
-def build_docker(jellyfin_version, build_type, _build_arch, _build_version, no_push=False):
+def build_docker(
+ jellyfin_version, build_type, _build_arch, _build_version, no_push=False
+):
"""
Build Docker images for all architectures and combining manifests
"""
@@ -439,7 +453,10 @@ def build_docker(jellyfin_version, build_type, _build_arch, _build_version, no_p
# Log out of GHCR
os.system("docker logout")
-def build_nuget(jellyfin_version, build_type, _build_arch, _build_version, no_push=False):
+
+def build_nuget(
+ jellyfin_version, build_type, _build_arch, _build_version, no_push=False
+):
"""
Pack and upload nuget packages
"""
bgstack15