diff options
author | Nicolás Reynolds <apoyosis@correo.inta.gob.ar> | 2012-11-05 11:44:26 -0300 |
---|---|---|
committer | Nicolás Reynolds <apoyosis@correo.inta.gob.ar> | 2012-11-05 11:44:26 -0300 |
commit | 369245e8dbee7ad97acec087de77081627a255db (patch) | |
tree | 8e128b0bad84d042b0d504e3e5ed726b0ffe9457 /chcleanup | |
parent | 3d3156b97f679a84210c08ca7e7563691d988a3b (diff) | |
parent | 9983b0c757834d61b9099a5953dec9d92330ac76 (diff) |
Merge branch 'master' of git://ponape.local/libretools
Diffstat (limited to 'chcleanup')
-rwxr-xr-x | chcleanup | 54 |
1 files changed, 51 insertions, 3 deletions
@@ -1,11 +1,59 @@ #!/bin/bash +# (c) Nicolás Reynolds <fauno@parabola.nu> +# Released under GPLv3 +# +# Performs chroot cleanup smartly, it only removes the unneeded packages or +# leaves you with a cleansystem +# +# See: HOOKPREBUILD + +set -e [ ! -f /etc/libretools.d/cleansystem ] && exit 1 +[ ! -d "${DB:-/var/lib/libretools/clean}"/sync ] && exit 1 + +source $(dirname $0)/libremessages +source /etc/makepkg.conf +source ${HOME}/.makepkg.conf 2>/dev/null|| true + +msg "Cleaning chroot..." + +cleanup_log=/tmp/libretools-cleanup.log +touch ${cleanup_log} + +# If we're running makepkg +if [ -f PKGBUILD ]; then + source PKGBUILD || true + + check=(${depends[@]} ${makedepends[@]} ${checkdepends[@]}) + + if [ ${#check[@]} -ne 0 ]; then + +# Update the cleansystem database + sudo pacman -b "${BD:-/var/lib/libretools/clean}" -Sy +# Get the full list of packages needed by dependencies + sudo pacman -b "${BD:-/var/lib/libretools/clean}" \ + -Sp \ + --print-format "%n" \ + ${check[@]} \ + >${cleanup_log} + fi +fi + +# Diff installed packages against a clean chroot and needed packages, +# then remove leftovers +packages=($(comm -23 <(pacman -Qq | sort) \ + <(cat /etc/libretools.d/cleansystem ${cleanup_log} | sort -u) + )) + +[ ${#packages[@]} -eq 0 ] && exit 0 -packages=($(comm -23 <(pacman -Qq | sort) <(sort /etc/libretools.d/cleansystem))) +msg2 "Removing %d packages" ${#packages[@]} -echo "Removing: ${packages[@]}" +# Only remove leftovers, -Rcs removes too much +sudo pacman --noconfirm -Rn ${packages[@]} -sudo pacman --noconfirm -Rcs ${packages[@]} +# Cleanup +rm -f ${cleanup_log} exit $? |