various fixes
[distro-setup] / pkgs
1 #!/bin/bash
2 # meant to be sourced
3 #
4 # packages with the same name across distros.
5
6 p1=(
7 bind9-host
8 cryptsetup
9 lvm2
10 mbuffer
11 moreutils
12 screen
13 )
14 p2=(
15 bash-completion
16 curl
17 eatmydata
18 etckeeper
19 ethtool
20 fping
21 git
22 haveged
23 htop
24 iptables
25 mailutils
26 nano
27 nmon
28 needrestart
29 ntp
30 rdiff-backup
31 ruby
32 ruby-rest-client
33 traceroute
34 tree
35 uptimed
36 vim
37 wcd
38 wget
39 )
40
41 # swh-plugins is for karaoke pulsaudio filter.
42 # mutagen for pithos
43 # guvcview set webcam brightness to highest
44 # pidgin-otr, i went into pidgin pluggin settings and generated a key for some accounts
45 # xawtv has webcam cli control. v4lctl bright 80%; v4lctl list
46 # guvcview also adjusts webcam
47 # pv is used by btrbk
48 # libterm-readkey-perl for rt cli tool
49 # fonts pkgs are an attempt to get less block characters
50 # gnat-5 & ccache is for coreboot
51 # gnat-5 doesnt exist in nabia, might not even be needed for coreboot anymore so removed it
52 # python3-dnspython is needed by some ansible module
53
54 # python3-autopep8 is nice, etiona only has python2 version, not bothering
55 # to setup a conditional or pin to nabia.
56
57 # metastore is for /p/c commit hook to store user/perms
58
59
60 p3=(
61 at
62 adb
63 ansible
64 apache2
65 apache2-doc
66 apg
67 apt-doc
68 apt-listchanges
69 apt-rdepends
70 apt-show-versions
71 aptitude-doc-en
72 arandr
73 # dictionary / thesaurus
74 artha
75 asciidoc
76 backupninja
77 bash-doc
78 beets
79 beets-doc
80 binutils-doc
81 bind9-doc
82 bind9utils
83 # for system76 laptop with i3 keybind.
84 brightnessctl
85 build-essential
86 bwm-ng
87 ccache
88 cloc
89 # pretty complex config. i just setup to ignore my password managerf
90 # according to the docs, and C-M-v to open the main window
91 copyq
92 cpulimit
93 cron
94 cvs
95 debian-archive-keyring
96 debug-me
97 debootstrap
98 debconf-doc
99 devscripts
100 dillo
101 dirmngr
102 dnsutils
103 python3-dnspython
104 duplicity
105 elinks
106 evince
107 exim4-doc-html
108 exfat-fuse
109 exfat-utils
110 expect
111 # for ftp upload dejagnu test
112 libdate-manip-perl libemail-messageid-perl
113 fakeroot
114 fail2ban
115 fdupes
116 feh
117 filelight
118 firejail
119 flashrom
120 fonts-noto
121 fonts-roboto
122 fonts-thai-tlwg
123 fonts-thai-tlwg-otf
124 xfonts-intl-asian
125 fonts-sil-lateef
126 gajim
127 gawk-doc
128 # gcc suggests
129 make manpages-dev autoconf automake libtool flex bison
130 gcc-doc
131 gdb
132 gdb-doc
133 geoip-bin
134 geoip-database
135 gimp
136 git-doc
137 git-email
138 git-svn
139 gitk
140 glibc-doc
141 goaccess
142 gnome-screenshot
143 grepmail
144 guvcview
145 # for my / office hp printers
146 hplip
147 hunspell
148 i3lock
149 i3status
150 iftop
151 iotop
152 info
153 inotify-tools
154 ipcalc
155 iputils-tracepath
156 iperf3
157 iproute2-doc
158 irqbalance
159 jq
160 kid3-qt
161 kid3-cli
162 konsole
163 knot-dnsutils
164 libterm-readkey-perl
165 libreoffice
166 linphone
167 linux-doc
168 lshw
169 make-doc
170 manpages
171 manpages-dev
172 markdown
173 mb2md
174 mdadm
175 meld
176 memtester
177 metastore
178 mhonarc
179 mmdebstrap
180 mps-youtube
181 mpv
182 mumble
183 mupdf
184 nagstamon
185 namazu2
186 ncdu
187 # gnupload dependency
188 ncftp
189 nginx-doc
190 nmap
191 nyancat
192 obs-studio
193 offlineimap
194 oathtool
195 opendkim-tools
196 p7zip-full
197 paprefs
198 parted-doc
199 pass
200 pavucontrol
201 pdfgrep
202 perl-doc
203 pianobar
204 pinentry-tty
205 pinentry-gtk2
206 pidgin
207 pidgin-otr
208 pixz
209 pry
210 pv
211 python3-doc
212 qemu-user-static
213 qrencode
214 readline-doc
215 rename
216 reportbug
217 rfkill
218 rng-tools
219 rygel
220 sakura
221 schroot
222 shellcheck
223 # for sig2dot
224 signing-party
225 sipcalc
226 socat
227 # add-apt-repository
228 software-properties-common
229 speex
230 sox
231 sqlite3-doc
232 squashfs-tools
233 strace
234 subversion
235 swaks
236 swh-plugins
237 tar-doc
238 tcpdump
239 telnet
240 tmate
241 transmission-remote-gtk
242 trash-cli
243 tty-clock
244 vlc
245 wamerican-huge
246 wireless-tools
247 w3m
248 whois
249 wondershaper
250 xawtv
251 xbacklight
252 xdot
253 xloadimage
254 xprintidle
255 xscreensaver
256 xscreensaver-data-extra
257 xscreensaver-gl
258 xscreensaver-gl-extra
259 global
260 python3-pygments
261 )
262
263 # shellcheck disable=SC2034
264 pall=(${p1[@]} ${p2[@]} ${p3[@]} )