mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2025-01-29 20:34:22 +01:00
Updated for replace method
This commit is contained in:
parent
d6381bf2ec
commit
b6dece1928
1 changed files with 54 additions and 18 deletions
|
@ -216,7 +216,9 @@ class Repositories:
|
|||
sbo_repo_tag: str = repos_config['SBO_REPO_TAG']
|
||||
sbo_repo_patch_tag: str = repos_config['SBO_REPO_PATCH_TAG']
|
||||
if sbo_repo_local[0].startswith('file'):
|
||||
sbo_repo_path: Path = Path(''.join(sbo_repo_local)[7:])
|
||||
sbo_repo_path: Path = Path(
|
||||
''.join(sbo_repo_local).replace('file:', '')
|
||||
)
|
||||
|
||||
ponce_repo: bool = repos_config['PONCE_REPO']
|
||||
ponce_repo_name: str = repos_config['PONCE_REPO_NAME']
|
||||
|
@ -227,7 +229,9 @@ class Repositories:
|
|||
ponce_repo_tag: str = repos_config['PONCE_REPO_TAG']
|
||||
ponce_repo_patch_tag: str = repos_config['PONCE_REPO_PATCH_TAG']
|
||||
if ponce_repo_local[0].startswith('file'):
|
||||
ponce_repo_path: Path = Path(''.join(ponce_repo_local)[7:])
|
||||
ponce_repo_path: Path = Path(
|
||||
''.join(ponce_repo_local).replace('file:', '')
|
||||
)
|
||||
|
||||
slack_repo: bool = repos_config['SLACK_REPO']
|
||||
slack_repo_name: str = repos_config['SLACK_REPO_NAME']
|
||||
|
@ -238,7 +242,9 @@ class Repositories:
|
|||
slack_repo_changelog: str = repos_config['SLACK_REPO_CHANGELOG']
|
||||
slack_repo_tag: str = repos_config['SLACK_REPO_TAG']
|
||||
if slack_repo_local[0].startswith('file'):
|
||||
slack_repo_path: Path = Path(''.join(slack_repo_local)[7:])
|
||||
slack_repo_path: Path = Path(
|
||||
''.join(slack_repo_local).replace('file:', '')
|
||||
)
|
||||
|
||||
slack_extra_repo: bool = repos_config['SLACK_EXTRA_REPO']
|
||||
slack_extra_repo_name: str = repos_config['SLACK_EXTRA_REPO_NAME']
|
||||
|
@ -249,7 +255,9 @@ class Repositories:
|
|||
slack_extra_repo_changelog: str = repos_config['SLACK_EXTRA_REPO_CHANGELOG']
|
||||
slack_extra_repo_tag: str = repos_config['SLACK_EXTRA_REPO_TAG']
|
||||
if slack_extra_repo_local[0].startswith('file'):
|
||||
slack_extra_repo_path: Path = Path(''.join(slack_extra_repo_local)[7:])
|
||||
slack_extra_repo_path: Path = Path(
|
||||
''.join(slack_extra_repo_local).replace('file:', '')
|
||||
)
|
||||
|
||||
slack_patches_repo: bool = repos_config['SLACK_PATCHES_REPO']
|
||||
slack_patches_repo_name: str = repos_config['SLACK_PATCHES_REPO_NAME']
|
||||
|
@ -260,7 +268,9 @@ class Repositories:
|
|||
slack_patches_repo_changelog: str = repos_config['SLACK_PATCHES_REPO_CHANGELOG']
|
||||
slack_patches_repo_tag: str = repos_config['SLACK_PATCHES_REPO_TAG']
|
||||
if slack_patches_repo_local[0].startswith('file'):
|
||||
slack_patches_repo_path: Path = Path(''.join(slack_patches_repo_local)[7:])
|
||||
slack_patches_repo_path: Path = Path(
|
||||
''.join(slack_patches_repo_local).replace('file:', '')
|
||||
)
|
||||
|
||||
alien_repo: bool = repos_config['ALIEN_REPO']
|
||||
alien_repo_name: str = repos_config['ALIEN_REPO_NAME']
|
||||
|
@ -271,7 +281,9 @@ class Repositories:
|
|||
alien_repo_changelog: str = repos_config['ALIEN_REPO_CHANGELOG']
|
||||
alien_repo_tag: str = repos_config['ALIEN_REPO_TAG']
|
||||
if alien_repo_local[0].startswith('file'):
|
||||
alien_repo_path: Path = Path(''.join(alien_repo_local)[7:])
|
||||
alien_repo_path: Path = Path(
|
||||
''.join(alien_repo_local).replace('file:', '')
|
||||
)
|
||||
|
||||
multilib_repo: bool = repos_config['MULTILIB_REPO']
|
||||
multilib_repo_name: str = repos_config['MULTILIB_REPO_NAME']
|
||||
|
@ -282,7 +294,9 @@ class Repositories:
|
|||
multilib_repo_changelog: str = repos_config['MULTILIB_REPO_CHANGELOG']
|
||||
multilib_repo_tag: str = repos_config['MULTILIB_REPO_TAG']
|
||||
if multilib_repo_local[0].startswith('file'):
|
||||
multilib_repo_path: Path = Path(''.join(multilib_repo_local)[7:])
|
||||
multilib_repo_path: Path = Path(
|
||||
''.join(multilib_repo_local).replace('file:', '')
|
||||
)
|
||||
|
||||
restricted_repo: bool = repos_config['RESTRICTED_REPO']
|
||||
restricted_repo_name: str = repos_config['RESTRICTED_REPO_NAME']
|
||||
|
@ -293,7 +307,9 @@ class Repositories:
|
|||
restricted_repo_changelog: str = repos_config['RESTRICTED_REPO_CHANGELOG']
|
||||
restricted_repo_tag: str = repos_config['RESTRICTED_REPO_TAG']
|
||||
if restricted_repo_local[0].startswith('file'):
|
||||
restricted_repo_path: Path = Path(''.join(restricted_repo_local)[7:])
|
||||
restricted_repo_path: Path = Path(
|
||||
''.join(restricted_repo_local).replace('file:', '')
|
||||
)
|
||||
|
||||
gnome_repo: bool = repos_config['GNOME_REPO']
|
||||
gnome_repo_name: str = repos_config['GNOME_REPO_NAME']
|
||||
|
@ -304,7 +320,9 @@ class Repositories:
|
|||
gnome_repo_changelog: str = repos_config['GNOME_REPO_CHANGELOG']
|
||||
gnome_repo_tag: str = repos_config['GNOME_REPO_TAG']
|
||||
if gnome_repo_local[0].startswith('file'):
|
||||
gnome_repo_path: Path = Path(''.join(gnome_repo_local)[7:])
|
||||
gnome_repo_path: Path = Path(
|
||||
''.join(gnome_repo_local).replace('file:', '')
|
||||
)
|
||||
|
||||
msb_repo: bool = repos_config['MSB_REPO']
|
||||
msb_repo_name: str = repos_config['MSB_REPO_NAME']
|
||||
|
@ -315,7 +333,9 @@ class Repositories:
|
|||
msb_repo_changelog: str = repos_config['MSB_REPO_CHANGELOG']
|
||||
msb_repo_tag: str = repos_config['MSB_REPO_TAG']
|
||||
if msb_repo_local[0].startswith('file'):
|
||||
msb_repo_path: Path = Path(''.join(msb_repo_local)[7:])
|
||||
msb_repo_path: Path = Path(
|
||||
''.join(msb_repo_local).replace('file:', '')
|
||||
)
|
||||
|
||||
csb_repo: bool = repos_config['CSB_REPO']
|
||||
csb_repo_name: str = repos_config['CSB_REPO_NAME']
|
||||
|
@ -326,7 +346,9 @@ class Repositories:
|
|||
csb_repo_changelog: str = repos_config['CSB_REPO_CHANGELOG']
|
||||
csb_repo_tag: str = repos_config['CSB_REPO_TAG']
|
||||
if csb_repo_local[0].startswith('file'):
|
||||
csb_repo_path: Path = Path(''.join(csb_repo_local)[7:])
|
||||
csb_repo_path: Path = Path(
|
||||
''.join(csb_repo_local).replace('file:', '')
|
||||
)
|
||||
|
||||
conraid_repo: bool = repos_config['CONRAID_REPO']
|
||||
conraid_repo_name: str = repos_config['CONRAID_REPO_NAME']
|
||||
|
@ -337,7 +359,9 @@ class Repositories:
|
|||
conraid_repo_changelog: str = repos_config['CONRAID_REPO_CHANGELOG']
|
||||
conraid_repo_tag: str = repos_config['CONRAID_REPO_TAG']
|
||||
if conraid_repo_local[0].startswith('file'):
|
||||
conraid_repo_path: Path = Path(''.join(conraid_repo_local)[7:])
|
||||
conraid_repo_path: Path = Path(
|
||||
''.join(conraid_repo_local).replace('file:', '')
|
||||
)
|
||||
|
||||
slackonly_repo: bool = repos_config['SLACKONLY_REPO']
|
||||
slackonly_repo_name: str = repos_config['SLACKONLY_REPO_NAME']
|
||||
|
@ -348,7 +372,9 @@ class Repositories:
|
|||
slackonly_repo_changelog: str = repos_config['SLACKONLY_REPO_CHANGELOG']
|
||||
slackonly_repo_tag: str = repos_config['SLACKONLY_REPO_TAG']
|
||||
if slackonly_repo_local[0].startswith('file'):
|
||||
slackonly_repo_path: Path = Path(''.join(slackonly_repo_local)[7:])
|
||||
slackonly_repo_path: Path = Path(
|
||||
''.join(slackonly_repo_local).replace('file:', '')
|
||||
)
|
||||
|
||||
salixos_repo: bool = repos_config['SALIXOS_REPO']
|
||||
salixos_repo_name: str = repos_config['SALIXOS_REPO_NAME']
|
||||
|
@ -359,7 +385,9 @@ class Repositories:
|
|||
salixos_repo_changelog: str = repos_config['SALIXOS_REPO_CHANGELOG']
|
||||
salixos_repo_tag: str = repos_config['SALIXOS_REPO_TAG']
|
||||
if salixos_repo_local[0].startswith('file'):
|
||||
salixos_repo_path: Path = Path(''.join(salixos_repo_local)[7:])
|
||||
salixos_repo_path: Path = Path(
|
||||
''.join(salixos_repo_local).replace('file:', '')
|
||||
)
|
||||
|
||||
salixos_extra_repo: bool = repos_config['SALIXOS_EXTRA_REPO']
|
||||
salixos_extra_repo_name: str = repos_config['SALIXOS_EXTRA_REPO_NAME']
|
||||
|
@ -370,7 +398,9 @@ class Repositories:
|
|||
salixos_extra_repo_changelog: str = repos_config['SALIXOS_EXTRA_REPO_CHANGELOG']
|
||||
salixos_extra_repo_tag: str = repos_config['SALIXOS_EXTRA_REPO_TAG']
|
||||
if salixos_extra_repo_local[0].startswith('file'):
|
||||
salixos_extra_repo_path: Path = Path(''.join(salixos_extra_repo_local)[7:])
|
||||
salixos_extra_repo_path: Path = Path(
|
||||
''.join(salixos_extra_repo_local).replace('file:', '')
|
||||
)
|
||||
|
||||
salixos_patches_repo: bool = repos_config['SALIXOS_PATCHES_REPO']
|
||||
salixos_patches_repo_name: str = repos_config['SALIXOS_PATCHES_REPO_NAME']
|
||||
|
@ -381,7 +411,9 @@ class Repositories:
|
|||
salixos_patches_repo_changelog: str = repos_config['SALIXOS_PATCHES_REPO_CHANGELOG']
|
||||
salixos_patches_repo_tag: str = repos_config['SALIXOS_PATCHES_REPO_TAG']
|
||||
if salixos_patches_repo_local[0].startswith('file'):
|
||||
salixos_patches_repo_path: Path = Path(''.join(salixos_patches_repo_local)[7:])
|
||||
salixos_patches_repo_path: Path = Path(
|
||||
''.join(salixos_patches_repo_local).replace('file:', '')
|
||||
)
|
||||
|
||||
slackel_repo: bool = repos_config['SLACKEL_REPO']
|
||||
slackel_repo_name: str = repos_config['SLACKEL_REPO_NAME']
|
||||
|
@ -392,7 +424,9 @@ class Repositories:
|
|||
slackel_repo_changelog: str = repos_config['SLACKEL_REPO_CHANGELOG']
|
||||
slackel_repo_tag: str = repos_config['SLACKEL_REPO_TAG']
|
||||
if slackel_repo_local[0].startswith('file'):
|
||||
slackel_repo_path: Path = Path(''.join(slackel_repo_local)[7:])
|
||||
slackel_repo_path: Path = Path(
|
||||
''.join(slackel_repo_local).replace('file:', '')
|
||||
)
|
||||
|
||||
slint_repo: bool = repos_config['SLINT_REPO']
|
||||
slint_repo_name: str = repos_config['SLINT_REPO_NAME']
|
||||
|
@ -403,7 +437,9 @@ class Repositories:
|
|||
slint_repo_changelog: str = repos_config['SLINT_REPO_CHANGELOG']
|
||||
slint_repo_tag: str = repos_config['SLINT_REPO_TAG']
|
||||
if slint_repo_local[0].startswith('file'):
|
||||
slint_repo_path: Path = Path(''.join(slint_repo_local)[7:])
|
||||
slint_repo_path: Path = Path(
|
||||
''.join(slint_repo_local).replace('file:', '')
|
||||
)
|
||||
|
||||
except (tomli.TOMLDecodeError, KeyError) as error:
|
||||
errors.raise_toml_error_message(error, repositories_toml_file)
|
||||
|
|
Loading…
Add table
Reference in a new issue