summaryrefslogtreecommitdiff
path: root/helpers/make_local_csv_post
diff options
context:
space:
mode:
Diffstat (limited to 'helpers/make_local_csv_post')
-rwxr-xr-xhelpers/make_local_csv_post21
1 files changed, 21 insertions, 0 deletions
diff --git a/helpers/make_local_csv_post b/helpers/make_local_csv_post
new file mode 100755
index 0000000..cd38974
--- /dev/null
+++ b/helpers/make_local_csv_post
@@ -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/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