icecat: add release icecat-140.6.0-1gnu1 for aramo

This commit is contained in:
Ark74 2026-01-17 18:56:47 -06:00
parent 92fef42cd6
commit 17ba0259bf
3382 changed files with 457689 additions and 569094 deletions

View file

@ -2829,7 +2829,7 @@ def repackage_msi(
@CommandArgument(
"--channel",
type=str,
choices=["official", "beta", "aurora", "nightly", "unofficial"],
choices=["official", "beta", "esr", "aurora", "nightly", "unofficial"],
help="Release channel.",
)
@CommandArgument(

View file

@ -354,6 +354,7 @@ def repackage_msix(
if channel not in (
"official",
"beta",
"esr",
"aurora",
"nightly",
"unofficial",
@ -412,9 +413,17 @@ def repackage_msix(
if not displayname:
displayname = f"Mozilla {first}"
# Release (official) and Beta share branding. Differentiate Beta a little bit.
if channel == "beta":
# Release (official) and Beta share branding. Differentiate Beta a little bit.
displayname += " Beta"
suffix = " Beta"
if not displayname.endswith(suffix):
displayname += suffix
elif channel == "esr":
# Release (official) and ESR share branding. Differentiate ESR a little bit.
suffix = " ESR"
if not displayname.endswith(suffix):
displayname += suffix
second = next(values)
vendor = vendor or second
@ -472,9 +481,17 @@ def repackage_msix(
_, _, brandFullName = brandFullName.partition("=")
brandFullName = brandFullName.strip()
# Release (official) and Beta share branding. Differentiate Beta a little bit.
if channel == "beta":
# Release (official) and Beta share branding. Differentiate Beta a little bit.
brandFullName += " Beta"
suffix = " Beta"
if not brandFullName.endswith(suffix):
brandFullName += suffix
elif channel == "esr":
# Release (official) and ESR share branding. Differentiate ESR a little bit.
suffix = " ESR"
if not brandFullName.endswith(suffix):
brandFullName += suffix
branding = get_branding(
use_official_branding, topsrcdir, build_app, unpack_finder, log