diff options
author | V3n3RiX <venerix@koprulu.sector> | 2022-09-17 19:12:53 +0100 |
---|---|---|
committer | V3n3RiX <venerix@koprulu.sector> | 2022-09-17 19:12:53 +0100 |
commit | e1562a71d6483021d332bccbfc5a3086688bc58c (patch) | |
tree | 6be3d468e0aadd6c4de6c4dbd7a58ebe9fd59cbb /src/backend/filesystem.py | |
parent | 0cf2c9f8ec52b1ae276c1573210d252ab0c4577b (diff) |
rearrange the backend
Diffstat (limited to 'src/backend/filesystem.py')
-rw-r--r-- | src/backend/filesystem.py | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/src/backend/filesystem.py b/src/backend/filesystem.py deleted file mode 100644 index 4934108..0000000 --- a/src/backend/filesystem.py +++ /dev/null @@ -1,28 +0,0 @@ -#!/usr/bin/python3 - -import platform - -remoteGitlab = 'https://gitlab.com/redcore' -remotePagure = 'https://pagure.io/redcore' - -portageRepo = 'portage.git' -redcoreRepo = 'redcore-desktop.git' -portageConfigRepo = 'redcore-build.git' - -portageRepoDir = '/usr/ports/gentoo' -redcoreRepoDir = '/usr/ports/redcore' -portageConfigDir = '/opt/redcore-build' -portageCacheDir = '/var/cache/packages' -portageMetadataDir = '/var/cache/edb' - -remotePackagesCsv = '/var/lib/sisyphus/csv/remotePackagesPre.csv' -remoteDescriptionsCsv = '/var/lib/sisyphus/csv/remoteDescriptionsPre.csv' -localPackagesCsv = '/var/lib/sisyphus/csv/localPackagesPre.csv' - -localDatabase = '/var/lib/sisyphus/db/sisyphus.db' - -if platform.uname()[4] == 'x86_64': - mirrorCfg = '/etc/sisyphus/sisyphus-mirrors-amd64.conf' - -if platform.uname()[4] == 'aarch64': - mirrorCfg = '/etc/sisyphus/sisyphus-mirrors-arm64.conf' |