diff options
Diffstat (limited to 'scripts/layman.sh')
-rw-r--r-- | scripts/layman.sh | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/scripts/layman.sh b/scripts/layman.sh new file mode 100644 index 0000000..1eb7904 --- /dev/null +++ b/scripts/layman.sh @@ -0,0 +1,13 @@ +#! /bin/bash + +repos=$(xmllint -xpath "//repo/name/text()|//repo/source/text()" /etc/portage/layman.xml | xargs -n2) + +layman -d ALL +git checkout -- /etc/portage/repos.conf/layman.conf + +for repo in $(cat /etc/portage/repos.conf/layman.conf | grep -oP "\[\K[^]]*"); do + repo_src=$(echo "$repos" | grep -P "^$repo" | awk '{ print $2 }') + layman -a "$repo_src" +done + +git checkout -- /etc/portage/repos.conf/layman.conf |