icecat: add release icecat-140.6.0-1gnu1 for aramo
This commit is contained in:
parent
92fef42cd6
commit
17ba0259bf
3382 changed files with 457689 additions and 569094 deletions
|
|
@ -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(
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue