-
Notifications
You must be signed in to change notification settings - Fork 463
/
firefox.py
33 lines (32 loc) · 947 Bytes
/
firefox.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# Copyright (C) 2022 Intel Corporation
# SPDX-License-Identifier: GPL-3.0-or-later
mapping_test_data = [
{
"product": "firefox",
"version": "83.0",
"version_strings": [r"firefox-83.0"],
},
]
package_test_data = [
{
"url": "https://www.rpmfind.net/linux/fedora/linux/development/rawhide/Everything/aarch64/os/Packages/f/",
"package_name": "firefox-106.0.4-1.fc38.aarch64.rpm",
"product": "firefox",
"version": "106.0.4",
"other_products": [
"libjpeg",
"libjpeg-turbo",
"libvpx",
"lz4",
"rust",
"sqlite",
],
},
{
"url": "http://ftp.fr.debian.org/debian/pool/main/f/firefox/",
"package_name": "firefox_83.0-1_mipsel.deb",
"product": "firefox",
"version": "83.0",
"other_products": ["libjpeg", "libjpeg-turbo", "lz4", "rust", "sqlite"],
},
]