blob: 6764135ad7b1887996c94fce81919676d7ae7d77 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# the last release
TOP_RELEASE = 9
# be sure that these directories are writable for the user running the application
DATA_PATH = "/var/lib/madb"
LOG_PATH = DATA_PATH
MIRROR_URL = "https://fr2.rpmfind.net/linux/mageia/distrib/"
# Name of the development version
DEV_NAME = "cauldron"
# Level of logging
LOG_LEVEL = "DEBUG"
BUGZILLA_URL = "https://bugs.mageia.org"
# List of architectures managed
ARCHES = {
"x86_64": "x86 64bits",
"i586": "x86 32bits",
"aarch64": "Arm 64bits",
"armv7hl": "Arm 32bits v7hl",
}
# Used as filter in search bar
DISTRIBUTION = {
DEV_NAME: "Mageia cauldron",
str(TOP_RELEASE): "Mageia " + str(TOP_RELEASE),
str(TOP_RELEASE - 1): "Mageia " + str(TOP_RELEASE -1),
}
|