tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

bouncer_firefox_esr.py (5302B)


      1 # This Source Code Form is subject to the terms of the Mozilla Public
      2 # License, v. 2.0. If a copy of the MPL was not distributed with this
      3 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
      4 
      5 # lint_ignore=E501
      6 config = {
      7    "products": {
      8        # for installers, stubs, msi (ie not updates) ...
      9        # products containing "latest" are for www.mozilla.org via cron-bouncer-check
     10        # products using versions are for release automation via release-bouncer-check-firefox
     11        "installer": {
     12            "product-name": "Firefox-%(version)s",
     13            "platforms": [
     14                "linux64",
     15                "linux64-aarch64",
     16                "osx",
     17                "win",
     18                "win64",
     19                "win64-aarch64",
     20            ],
     21        },
     22        "installer-latest": {
     23            "product-name": "Firefox-esr-latest",
     24            "platforms": [
     25                "linux64",
     26                "osx",
     27                "win",
     28                "win64",
     29                "win64-aarch64",
     30            ],
     31        },
     32        "installer-next-latest": {
     33            "product-name": "Firefox-esr-next-latest",
     34            "platforms": [
     35                "linux64",
     36                "linux64-aarch64",
     37                "osx",
     38                "win",
     39                "win64",
     40                "win64-aarch64",
     41            ],
     42        },
     43        "installer-ssl": {
     44            "product-name": "Firefox-%(version)s-SSL",
     45            "platforms": [
     46                "linux64",
     47                "linux64-aarch64",
     48                "osx",
     49                "win",
     50                "win64",
     51                "win64-aarch64",
     52            ],
     53        },
     54        "installer-latest-ssl": {
     55            "product-name": "Firefox-esr-latest-SSL",
     56            "platforms": [
     57                "linux64",
     58                "osx",
     59                "win",
     60                "win64",
     61                "win64-aarch64",
     62            ],
     63        },
     64        "installer-next-latest-ssl": {
     65            "product-name": "Firefox-esr-next-latest-SSL",
     66            "platforms": [
     67                "linux64",
     68                "linux64-aarch64",
     69                "osx",
     70                "win",
     71                "win64",
     72                "win64-aarch64",
     73            ],
     74        },
     75        "msi": {
     76            "product-name": "Firefox-%(version)s-msi-SSL",
     77            "platforms": [
     78                "win",
     79                "win64",
     80            ],
     81        },
     82        "msi-latest": {
     83            "product-name": "Firefox-esr-msi-latest-SSL",
     84            "platforms": [
     85                "win",
     86                "win64",
     87            ],
     88        },
     89        "msi-next-latest": {
     90            "product-name": "Firefox-esr-next-msi-latest-SSL",
     91            "platforms": [
     92                "win",
     93                "win64",
     94            ],
     95        },
     96        "msix": {
     97            "product-name": "Firefox-%(version)s-msix-SSL",
     98            "platforms": [
     99                "win",
    100                "win64",
    101                "win64-aarch64",
    102            ],
    103        },
    104        "msix-latest": {
    105            "product-name": "Firefox-esr-msix-latest-SSL",
    106            "platforms": [
    107                "win",
    108                "win64",
    109                "win64-aarch64",
    110            ],
    111        },
    112        "msix-next-latest": {
    113            "product-name": "Firefox-esr-next-msix-latest-SSL",
    114            "platforms": [
    115                "win",
    116                "win64",
    117                "win64-aarch64",
    118            ],
    119        },
    120        "pkg": {
    121            "product-name": "Firefox-%(version)s-pkg-SSL",
    122            "platforms": ["osx"],
    123        },
    124        "pkg-latest": {
    125            "product-name": "Firefox-esr-pkg-latest-SSL",
    126            "platforms": ["osx"],
    127        },
    128        "pkg-next-latest": {
    129            "product-name": "Firefox-esr-next-pkg-latest-SSL",
    130            "platforms": ["osx"],
    131        },
    132        "langpack": {
    133            "product-name": "Firefox-%(version)s-langpack-SSL",
    134            "platforms": [
    135                "linux64",
    136                "linux64-aarch64",
    137                "osx",
    138                "win",
    139                "win64",
    140            ],
    141        },
    142        "langpack-latest": {
    143            "product-name": "Firefox-esr-langpack-latest-SSL",
    144            "platforms": [
    145                "linux64",
    146                "osx",
    147                "win",
    148                "win64",
    149            ],
    150        },
    151        "langpack-latest-next": {
    152            "product-name": "Firefox-esr-next-langpack-latest-SSL",
    153            "platforms": [
    154                "linux64",
    155                "linux64-aarch64",
    156                "osx",
    157                "win",
    158                "win64",
    159            ],
    160        },
    161        "complete-mar": {
    162            "product-name": "Firefox-%(version)s-Complete",
    163            "platforms": [
    164                "linux64",
    165                "linux64-aarch64",
    166                "osx",
    167                "win",
    168                "win64",
    169                "win64-aarch64",
    170            ],
    171        },
    172    },
    173    "partials": {
    174        "releases-dir": {
    175            "product-name": "Firefox-%(version)s-Partial-%(prev_version)s",
    176            "platforms": [
    177                "linux64",
    178                "linux64-aarch64",
    179                "osx",
    180                "win",
    181                "win64",
    182                "win64-aarch64",
    183            ],
    184        },
    185    },
    186 }