diff options
author | V3n3RiX <venerix@redcorelinux.org> | 2021-03-06 21:20:06 +0000 |
---|---|---|
committer | V3n3RiX <venerix@redcorelinux.org> | 2021-03-06 21:20:06 +0000 |
commit | 170f9d7b708902c2f8b58d911383aef2ef35941a (patch) | |
tree | 38e62857b8383807a2ee0921acdd84874295ca02 /src/backend/update.py | |
parent | df346a9e0facec5bc7e69a106d4e0e3776c966a4 (diff) |
backend :
* we now ship updated metadata in our ebuild tree
* we fetch it via normal update/sync operation
* local regen/update is no longer required
* this will improve update/sync operations considerably
Diffstat (limited to 'src/backend/update.py')
-rw-r--r-- | src/backend/update.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/backend/update.py b/src/backend/update.py index df6dc5d..2b92dbd 100644 --- a/src/backend/update.py +++ b/src/backend/update.py @@ -7,7 +7,6 @@ import sisyphus.cache import sisyphus.binhost import sisyphus.check import sisyphus.database -import sisyphus.metadata import sisyphus.sync def syncAll(): @@ -15,13 +14,12 @@ def syncAll(): sisyphus.sync.overlay() sisyphus.sync.portageCfg() sisyphus.database.syncRemote() - sisyphus.metadata.regenSilent() def syncCfg(): sisyphus.sync.portageCfg() def doSync(): - sisyphus.cache.clean() + sisyphus.cache.purge() needsPortage = sisyphus.check.portage() needsOverlay = sisyphus.check.overlay() |