diff options
author | V3n3RiX <venerix@redcorelinux.org> | 2017-07-13 19:13:24 +0100 |
---|---|---|
committer | V3n3RiX <venerix@redcorelinux.org> | 2017-07-13 19:13:24 +0100 |
commit | 3fc0e1be6662687f8f9340d446e857621f0ca2cd (patch) | |
tree | f40f63c4dd0b31e2f63d809acb11e64f3ea4807f | |
parent | 7603d76b136c8e48e8f921b5e90d92ae0e47e908 (diff) |
add option to manually sync Sisyphus database with Portage database
-rwxr-xr-x | src/frontend/cli/sisyphus-cli.py | 2 | ||||
-rwxr-xr-x | src/helpers/make_spmsync_csv | 21 |
2 files changed, 23 insertions, 0 deletions
diff --git a/src/frontend/cli/sisyphus-cli.py b/src/frontend/cli/sisyphus-cli.py index 498d403..c3ddb71 100755 --- a/src/frontend/cli/sisyphus-cli.py +++ b/src/frontend/cli/sisyphus-cli.py @@ -30,6 +30,8 @@ if "__main__" == __name__: sisyphus_pkg_search() elif "update" in sys.argv[1:]: sisyphus_pkg_system_update() + elif "spmsync" in sys.argv[1:]: + sisyphus_pkg_spmsync() elif "sysinfo" in sys.argv[1:]: sisyphus_pkg_sysinfo() elif "help" in sys.argv[1:]: diff --git a/src/helpers/make_spmsync_csv b/src/helpers/make_spmsync_csv new file mode 100755 index 0000000..c315bf0 --- /dev/null +++ b/src/helpers/make_spmsync_csv @@ -0,0 +1,21 @@ +#!/usr/bin/env bash + +collect_local_portage_database() { + for i in $(qlist -ICv); do + pushd /var/db/pkg/$i > /dev/null 2>&1 + echo "$(<CATEGORY),$(sed -re "s/-([0-9])/,\1/" <PF),$(<SLOT),$(sed -e "s/\"//g" -e "s/\'//g" -e "s/\,//g" <DESCRIPTION)" >> /tmp/spmsync.csv + popd > /dev/null 2>&1 + done + mv /tmp/spmsync.csv /var/lib/sisyphus/csv/ +} + +clean_temporary_files() { + rm -rf /tmp/spmsync.csv +} + +main() { + collect_local_portage_database + clean_temporary_files +} + +main |