2015-08-20 14:37:06 -06:00
#!/bin/bash
. ./lib
options=()
2018-07-22 09:25:41 -06:00
if [ -f /usr/bin/trizen ]; then
options+=("Upgrade with trizen" "trizen -Syu")
aurhelper=1
fi
2018-07-22 10:30:02 -06:00
if [ -f /usr/bin/yay ]; then
options+=("Upgrade with yay" "yay -Syu")
aurhelper=1
fi
if [ -f /usr/bin/aurman ]; then
options+=("Upgrade with aurman" "aurman -Syu")
aurhelper=1
fi
2015-08-20 14:37:06 -06:00
if [ -f /usr/bin/yaourt ]; then
options+=("Upgrade with yaourt" "yaourt -Syua")
aurhelper=1
fi
if [ ! "$aurhelper" = "1" ]; then
2018-07-22 09:25:41 -06:00
options+=("Install trizen" "")
2018-07-22 10:30:02 -06:00
options+=("Install yay" "")
2018-07-22 10:31:41 -06:00
options+=("Install aurman" "")
2018-07-22 09:28:36 -06:00
options+=("Install yaourt" "(End of life)")
2015-08-20 14:37:06 -06:00
options+=("" "")
fi
options+=("Upgrade" "pacman -Syu")
2016-01-11 13:35:42 -07:00
options+=("Clean orphan" "pacman -Rns \$(pacman -Qqtd)")
2016-01-11 12:14:42 -07:00
options+=("Clean cache" "pacman -Sc")
2015-08-20 14:37:06 -06:00
options+=("" "")
options+=("Edit pacman.conf" "")
options+=("Edit mirrorlist" "")
options+=("" "")
2017-09-08 13:21:08 -06:00
options+=("Update keyring" "pacman -S archlinux-keyring")
2016-05-14 08:33:14 -06:00
options+=("Refresh pacman keys" "pacman-key --refresh-keys")
2018-09-15 15:27:02 -06:00
options+=("Add GPG key" "gpg --recv-keys")
2016-05-14 08:33:14 -06:00
options+=("" "")
2015-12-19 12:16:33 -07:00
if [ -f /var/lib/pacman/db.lck ]; then
options+=("Remove db.lck" "rm /var/lib/pacman/db.lck")
options+=("" "")
fi
2015-08-20 14:37:06 -06:00
if [ "$aurhelper" = "1" ]; then
2018-07-22 09:25:41 -06:00
if [ ! -f /usr/bin/downgrade ]; then
options+=("Install downgrade" "")
fi
2017-02-03 11:37:56 -07:00
if [ ! -f /usr/bin/pkgstats ]; then
options+=("Install pkgstats" "")
fi
if [ ! -f /usr/bin/aurvote ]; then
options+=("Install aurvote" "")
fi
2018-07-22 09:25:41 -06:00
if [ ! -f /usr/bin/trizen ]; then
options+=("Install trizen" "")
fi
2018-07-22 10:30:02 -06:00
if [ ! -f /usr/bin/yay ]; then
options+=("Install yay" "")
fi
if [ ! -f /usr/bin/aurman ]; then
options+=("Install aurman" "")
fi
2017-02-03 11:40:34 -07:00
if [ ! -f /usr/bin/yaourt ]; then
2018-07-22 09:28:36 -06:00
options+=("Install yaourt" "(End of life)")
2017-02-03 11:40:34 -07:00
fi
2015-08-20 14:37:06 -06:00
fi
sel=$(whiptail --backtitle "$apptitle" --title "Updates Menu :" --menu "" --cancel-button "Back" 0 0 0 \
"${options[@]}" \
3>&1 1>&2 2>&3)
if [ ! "$?" = "0" ]; then
exit 1
fi
checkaurdependencies(){
if [ ! -f /usr/bin/automake ]; then
pacman -S --needed base-devel
fi
2018-06-04 17:08:04 -06:00
if [ ! -f /usr/bin/git ]; then
pacman -S --needed git
fi
2015-08-20 14:37:06 -06:00
if [ ! $(id -u "aurbuilder") ]; then
newpass=$(< /dev/urandom tr -dc "@#*%&_A-Z-a-z-0-9" | head -c16)
2018-07-22 09:25:41 -06:00
useradd -r -N -M -d /tmp/aurbuilder -s /usr/bin/nologin aurbuilder
2015-08-20 14:37:06 -06:00
echo -e "$newpass\n$newpass\n"|passwd aurbuilder
2015-10-13 13:52:44 -06:00
newpass=""
2018-08-01 11:50:35 -06:00
mkdir /tmp/aurbuilder 1&>/dev/null
chmod 777 /tmp/aurbuilder
2018-07-22 09:25:41 -06:00
else
2018-07-22 10:39:19 -06:00
mkdir /tmp/aurbuilder 1&>/dev/null
2018-07-22 10:48:37 -06:00
chmod 777 /tmp/aurbuilder
2018-07-22 10:49:50 -06:00
usermod -d /tmp/aurbuilder aurbuilder
2015-10-13 13:52:44 -06:00
fi
if [ ! -f /etc/sudoers.d/aurbuilder ]; then
2015-10-13 13:48:25 -06:00
echo "aurbuilder ALL=(ALL) NOPASSWD: ALL" > /etc/sudoers.d/aurbuilder
echo "root ALL=(aurbuilder) NOPASSWD: ALL" >> /etc/sudoers.d/aurbuilder
2015-08-20 14:37:06 -06:00
fi
2018-07-22 09:25:41 -06:00
}
checkpackagequerydependencies(){
2018-06-04 17:11:59 -06:00
if [ ! -f /usr/bin/package-query ]; then
2018-07-22 09:25:41 -06:00
cd /tmp/aurbuilder
sudo -u aurbuilder git clone https://aur.archlinux.org/package-query.git
cd package-query
sudo -u aurbuilder makepkg -si
2018-06-04 17:11:59 -06:00
fi
2015-08-20 14:37:06 -06:00
}
checkarchlinuxfrrepo(){
if [ ! $(cat /etc/pacman.conf | grep "archlinuxfr") ]; then
echo "[archlinuxfr]" >> /etc/pacman.conf
echo "SigLevel = Never" >> /etc/pacman.conf
echo 'Server = http://repo.archlinux.fr/$arch' >> /etc/pacman.conf
pacman -Syy
fi
}
2015-08-31 18:49:08 -06:00
clear
2015-08-20 14:37:06 -06:00
case $sel in
'Upgrade') pacman -Syu;;
2018-07-22 09:25:41 -06:00
'Upgrade with trizen')
2015-10-13 13:53:20 -06:00
checkaurdependencies
2018-07-22 09:25:41 -06:00
sudo -u aurbuilder trizen -Syu
2015-10-13 13:53:20 -06:00
;;
2018-07-22 10:30:02 -06:00
'Upgrade with aurman')
checkaurdependencies
sudo -u aurbuilder aurman -Syu
;;
'Upgrade with yay')
checkaurdependencies
sudo -u aurbuilder yay -Syu
;;
2018-07-22 09:25:41 -06:00
'Upgrade with yaourt')
2015-10-13 13:53:20 -06:00
checkaurdependencies
2018-07-22 09:25:41 -06:00
sudo -u aurbuilder yaourt -Syua
2015-10-13 13:53:20 -06:00
;;
2016-01-11 12:14:42 -07:00
'Clean orphan') pacman -Rns $(pacman -Qqtd);;
'Clean cache') pacman -Sc;;
2015-08-20 14:37:06 -06:00
'Edit pacman.conf') nano /etc/pacman.conf;;
'Edit mirrorlist') nano /etc/pacman.d/mirrorlist;;
2017-09-08 13:21:08 -06:00
'Update keyring') pacman -S archlinux-keyring;;
2016-05-14 08:33:14 -06:00
'Refresh pacman keys') pacman-key --refresh-keys;;
2018-09-15 15:27:02 -06:00
'Add GPG key')
gpgservers=()
gpgservers+=("pool.sks-keyservers.net" "")
gpgservers+=("Other" "")
sel=$(whiptail --backtitle "$apptitle" --title "Add GPG key" --menu "GPG key server" 0 0 0 "${gpgservers[@]}" 3>&1 1>&2 2>&3)
if [ "$?" = "0" ]; then
case $sel in
"Other")
gpgserver=$(whiptail --backtitle "$apptitle" --title "Add GPG key" --inputbox "Enter the GPG key server :" 0 0 "" 3>&1 1>&2 2>&3)
if [ "$?" = "0" ]; then
gpgkey=$(whiptail --backtitle "$apptitle" --title "Add GPG key" --inputbox "Enter the GPG key :" 0 0 3>&1 1>&2 2>&3)
if [ "$?" = "0" ]; then
echo "sudo -u aurbuilder gpg --keyserver "$gpgserver" --recv-keys "$gpgkey
sudo -u aurbuilder gpg --keyserver $gpgserver --recv-keys $gpgkey
pressanykey
fi
fi
;;
*)
gpgserver=$sel
gpgkey=$(whiptail --backtitle "$apptitle" --title "Add GPG key" --inputbox "Enter the GPG key :" 0 0 3>&1 1>&2 2>&3)
if [ "$?" = "0" ]; then
echo "sudo -u aurbuilder gpg --keyserver "$gpgserver" --recv-keys "$gpgkey
sudo -u aurbuilder gpg --keyserver $gpgserver --recv-keys $gpgkey
pressanykey
fi
;;
esac
fi
;;
2015-12-18 14:42:21 -07:00
'Remove db.lck') rm /var/lib/pacman/db.lck;;
2015-12-19 11:57:14 -07:00
'Install downgrade')
2018-07-22 09:25:41 -06:00
instpkg "" "downgrade"
2015-12-19 11:57:14 -07:00
;;
2018-07-22 09:25:41 -06:00
'Install trizen')
2018-07-22 10:30:02 -06:00
if(confirm "Trizen allow you to access the AUR applications.\nBecause is not possible to compile applications as root,\nthis installer create an aurbuilder user.\n\nInstall trizen ?") then
2015-08-31 19:26:21 -06:00
clear
2015-08-20 14:37:06 -06:00
checkaurdependencies
2018-07-22 09:25:41 -06:00
cd /tmp/aurbuilder
sudo -u aurbuilder git clone https://aur.archlinux.org/trizen.git
cd trizen
sudo -u aurbuilder makepkg -si
2015-08-20 14:37:06 -06:00
fi
;;
2018-07-22 10:30:02 -06:00
'Install aurman')
if(confirm "Aurman allow you to access the AUR applications.\nBecause is not possible to compile applications as root,\nthis installer create an aurbuilder user.\n\nInstall aurman ?") then
clear
checkaurdependencies
cd /tmp/aurbuilder
sudo -u aurbuilder git clone https://aur.archlinux.org/aurman.git
cd aurman
sudo -u aurbuilder gpg --recv-key 465022E743D71E39
sudo -u aurbuilder makepkg -si
#sudo -u aurbuilder makepkg -si --skippgpcheck
fi
;;
'Install yay')
if(confirm "Yay allow you to access the AUR applications.\nBecause is not possible to compile applications as root,\nthis installer create an aurbuilder user.\n\nInstall yay ?") then
clear
checkaurdependencies
cd /tmp/aurbuilder
sudo -u aurbuilder git clone https://aur.archlinux.org/yay.git
cd yay
sudo -u aurbuilder makepkg -si
fi
;;
2018-07-22 09:25:41 -06:00
'Install yaourt')
if(confirm "Yaourt allow you to access the AUR applications.\nBecause is not possible to compile applications as root,\nthis installer create an aurbuilder user.\n\nInstall yaourt ?") then
2015-08-31 19:26:21 -06:00
clear
2015-08-20 14:37:06 -06:00
checkaurdependencies
2018-07-22 09:25:41 -06:00
checkpackagequerydependencies
cd /tmp/aurbuilder
sudo -u aurbuilder git clone https://aur.archlinux.org/yaourt.git
cd yaourt
sudo -u aurbuilder makepkg -si
2015-08-20 14:37:06 -06:00
fi
;;
2017-02-03 11:37:56 -07:00
'Install pkgstats')
2018-07-22 09:25:41 -06:00
pacman -S --needed pkgstats
2017-02-03 11:37:56 -07:00
;;
'Install aurvote')
2018-07-22 09:25:41 -06:00
pacman -S --needed aurvote
2017-02-03 11:37:56 -07:00
;;
2015-08-20 14:37:06 -06:00
esac
exit 0