-
Notifications
You must be signed in to change notification settings - Fork 463
/
ceph.py
29 lines (29 loc) · 896 Bytes
/
ceph.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
mapping_test_data = [
{
"product": "ceph",
"version": "17.2.5",
"version_strings": ["ceph-17.2.5"],
}
]
package_test_data = [
{
"url": "http://rpmfind.net/linux/fedora/linux/development/rawhide/Everything/aarch64/os/Packages/c/",
"package_name": "ceph-base-18.2.0-1.fc40.aarch64.rpm",
"product": "ceph",
"version": "18.2.0",
},
{
"url": "http://ftp.fr.debian.org/debian/pool/main/c/ceph/",
"package_name": "ceph-base_12.2.11+dfsg1-2.1+b1_amd64.deb",
"product": "ceph",
"version": "12.2.11",
"other_products": ["lua"],
},
{
"url": "https://eu.mirror.archlinuxarm.org/aarch64/extra/",
"package_name": "ceph-15.2.17-1-aarch64.pkg.tar.xz",
"product": "ceph",
"version": "15.2.17",
"other_products": ["civetweb", "gcc", "lua"],
},
]