e4984d01ea
- use xbps-checkvers(1) to resolve dependencies. - all dependencies are installed at once for the host and target. - the show-build-deps target is now much faster. - the update-bulk/show-repo-updates targets are now much faster. - the update-sys/show-sys-updates targets are now much faster. - the bootstrap target now works on musl hosts. - simplified some loops. - use cut(1) rather than awk(1) where applicable. - multiple random changes to improve performance. Based on work started by @Duncaen on #12433 Close #12433 Close #11282
94 lines
2.5 KiB
Bash
94 lines
2.5 KiB
Bash
# vim: set ts=4 sw=4 et:
|
|
|
|
bulk_sortdeps() {
|
|
local pkgs="$@"
|
|
local pkg _pkg
|
|
local NPROCS=$(($(nproc)*2))
|
|
local NRUNNING=0
|
|
|
|
tmpf=$(mktemp) || exit 1
|
|
|
|
# Perform a topological sort of all *direct* build dependencies.
|
|
for pkg in ${pkgs}; do
|
|
if [ $NRUNNING -eq $NPROCS ]; then
|
|
NRUNNING=0
|
|
wait
|
|
fi
|
|
NRUNNING=$((NRUNNING+1))
|
|
(
|
|
for _pkg in $(./xbps-src show-build-deps $pkg 2>/dev/null); do
|
|
echo "$pkg $_pkg" >> $tmpf
|
|
done
|
|
echo "$pkg $pkg" >> $tmpf
|
|
) &
|
|
done
|
|
wait
|
|
tsort $tmpf|tac
|
|
rm -f $tmpf
|
|
}
|
|
|
|
bulk_build() {
|
|
local sys="$1"
|
|
local NPROCS=$(($(nproc)*2))
|
|
local NRUNNING=0
|
|
|
|
if [ "$XBPS_CROSS_BUILD" ]; then
|
|
source ${XBPS_COMMONDIR}/cross-profiles/${XBPS_CROSS_BUILD}.sh
|
|
export XBPS_ARCH=${XBPS_TARGET_MACHINE}
|
|
fi
|
|
if ! command -v xbps-checkvers &>/dev/null; then
|
|
msg_error "xbps-src: cannot find xbps-checkvers(1) command!\n"
|
|
fi
|
|
|
|
# Compare installed pkg versions vs srcpkgs
|
|
if [[ $sys ]]; then
|
|
xbps-checkvers -f '%n' -I -D $XBPS_DISTDIR
|
|
return $?
|
|
fi
|
|
# compare repo pkg versions vs srcpkgs
|
|
for f in $(xbps-checkvers -f '%n' -D $XBPS_DISTDIR); do
|
|
if [ $NRUNNING -eq $NPROCS ]; then
|
|
NRUNNING=0
|
|
wait
|
|
fi
|
|
NRUNNING=$((NRUNNING+1))
|
|
(
|
|
setup_pkg $f $XBPS_TARGET_MACHINE &>/dev/null
|
|
if show_avail &>/dev/null; then
|
|
echo "$f"
|
|
fi
|
|
) &
|
|
done
|
|
wait
|
|
return $?
|
|
}
|
|
|
|
bulk_update() {
|
|
local args="$1" pkgs f rval
|
|
|
|
pkgs="$(bulk_build ${args})"
|
|
[[ -z $pkgs ]] && return 0
|
|
|
|
msg_normal "xbps-src: the following packages must be rebuilt and updated:\n"
|
|
for f in ${pkgs}; do
|
|
echo " $f"
|
|
done
|
|
for f in ${pkgs}; do
|
|
XBPS_TARGET_PKG=$f
|
|
read_pkg
|
|
msg_normal "xbps-src: building ${pkgver} ...\n"
|
|
if [ -n "$CHROOT_READY" -a -z "$IN_CHROOT" ]; then
|
|
chroot_handler pkg $XBPS_TARGET_PKG
|
|
else
|
|
$XBPS_LIBEXECDIR/build.sh $f $f pkg $XBPS_CROSS_BUILD
|
|
fi
|
|
if [ $? -eq 1 ]; then
|
|
msg_error "xbps-src: failed to build $pkgver pkg!\n"
|
|
fi
|
|
done
|
|
if [ -n "$pkgs" -a -n "$args" ]; then
|
|
echo
|
|
msg_normal "xbps-src: updating your system, confirm to proceed...\n"
|
|
${XBPS_SUCMD} "xbps-install --repository=$XBPS_REPOSITORY --repository=$XBPS_REPOSITORY/nonfree -u ${pkgs}" || return 1
|
|
fi
|
|
}
|