From 016f9ba4fa9664300edeebc2f8f396cf023d5390 Mon Sep 17 00:00:00 2001 From: "Suren A. Chilingaryan" Date: Sun, 1 Sep 2019 01:29:17 +0200 Subject: Layman script --- scripts/layman.sh | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 scripts/layman.sh (limited to 'scripts') 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 -- cgit v1.2.3