epm-autoorphans 3.34 KB
Newer Older
1 2
#!/bin/sh
#
3 4
# Copyright (C) 2015, 2017  Etersoft
# Copyright (C) 2015, 2017  Vitaly Lipatov <lav@etersoft.ru>
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#

20 21 22 23 24
__epm_orphan_altrpm()
{
	docmd "apt-cache list-extras"
}

25 26
epm_autoorphans()
{
27

28
[ -z "$*" ] || fatal "No arguments are allowed here"
29 30


31
case $PMTYPE in
32
	apt-rpm)
33
		# ALT Linux only
34
		assure_exists /usr/share/apt/scripts/list-extras.lua apt-scripts
35 36 37 38
		if [ -z "$dryrun" ] ; then
			echo "We will try remove all installed packages which are missed in repositories"
			warning "Use with caution!"
		fi
39
		epm Upgrade || fatal
Vitaly Lipatov's avatar
Vitaly Lipatov committed
40 41
		local PKGLIST=$(__epm_orphan_altrpm \
			| sed -e "s/\.32bit//g" \
42
			| grep -v -- "^eepm$" \
43
			| grep -v -- "^distro_info$" \
Vitaly Lipatov's avatar
Vitaly Lipatov committed
44
			| grep -v -- "^kernel")
45

46
		if [ -z "$dryrun" ] && [ -n "$PKGLIST" ] ; then
47
			showcmd epm remove $dryrun $force $PKGLIST
48 49 50
			confirm_info "We will remove packages above."
		fi

51 52 53
#		if [ -n "$dryrun" ] ; then
#			echo "$PKGLIST"
#		else
54
			docmd epm remove $dryrun $force $(subst_option non_interactive --auto) $PKGLIST
55
#		fi
56
		;;
57 58 59
	apt-dpkg|aptitude-dpkg)
		assure_exists deborphan
		showcmd deborphan
60
		a='' deborphan | docmd epm remove $dryrun
61 62 63 64 65
		;;
	#aura)
	#	sudocmd aura -Oj
	#	;;
	yum-rpm)
66 67
		docmd epm upgrade
		assure_exists package-cleanup yum-utils
68
		showcmd package-cleanup --orphans
69
		local PKGLIST=$(package-cleanup -q --orphans | grep -v "^eepm-")
70
		docmd epm remove $dryrun $PKGLIST
71 72 73
		;;
	dnf-rpm)
		# TODO: dnf list extras
74 75
		docmd epm upgrade
		assure_exists package-cleanup dnf-utils
76
		showcmd package-cleanup --orphans
77
		local PKGLIST=$(package-cleanup -q --orphans | grep -v "^eepm-")
78
		docmd epm remove $dryrun $PKGLIST
79 80
		;;
	urpm-rpm)
81 82 83 84 85 86
		if [ -n "$dryrun" ] ; then
			fatal "--dry-run is not supported yet"
		else
			showcmd urpme --report-orphans
			sudocmd urpme --auto-orphans
		fi
87 88 89 90 91 92 93
		;;
	#emerge)
	#	sudocmd emerge --depclean
	#	assure_exists revdep-rebuild
	#	sudocmd revdep-rebuild
	#	;;
	pacman)
94 95 96 97 98 99
		if [ -n "$dryrun" ] ; then
			info "Autoorphans packages list:"
			sudocmd pacman -Qdtq
		else
			sudocmd pacman -Qdtq | sudocmd pacman -Rs -
		fi
100
		;;
101
	slackpkg)
102
		# clean-system removes non official packages
103 104
		sudocmd slackpkg clean-system
		;;
105 106 107 108 109 110
	#guix)
	#	sudocmd guix gc
	#	;;
	#pkgng)
	#	sudocmd pkg autoremove
	#	;;
111 112 113 114 115 116 117
	zypper-rpm)
		# https://www.linux.org.ru/forum/desktop/11931830
		assure_exists zypper zypper 1.9.2
		# For zypper < 1.9.2: zypper se -si | grep 'System Packages'
		sudocmd zypper packages --orphaned
		# FIXME: x86_64/i586 are duplicated
		local PKGLIST=$(zypper packages --orphaned | tail -n +5 | cut -d \| -f 3 | sort -u)
118
		docmd epm remove $dryrun --clean-deps $PKGLIST
119
		;;
120
	xbps)
121 122 123 124 125
		if [ -n "$dryrun" ] ; then
			fatal "--dry-run is not supported yet"
		else
			sudocmd xbps-remove -o
		fi
126
		;;
127 128 129 130 131 132
	*)
		fatal "Have no suitable command for $PMTYPE"
		;;
esac

}