diff --git a/configs/repositories.toml b/configs/repositories.toml index 556dbdbb..da6a5ac5 100644 --- a/configs/repositories.toml +++ b/configs/repositories.toml @@ -146,7 +146,7 @@ GNOME_REPO_TAG = "gfs" MSB_REPO = false MSB_REPO_NAME = "msb" MSB_REPO_LOCAL = [""] -MSB_REPO_MIRROR = ["https://slackware.uk/msb/", "15.0/", "1.26/", "x86_64/"] +MSB_REPO_MIRROR = ["https://slackware.uk/msb/", "15.0/", "1.28/", "x86_64/"] MSB_REPO_PACKAGES = "PACKAGES.TXT" MSB_REPO_CHECKSUMS = "CHECKSUMS.md5" MSB_REPO_CHANGELOG = "ChangeLog.txt" diff --git a/slpkg/repositories.py b/slpkg/repositories.py index e5a32063..a452e736 100644 --- a/slpkg/repositories.py +++ b/slpkg/repositories.py @@ -20,6 +20,8 @@ class Repositories: repos_config = {} repositories = {} + data_json: str = 'data.json' + last_update_json: Path = Path(repositories_path, 'last_update.json') default_repository: str = 'sbo' sbo_repo: bool = True @@ -117,7 +119,7 @@ class Repositories: msb_repo_name: str = 'msb' msb_repo_path: Path = Path(repositories_path, msb_repo_name) msb_repo_local = [''] - msb_repo_mirror = ['https://slackware.uk/msb/', '15.0/', '1.26/', 'x86_64/'] + msb_repo_mirror = ['https://slackware.uk/msb/', '15.0/', '1.28/', 'x86_64/'] msb_repo_packages: str = 'PACKAGES.TXT' msb_repo_checksums: str = 'CHECKSUMS.md5' msb_repo_changelog: str = 'ChangeLog.txt'