-
Notifications
You must be signed in to change notification settings - Fork 506
/
Copy pathacpid.py
38 lines (37 loc) · 1.22 KB
/
acpid.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
34
35
36
37
38
# Copyright (C) 2022 Orange
# SPDX-License-Identifier: GPL-3.0-or-later
mapping_test_data = [
{"product": "acpid", "version": "2.0.34", "version_strings": ["acpid-2.0.34"]},
]
package_test_data = [
{
"url": "http://rpmfind.net/linux/openmandriva/cooker/repository/aarch64/main/release/",
"package_name": "acpid-2.0.34-1-omv4090.aarch64.rpm",
"product": "acpid2",
"version": "2.0.34",
},
{
"url": "http://rpmfind.net/linux/openmandriva/cooker/repository/x86_64/main/release/",
"package_name": "acpid-2.0.34-1-omv4090.x86_64.rpm",
"product": "acpid2",
"version": "2.0.34",
},
{
"url": "http://ftp.debian.org/debian/pool/main/a/acpid/",
"package_name": "acpid_2.0.23-2_amd64.deb",
"product": "acpid2",
"version": "2.0.23",
},
{
"url": "http://ftp.debian.org/debian/pool/main/a/acpid/",
"package_name": "acpid_2.0.23-2_armel.deb",
"product": "acpid2",
"version": "2.0.23",
},
{
"url": "https://downloads.openwrt.org/releases/packages-19.07/x86_64/packages/",
"package_name": "acpid_2.0.30-1_x86_64.ipk",
"product": "acpid2",
"version": "2.0.30",
},
]