summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'keep-things-up-to-date')
-rwxr-xr-xkeep-things-up-to-date25
1 files changed, 0 insertions, 25 deletions
diff --git a/keep-things-up-to-date b/keep-things-up-to-date
deleted file mode 100755
index bf797a86..00000000
--- a/keep-things-up-to-date
+++ /dev/null
@@ -1,25 +0,0 @@
-#!/bin/bash
-#instruo -g -D /var/paludis/repositories/keruspe/ --extra-repository-dir /var/paludis/repositories/gentoo/ -o /var/paludis/repositories/keruspe/metadata/cache/
-
-REPOSITORIES_PATH="/var/paludis/repositories"
-DEPTH=$[$(echo ${REPOSITORIES_PATH} | sed 's:/:\n:g' | wc -l)+2]
-
-digestify() {
- for i in $(find ${REPOSITORIES_PATH}/${1} -mindepth 2 -maxdepth 2 -type d | grep -Ev '(.git|profiles|metadata)' | sort -u); do
- cave digest $(echo $i | cut -d'/' -f${DEPTH}-) ${1}
- done
-}
-
-update_categories() {
- pushd ${REPOSITORIES_PATH}/${1} &>/dev/null
- find . -maxdepth 1 -type d -name '*-*' -printf "%f\n" | sort > profiles/categories
- popd &>/dev/null
-}
-
-main() {
- digestify ${1}
- update_categories ${1}
-}
-
-main keruspe
-