diff options
Diffstat (limited to 'helpers/make_local_csv_post')
-rwxr-xr-x | helpers/make_local_csv_post | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/helpers/make_local_csv_post b/helpers/make_local_csv_post deleted file mode 100755 index cd38974..0000000 --- a/helpers/make_local_csv_post +++ /dev/null @@ -1,21 +0,0 @@ -#!/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/local_postinst.csv - popd > /dev/null 2>&1 - done - mv /tmp/local_postinst.csv /var/lib/sisyphus/csv/ -} - -clean_temporary_files() { - rm -rf /tmp/local_postinst.csv -} - -main() { - collect_local_portage_database - clean_temporary_files -} - -main |