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 /src/helpers/make_spmsync_csv | |
parent | 7603d76b136c8e48e8f921b5e90d92ae0e47e908 (diff) |
add option to manually sync Sisyphus database with Portage database
Diffstat (limited to 'src/helpers/make_spmsync_csv')
-rwxr-xr-x | src/helpers/make_spmsync_csv | 21 |
1 files changed, 21 insertions, 0 deletions
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 |