summaryrefslogtreecommitdiff
path: root/src/chroot-tools/chcleanup
blob: 821c572b01895a77dcbf16f11b0d584b7fdc8106 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#!/bin/bash -eE
# (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

DRYRUN=${DRYRUN:-false}
source "$(which libremessages)"

if [[ ! -f /.arch-chroot ]] && ! ${DRYRUN}; then
	error "(chcleanup): Must be run inside of a chroot"
	exit 1
fi

source /etc/libretools.d/chroot.conf
# If we're running makepkg
if [ -f PKGBUILD ]; then
	source PKGBUILD
	CHROOTEXTRAPKG+=("${depends[@]}"
	                 "${makedepends[@]}"
	                 "${checkdepends[@]}")
fi

msg "Cleaning chroot..."

TEMPDIR="$(mktemp --tmpdir -d $(basename $0).XXXXX)"
cp -a /var/lib/pacman/sync "${TEMPDIR}/"
cleanup_log="${TEMPDIR}"/libretools-cleanup.log

# Get the full list of packages needed by dependencies, including the base system
pacman -b "${TEMPDIR}" \
       -Sp --print-format "%n" \
       base base-devel sudo "${CHROOTEXTRAPKG[@]}" \
       >"${cleanup_log}"

# Diff installed packages against a clean chroot then remove leftovers
packages=($(comm -23 <(pacman -Qq | sort -u) \
                     <(sort -u "${cleanup_log}")))

RET=0
if [[ ${#packages[@]} != 0 ]]; then
	msg2 "Removing %d packages" ${#packages[@]}

	if ${DRYRUN}; then
		echo "${packages[@]}"
	else
		# Only remove leftovers, -Rcs removes too much
		pacman --noconfirm -Rn "${packages[@]}" || RET=$?
	fi
fi
# Cleanup
rm -rf "${TEMPDIR}"

exit $RET