-
Notifications
You must be signed in to change notification settings - Fork 506
/
Copy pathemacs.py
34 lines (33 loc) · 892 Bytes
/
emacs.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
# Copyright (C) 2023 Intel Corporation
# SPDX-License-Identifier: GPL-3.0-or-later
mapping_test_data = [
{
"product": "emacs",
"version": "28.2",
"version_strings": [r"$Id: GNU Emacs 28.2"],
},
{
"product": "emacs",
"version": "25.2",
"version_strings": [r"$Id: GNU Emacs 25.2"],
},
{
"product": "emacs",
"version": "26.1",
"version_strings": [r"$Id: GNU Emacs 26.1"],
},
]
package_test_data = [
{
"url": "http://ports.ubuntu.com/pool/main/e/emacs25/",
"package_name": "emacs25_25.2+1-6_arm64.deb",
"product": "emacs",
"version": "25.2",
},
{
"url": "http://rpmfind.net/linux/centos/8-stream/AppStream/x86_64/os/Packages/",
"package_name": "emacs-26.1-7.el8.x86_64.rpm",
"product": "emacs",
"version": "26.1",
},
]