-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlist_nonfree_packages
executable file
·108 lines (87 loc) · 3.35 KB
/
list_nonfree_packages
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
#!/usr/bin/env bash
#
# Description: Lists installed nonfree packages on Arch Linux systems.
# Uses the Parabola GNU/Linux-libre blacklist.
#
# Homepage: https://github.com/krathalan/miscellaneous-scripts
#
# Copyright (C) 2019-2024 Hunter Peavey
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU 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 General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
# -----------------------------------------
# -------------- Guidelines ---------------
# -----------------------------------------
# This script follows the Google Shell Style Guide:
# https://google.github.io/styleguide/shell.xml
# This script uses shellcheck: https://www.shellcheck.net/
# See https://vaneyckt.io/posts/safer_bash_scripts_with_set_euxo_pipefail/
set -Eeuo pipefail
# Clean up if script is interrupted early
trap "kill 0" SIGINT
trap "clean_up" EXIT
# -----------------------------------------
# ----------- Program variables -----------
# -----------------------------------------
# Colors
RED=$(tput bold && tput setaf 1)
NC=$(tput sgr0) # No color/turn off all tput attributes
# Other
readonly BLACKLIST_URL="https://git.parabola.nu/blacklist.git/plain/blacklist.txt"
readonly SCRIPT_NAME="${0##*/}"
TMP_DIR="$(mktemp -d -t "${SCRIPT_NAME}_XXXXXXXX")"
readonly TMP_DIR RED NC
# -----------------------------------------
# --------------- Functions ---------------
# -----------------------------------------
clean_up()
{
rm -rf "${TMP_DIR}"
}
#######################################
# Prints passed error message before premature exit.
# Prints everything to >&2 (STDERR).
# Globals:
# RED, NC
# SCRIPT_NAME
# Arguments:
# $1: error message to print
# Returns:
# none
#######################################
exit_script_on_failure()
{
printf "%sError%s: %s\n" "${RED}" "${NC}" "$1" >&2
exit 1
}
# -----------------------------------------
# ---------------- Script -----------------
# -----------------------------------------
[[ "$(whoami)" == "root" ]] &&
exit_script_on_failure "This script should NOT be run as root (or sudo)!"
printf "Downloading blacklist...\n"
curl --silent -o "${TMP_DIR}/blacklist.txt" "${BLACKLIST_URL}"
printf "Done.\n\n"
printf "Nonfree packages:\n"
# Remove "branding" and "technical" reasons
grep -v "\[branding\]" "${TMP_DIR}/blacklist.txt" | grep -v "\[technical\]" > "${TMP_DIR}/blacklist_no_branding.txt"
# Get list of installed packages that belong to the filtered blacklist
printf "%s\n%s\n" "$(pacman -Qq)" "$(cut -d ':' -f1 "${TMP_DIR}/blacklist_no_branding.txt")" | sort | uniq -d > "${TMP_DIR}/nonfree_packages.txt"
mapfile -t nonfree_packages < "${TMP_DIR}/nonfree_packages.txt"
# List each installed nonfree package with reasoning
counter=0
for package in "${nonfree_packages[@]}"; do
counter=$(( counter + 1 ))
printf "%s%s.%s " "${RED}" "${counter}" "${NC}"
grep "^${package}:" "${TMP_DIR}/blacklist_no_branding.txt"
done