epm-autoorphans 2.58 KB
Newer Older
1 2
#!/bin/sh
#
3 4
# Copyright (C) 2015, 2016  Etersoft
# Copyright (C) 2015, 2016  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 29 30

[ -z "$pkg_filenames" ] || fatal "No arguments are allowed here"


31
case $PMTYPE in
32
	apt-rpm)
33
		# ALT Linux only
34
		assure_exists /etc/buildreqs/files/ignore.d/apt-scripts apt-scripts
35 36
		echo "We will try remove all installed packages which are missed in repositories"
		warning "Use with caution!"
Vitaly Lipatov's avatar
Vitaly Lipatov committed
37 38
		local PKGLIST=$(__epm_orphan_altrpm \
			| sed -e "s/\.32bit//g" \
39
			| grep -v -- "^eepm$" \
Vitaly Lipatov's avatar
Vitaly Lipatov committed
40
			| grep -v -- "^kernel")
41
		docmd epm remove $PKGLIST
42
		;;
43 44 45
	apt-dpkg|aptitude-dpkg)
		assure_exists deborphan
		showcmd deborphan
Vitaly Lipatov's avatar
Vitaly Lipatov committed
46
		a= deborphan | docmd epm remove
47 48 49 50 51 52
		;;
	#aura)
	#	sudocmd aura -Oj
	#	;;
	yum-rpm)
		showcmd package-cleanup --orphans
53 54 55 56 57 58 59
		local PKGLIST=$(package-cleanup --orphans | grep -v "^eepm$")
		docmd epm remove $PKGLIST
		;;
	dnf-rpm)
		# TODO: dnf list extras
		showcmd package-cleanup --orphans
		local PKGLIST=$(package-cleanup --orphans | grep -v "^eepm$")
60
		docmd epm remove $PKGLIST
61 62
		;;
	urpm-rpm)
Vitaly Lipatov's avatar
Vitaly Lipatov committed
63
		showcmd urpme --report-orphans
64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83
		sudocmd urpme --auto-orphans
		;;
	#emerge)
	#	sudocmd emerge --depclean
	#	assure_exists revdep-rebuild
	#	sudocmd revdep-rebuild
	#	;;
	pacman)
		sudocmd pacman -Qdtq | sudocmd pacman -Rs -
		;;
	#slackpkg)
		# clean-system removes non official packages
		#sudocmd slackpkg clean-system
	#	;;
	#guix)
	#	sudocmd guix gc
	#	;;
	#pkgng)
	#	sudocmd pkg autoremove
	#	;;
84 85 86 87 88 89 90 91 92
	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)
		sudocmd zypper remove --clean-deps $PKGLIST
		;;
93 94 95
	xbps)
		CMD="xbps-remove -o"
		;;
96 97 98 99 100 101
	*)
		fatal "Have no suitable command for $PMTYPE"
		;;
esac

}