-
Notifications
You must be signed in to change notification settings - Fork 506
/
Copy pathchess.py
32 lines (31 loc) · 1.05 KB
/
chess.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
# Copyright (C) 2022 Orange
# SPDX-License-Identifier: GPL-3.0-or-later
mapping_test_data = [
{"product": "chess", "version": "6.2.9", "version_strings": ["Chess 6.2.9"]},
]
package_test_data = [
{
"url": "http://rpmfind.net/linux/fedora/linux/development/rawhide/Everything/aarch64/os/Packages/g/",
"package_name": "gnuchess-6.2.9-4.fc37.aarch64.rpm",
"product": "chess",
"version": "6.2.9",
},
{
"url": "http://rpmfind.net/linux/fedora-secondary/development/rawhide/Everything/ppc64le/os/Packages/g/",
"package_name": "gnuchess-6.2.9-4.fc37.ppc64le.rpm",
"product": "chess",
"version": "6.2.9",
},
{
"url": "http://ftp.debian.org/debian/pool/main/g/gnuchess/",
"package_name": "gnuchess_6.1.2-1_amd64.deb",
"product": "chess",
"version": "6.1.2",
},
{
"url": "http://ftp.debian.org/debian/pool/main/g/gnuchess/",
"package_name": "gnuchess_6.1.2-1_armel.deb",
"product": "chess",
"version": "6.1.2",
},
]