summaryrefslogtreecommitdiff
path: root/src/librefetch/librefetch-install
blob: acf6adc32941c21b83eb7b198dd9a690bd88bbc5 (plain)
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
#!/usr/bin/env bash
#
# lirefetch-install: uninstall librefetch from /etc/makepkg.conf
#
# Copyright (C) 2013-2015, 2017 Luke Shumaker <lukeshu@parabola.nu>
# Copyright (C) 2020 bill-auger <bill-auger@programmer.net>
#
# License: GNU GPLv3+
#
# This file is part of Parabola.
#
# Parabola 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.
#
# Parabola 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 Parabola. If not, see <http://www.gnu.org/licenses/>.
#
#
# NOTE: primarily, this is called by the libretools.install hooks
#
# NOTE: this script originally accepted an 'install' option to munge makepkg.conf in place
#         by the libretools.install hooks
#       that behavior was replaced by the runtime script: /etc/makepkg.d/librefetch.conf
#         (source: libretools::src/librefetch/makepkg-librefetch.conf.in),
#         which must be sourced by makepkg.conf in order to enable mksource() handling
#         (see `man librefetch`)
#
#       note that this is not the 'librefetch.conf' sourced by librefetch and librestage
#         (see `man 5 librefetch.conf`)
#       that one is: /etc/libretools.d/librefetch.conf
#         (source: libretools::src/librefetch/librefetch.conf)
#       TODO: one of those should be renamed, to avoid the name collision/confusion



set -ueE

source "$(librelib messages)"


# These lines were installed by previous versions of this script
old_code=(
	'# The following line is added by the libretools post_install script'
	'[[ ! -x /usr/bin/librefetch ]] || DLAGENTS+=("libre::/usr/bin/librefetch -p \"\$BUILDFILE\" %u %o")'
	'[[ ! -x /usr/bin/librefetch ]] || DLAGENTS+=({https,libre}"::/usr/bin/librefetch -p \"\$BUILDFILE\" -- %u %o")'
	'DLAGENTS+=({https,libre}"::/usr/bin/librefetch -p $(printf "%q" "$BUILDFILE") -- %u %o")'
	'DLAGENTS+=({https,libre}'\''::/usr/bin/librefetch -p "$BUILDFILE" -- %u %o'\'')'
	'. /etc/libretools.d/librefetch-makepkg.conf # This line was added by librefetch-install'
)

# del_line $file $line
del_line() {
	local file=$1
	local line=$2
	local lineno=($(grep -Fxn -- "$line" "$file" | cut -d: -f1))
	if [[ "${#lineno[@]}" -gt 0 ]]; then
		sed -i "$(printf '%dd;' "${lineno[@]}")" "$file"
	fi
}

# pre_remove $file
pre_remove() {
	local file=$1
	print ":: %s: removing librefetch from %q" "${0##*/}" "$(realpath -s "$file")"

	sed -ri 's/^#(.*) # commented out by the libretools post_install script/\1/' "$file"
	local line
	for line in "${old_code[@]}"; do
		del_line "$file" "$line"
	done
}

usage() {
	print "Usage: %s remove MAKEPKG_CONF_FILE" "${0##*/}"
	print "Removes librefetch to/from makepkg.conf:DLAGENTS"
}

main() {
	if [[ $# != 2 ]]; then
		usage >&2
		return 1
	fi
	local file=$2
	if [[ ! -f "$file" ]]; then
		error "%s: does not exist: %q" "${0##*/}" "$(realpath -s "$file")"
	fi
	if [[ ! -w "$file" ]]; then
		error "%s: cannot write to file: %q" "${0##*/}" "$(realpath -s "$file")"
	fi
	case "$1" in
		remove) pre_remove "$file";;
		*) usage >&2; return 1;;
	esac
}

main "$@"