# 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), }