X-Git-Url: https://iankelling.org/git/?p=distro-functions;a=blobdiff_plain;f=src%2Fpackage-manager-abstractions;h=f66a7620b2292f6c402bcf7127ee28b17057db83;hp=a92d80d71080df13e11c64b82865f692f231fdd3;hb=9d5a995ec93be0811b799d2e88c53f7f662d6d3b;hpb=b3f12bb11f16b2bdf52e0d85f000e04b59ba9f1f diff --git a/src/package-manager-abstractions b/src/package-manager-abstractions index a92d80d..f66a762 100644 --- a/src/package-manager-abstractions +++ b/src/package-manager-abstractions @@ -14,80 +14,207 @@ # limitations under the License. # basic yum/apt package manager abstraction, plus a few minor conveniences -if type -p yum > /dev/null; then - # package manager - p() { - local x - [[ $EUID == 0 ]] && x=sudo - $x yum "$@" - } - # package install - pi() { - local x - [[ $EUID == 0 ]] && x=sudo - $x yum -y install "$@" - } - # package find - pf() { - local x - [[ $EUID == 0 ]] && x=sudo - $x yum search "$@" - } - # package remove/uninstall - pu() { - local x - [[ $EUID == 0 ]] && x=sudo - $x yum autoremove "$@" - } - pup() { # upgrade - local x - [[ $EUID == 0 ]] && x=sudo - $x yum -y distro-sync full - } - # package list info - pl() { - yum info "$@" - } - -else - p() { - local x - [[ $EUID == 0 ]] && x=sudo - $x aptitude "$@" - } - pi() { - local x - [[ $EUID == 0 ]] && x=sudo - # update package list if its more than an hour old - if (( $(( $(date +%s) - $(stat -c %Y /var/lib/apt/periodic/update-success-stamp) )) > 60*60 )); then - $x aptitude update - fi - $x aptitude -y install "$@" - } - pf() { - # scratch a very annoying itch. - # package description width as wide as the screen, and package name field small - # aptitude manual can't figure out how wide emacs terminal is, - # of course it doesn't consult the $COLUMNS variable... - # and in a normal terminal, it makes the package name field ridiculously big - # also, remove that useless dash before the description - local x - [[ $EUID == 0 ]] && x=sudo - $x aptitude -F "%c%a%M %p %$((COLUMNS - 30))d" -w $COLUMNS search "$@" - } - pu() { - local x - [[ $EUID == 0 ]] && x=sudo - $x aptitude -y purge "$@" - } - pup() { # upgrade - local x - [[ $EUID == 0 ]] && x=sudo - $x aptitude -y full-upgrade "$@" - } - # package info - pl() { - aptitude show "$@" - } - +if command -v yum &> /dev/null; then + # package manager + p() { + local s; [[ $EUID != 0 ]] && s=sudo + $s yum "$@" + } + # package install + pi() { + local s; [[ $EUID != 0 ]] && s=sudo + $s yum -y install "$@" + } + # package find + pf() { + local s; [[ $EUID != 0 ]] && s=sudo + $s yum search "$@" + } + # package remove/uninstall + pu() { + local s; [[ $EUID != 0 ]] && s=sudo + $s yum autoremove "$@" + } + pup() { # upgrade + local s; [[ $EUID != 0 ]] && s=sudo + $s yum -y distro-sync full "$@" + } + # package list info + pl() { + yum info "$@" + } + pfile() { + yum whatprovides \*/$1 + } + +elif command -v apt-get &>/dev/null; then + pp() { # package policy + apt-cache policy $@ + } + p() { + local s; [[ $EUID != 0 ]] && s=sudo + case $1 in + install) + $s apt-get --purge --auto-remove "$@" + ;; + *) + $s apt-get "$@" + ;; + esac + } + pupdate() { + local s f; [[ $EUID != 0 ]] && s=sudo + # update package list if its more than an 2 hours old + f=/var/cache/apt/pkgcache.bin + if [[ ! -r $f ]] \ + || (( $(( $(date +%s) - $(stat -c %Y $f ) )) > 60*60*2 )); then + $s apt-get update + fi + } + pi() { + if dpkg -s -- "$@" &>/dev/null; then + return 0 + fi + while fuser /var/lib/dpkg/lock &>/dev/null; do sleep 1; done + pupdate + local s; [[ $EUID != 0 ]] && s=sudo + $s $PI_PREFIX apt-get -y --allow-downgrades install --purge --auto-remove "$@" + } + + pi-nostart() { + if dpkg -s -- "$@" &>/dev/null; then + return 0 + fi + while fuser /var/lib/dpkg/lock &>/dev/null; do sleep 1; done + pupdate + local s; [[ $EUID != 0 ]] && s=sudo + local f=/usr/sbin/policy-rc.d + $s dd of=$f </dev/null; do sleep 1; done + $s apt-get -y remove --allow-downgrades --purge --auto-remove "$@" + # seems slightly redundant, but it removes more stuff sometimes. + $s apt-get -y --allow-downgrades autoremove + } + pup() { # upgrade + while fuser /var/lib/dpkg/lock &>/dev/null; do sleep 1; done + pupdate + local s; [[ $EUID != 0 ]] && s=sudo + $s apt-get -y dist-upgrade --allow-downgrades --purge --auto-remove "$@" + $s apt-get -y autoremove --allow-downgrades + } + # package info + pl() { + if type -p aptitude &>/dev/null; then + aptitude show "$@" + else + apt-cache show "$@" + fi + } + pfile() { + local file=$1 + # ucfq can tell us about config files which are not tracked + # with apt-file. but, for at least a few files I tested + # which are tracked with apt-file, ucfq doesn't show their + # package name. So, commenting this, waiting to find + # a config file only tracked by ucfq to see if it gives the + # package name and if I can identify this kind of file. + # if [[ $file == /* ]] && ! ucfq -w $file | grep ::: &>/dev/null; then + # ucfq $file + + if [[ $file == */* ]]; then + apt-file find -x "$file"\$ + else + apt-file find -x /"$file"\$ + update-alternatives --list "$file" 2>/dev/null + fi + } + pkgfiles() { + if dpkg -s "$1" &>/dev/null; then + dpkg-query -L $1 + else + apt-file -x list "^$1$" + fi + } + +elif command -v pacman &>/dev/null; then + p() { + pacaur "$@" + } + pi() { + pacaur -S --noconfirm --needed --noedit "$@" + } + pf() { + pacaur -Ss "$@" + } + pu() { + pacaur -Rs --noconfirm "$@" + if p=$(pacaur -Qdtq); then + pacaur -Rs $p + fi + } + aurex() { + p="$1" + aur='https://aur.archlinux.org' + curl -s $aur/$(curl -s "$aur/rpc.php?type=info&arg=$p" \ + | jq -r .results.URLPath) | tar xz + cd "$p" + + } + pmirror() { + local s; [[ $EUID != 0 ]] && s=sudo + local x=$(mktemp) + curl -s "https://www.archlinux.org/mirrorlist/\ +?country=US&protocol=https&ip_version=4&ip_version=6&use_mirror_status=on" \ + | sed -r 's/^[ #]*(Server *=)/\1/' > $x + if (( $(stat -c %s $x ) > 10 )); then + $s cp $x /etc/pacman.d/mirrorlist + rm $x + fi + } + pup() { # upgrade + local s; [[ $EUID != 0 ]] && s=sudo + # file_time + 24 hours > current_time + if ! (( $(stat -c%Y /etc/pacman.d/mirrorlist) + 60*60*24 > $(date +%s) )) + then + pmirror + fi + pacaur -Syu --noconfirm "$@" + } + # package info + pl() { + pacaur -Si "$@" + } + pfile() { + pkgfile "$1" + } + pkgfiles() { + if pacaur -Qs "^$1$" &>/dev/null; then + pacman -Ql $1 + else + pkgfile -l $1 + fi + } fi