tor-browser

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

bouncer_firefox_devedition.py (3628B)


      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": "Devedition-%(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-devedition-latest",
     24            "platforms": [
     25                "linux64",
     26                "linux64-aarch64",
     27                "osx",
     28                "win",
     29                "win64",
     30                "win64-aarch64",
     31            ],
     32        },
     33        "installer-ssl": {
     34            "product-name": "Devedition-%(version)s-SSL",
     35            "platforms": [
     36                "linux64",
     37                "linux64-aarch64",
     38                "osx",
     39                "win",
     40                "win64",
     41                "win64-aarch64",
     42            ],
     43        },
     44        "installer-latest-ssl": {
     45            "product-name": "Firefox-devedition-latest-SSL",
     46            "platforms": [
     47                "linux64",
     48                "linux64-aarch64",
     49                "osx",
     50                "win",
     51                "win64",
     52                "win64-aarch64",
     53            ],
     54        },
     55        "msi": {
     56            "product-name": "Devedition-%(version)s-msi-SSL",
     57            "platforms": [
     58                "win",
     59                "win64",
     60            ],
     61        },
     62        "msi-latest": {
     63            "product-name": "Firefox-devedition-msi-latest-SSL",
     64            "platforms": [
     65                "win",
     66                "win64",
     67            ],
     68        },
     69        "msix": {
     70            "product-name": "Devedition-%(version)s-msix-SSL",
     71            "platforms": [
     72                "win",
     73                "win64",
     74                "win64-aarch64",
     75            ],
     76        },
     77        "msix-latest": {
     78            "product-name": "Firefox-devedition-msix-latest-SSL",
     79            "platforms": [
     80                "win",
     81                "win64",
     82                "win64-aarch64",
     83            ],
     84        },
     85        "stub-installer": {
     86            "product-name": "Devedition-%(version)s-stub",
     87            "platforms": [
     88                "win",
     89                "win64",
     90                "win64-aarch64",
     91            ],
     92        },
     93        "stub-installer-latest": {
     94            "product-name": "Firefox-devedition-stub",
     95            "platforms": [
     96                "win",
     97                "win64",
     98                "win64-aarch64",
     99            ],
    100        },
    101        "complete-mar": {
    102            "product-name": "Devedition-%(version)s-Complete",
    103            "platforms": [
    104                "linux64",
    105                "linux64-aarch64",
    106                "osx",
    107                "win",
    108                "win64",
    109                "win64-aarch64",
    110            ],
    111        },
    112    },
    113    "partials": {
    114        "releases-dir": {
    115            "product-name": "Devedition-%(version)s-Partial-%(prev_version)s",
    116            "platforms": [
    117                "linux64",
    118                "linux64-aarch64",
    119                "osx",
    120                "win",
    121                "win64",
    122                "win64-aarch64",
    123            ],
    124        },
    125    },
    126 }