-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathpkgsearch
More file actions
executable file
·161 lines (142 loc) · 3.88 KB
/
Copy pathpkgsearch
File metadata and controls
executable file
·161 lines (142 loc) · 3.88 KB
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
#!/usr/bin/env bash
declare -r esc=$'\033'
declare -r c_reset="${esc}[0m"
declare -r c_red="${esc}[31m"
declare -r c_green="${esc}[32m"
declare -r c_blue="${esc}[34m"
declare distro
declare preview_pos='right:hidden'
usage() {
LESS=-FEXR less <<HELP
pkgsearch [options] [query]
lists and installs packages from your distro's repositories
without any arguments pkgsearch will list all available packages from your cache
note: on Arch Linux you must pass a string to query the AUR
HELP
}
err() {
printf "${c_red}%s${c_reset}\n" "$*" >&2
}
die() {
exit 1
}
has() {
local verbose=0
if [[ $1 = '-v' ]]; then
verbose=1
shift
fi
for c; do c="${c%% *}"
if ! command -v "$c" &> /dev/null; then
(( "$verbose" > 0 )) && err "$c not found"
return 1
fi
done
}
select_from() {
local cmd='command -v'
for a; do
case "$a" in
-c)
cmd="$2"
shift 2
;;
esac
done
for c; do
if $cmd "${c%% *}" &> /dev/null; then
echo "$c"
return 0
fi
done
return 1
}
fzf() {
command fzf -e +s --multi --cycle --ansi \
--bind='Ctrl-X:toggle-preview' \
--no-hscroll --inline-info \
--header='tab to select multiple packages, Ctrl-X for more info on a package' "$@"
}
install() {
local pkgs count
mapfile -t pkgs
(( ${#pkgs} > 0 )) || exit
count="${#pkgs[@]} package"
(( ${#pkgs[@]} > 1 )) && count+='s'
printf "installing %s: %s\n" "$count" "${pkgs[*]}"
$1 "${pkgs[@]}" < /dev/tty
}
debian() {
fzf --preview='apt-cache show {1}' \
--query="$1" \
< <(apt-cache search '.*' | sort |
sed -u -r "s|^([^ ]+)|${c_green}\1${c_reset}|") |
cut -d' ' -f1 |
install "sudo $(select_from 'apt' 'aptitude' 'apt-get') install"
}
arch() {
local search packages
search='pacman'
[[ -n "$1" ]] && search=$(select_from 'yay' 'pacaur' 'trizen' 'yaourt' 'packer' 'apacman' 'pacman')
packages=$(fzf --preview="$search -Si {2}" \
< <( $search -Ss "$1" |
gawk '{
getline descr;
sub(/ */,"", descr);
repo = blue "[" gensub(/\/.*/, "", 1) "]" reset;
name = green gensub(/.*\//, "", 1, $1) reset;
info = gensub(/[^ ]* /, "", 1);
print repo, name, info, descr;
}' blue="$c_blue" green="$c_green" reset="$c_reset"
) | cut -d' ' -f2)
[[ "$search" = "pacman" ]] && search="sudo pacman"
install "$search -S" <<< "$packages"
}
void() {
local package_list packagename='{ sub(/-[^\-]*$/, "", $2); print $2 }'
package_list=$(xbps-query -Rs '' | sort)
fzf --preview="p=\$(awk \"$packagename\" <<< {}); xbps-query -Rx \$p" \
--query="$1" <<< "$package_list" |
awk "$packagename" |
install 'xbps-install -S'
}
fedora() {
fzf --query="$*" --preview='p={}; p="${p%% *}"; dnf -q info "${p%.*}"' \
< <(dnf -qC repoquery --qf "${c_green}%{name} ${c_reset} - %{summary}" \*) |
awk '{ package=$1; sub(/\.\S+/, "", package); print package }' |
install 'sudo dnf install'
}
while true; do
case "$1" in
-h|--help) usage; exit ;;
-p|--preview) preview_pos="$2"; shift 2 ;;
*) break
esac
done
has -v fzf gawk || die
request="$*"
if [[ -r /etc/os-release ]]; then
# Attempt to get ID_LIKE from os-release to capture the "flavor" of the distro
# If ID_LIKE is not available, defer to ID
# If ID is not available, defer to NAME
distro=$(awk -F= '
$1=="ID_LIKE" { gsub(/"/,"",$2); idlike=$2 }
$1=="ID" { gsub(/"/,"",$2); id=$2 }
$1=="NAME" { gsub(/"/,"",$2); name=$2 }
END {
if (idlike) print tolower(idlike)
else if (id) print tolower(id)
else if (name) print tolower(name)
}
' /etc/os-release)
distro="${distro%% *}"
fi
case "$distro" in
debian|ubuntu) debian "$request" ;;
arch) arch "$request" ;;
void) void "$request" ;;
fedora) fedora "$request" ;;
*) die 'unknown distro :(' ;;
esac
# TODO: homebrew: brew desc -s
# sample output: https://pastebin.com/raw/3frRf6C7