Add support to update cache of overlays

This commit is contained in:
hasufell 2015-08-17 17:29:55 +02:00
parent 31dd5f0549
commit 6df3897ccd
No known key found for this signature in database
GPG Key ID: 220CD1C5BDEED020
1 changed files with 14 additions and 1 deletions

View File

@ -4,7 +4,20 @@ source /etc/portage/check-portdir.sh
source /etc/init.d/functions.sh
source /etc/portage/util-functions.sh
ebegin "Syncing metadata cache"
# add your overlays here (name of the overlay!)
overlay_list=(
)
ebegin "Syncing metadata cache for gentoo repository"
rsync -avPq rsync://rsync.gentoo.org/gentoo-portage/metadata/md5-cache/ "${PORTDIR}"/metadata/md5-cache/
egencache --jobs=$(nproc) --repo=gentoo --update --update-use-local-desc
eend $?
if [[ ${#overlay_list[@]} -gt 0 ]] ; then
ebegin "Syncing metadata cache for overlays"
for _overlay in ${overlay_list[@]} ; do
einfo " ${_overlay}"
egencache --jobs=$(nproc) --repo=${_overlay} --update --update-use-local-desc
done
eend $?
fi