-
Notifications
You must be signed in to change notification settings - Fork 506
/
Copy pathfluidsynth.py
40 lines (39 loc) · 1.16 KB
/
fluidsynth.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
39
40
# Copyright (C) 2023 Orange
# SPDX-License-Identifier: GPL-3.0-or-later
mapping_test_data = [
{
"product": "fluidsynth",
"version": "2.3.2",
"version_strings": ["FluidSynth executable version 2.3.2"],
},
{
"product": "fluidsynth",
"version": "1.1.11",
"version_strings": ["1.1.11\nFluidSynth"],
},
{
"product": "fluidsynth",
"version": "1.1.11",
"version_strings": ["fluidsynth-1.1.11"],
},
]
package_test_data = [
{
"url": "http://rpmfind.net/linux/fedora/linux/development/rawhide/Everything/aarch64/os/Packages/f/",
"package_name": "fluidsynth-2.3.2-1.fc39.aarch64.rpm",
"product": "fluidsynth",
"version": "2.3.2",
},
{
"url": "http://ftp.debian.org/debian/pool/main/f/fluidsynth/",
"package_name": "fluidsynth_1.1.11-1+deb10u1_amd64.deb",
"product": "fluidsynth",
"version": "1.1.11",
},
{
"url": "http://ftp.debian.org/debian/pool/main/f/fluidsynth/",
"package_name": "libfluidsynth1_1.1.11-1+deb10u1_arm64.deb",
"product": "fluidsynth",
"version": "1.1.11",
},
]