molecules/scripts/inner_source_chroot_update.sh

64 lines
1.7 KiB
Bash
Raw Normal View History

2010-09-17 13:40:17 +02:00
#!/bin/bash
/usr/sbin/env-update
. /etc/profile
2010-09-17 13:40:17 +02:00
# Setup environment vars
export ETP_NONINTERACTIVE=1
if [ -d "/usr/portage/licenses" ]; then
export ACCEPT_LICENSE="$(ls /usr/portage/licenses -1 | xargs)"
fi
export FORCE_EAPI=2
updated=0
for ((i=0; i < 6; i++)); do
equo update && {
updated=1;
break;
}
2011-07-21 13:14:09 +02:00
sleep 1200 || exit 1
done
if [ "${updated}" = "0" ]; then
exit 1
2011-07-21 13:14:09 +02:00
fi
export ETP_NOINTERACTIVE=1
2010-09-17 13:40:17 +02:00
equo upgrade || exit 1
echo "-5" | equo conf update
rm -rf /var/lib/entropy/client/packages
# copy Portage config from sabayonlinux.org entropy repo to system
for conf in package.mask package.unmask package.keywords make.conf package.use; do
repo_path=/var/lib/entropy/client/database/*/sabayonlinux.org/standard
repo_conf=$(ls -1 ${repo_path}/*/*/${conf} | sort | tail -n 1 2>/dev/null)
if [ -n "${repo_conf}" ]; then
target_path="/etc/portage/${conf}"
if [ "${conf}" = "make.conf" ]; then
target_path="/etc/make.conf"
fi
if [ ! -d "${target_path}" ]; then # do not touch dirs
cp "${repo_conf}" "${target_path}" # ignore
fi
fi
done
# split config file
for conf in 00-sabayon.package.use; do
repo_path=/var/lib/entropy/client/database/*/sabayonlinux.org/standard
repo_conf=$(ls -1 ${repo_path}/*/*/${conf} | sort | tail -n 1 2>/dev/null)
if [ -n "${repo_conf}" ]; then
target_path="/etc/portage/${conf/00-sabayon.}/${conf}"
target_dir=$(dirname "${target_path}")
if [ -f "${target_dir}" ]; then # remove old file
rm "${target_dir}" # ignore failure
fi
if [ ! -d "${target_path}" ]; then
mkdir -p "${target_path}" # ignore failure
fi
cp "${repo_conf}" "${target_path}" # ignore
fi
done
2010-09-17 13:40:17 +02:00
equo query list installed -qv > /etc/sabayon-pkglist