summaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
authorLuke Shumaker <LukeShu@sbcglobal.net>2013-06-05 20:00:57 -0600
committerLuke Shumaker <LukeShu@sbcglobal.net>2013-06-05 20:00:57 -0600
commit80401ac7e842df245c41fee340f32f7fcedd80f1 (patch)
tree3fc4844b728d8b564c17fcddba7803959178c8b2 /src/lib
parent4ae03b417dec34a237a2a36410800e5ed5042d7d (diff)
Phase out `load_conf_*` and `check_conf_*` functions
Replace their usages with `load_files *` and `check_vars *`
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/conf.sh36
1 files changed, 1 insertions, 35 deletions
diff --git a/src/lib/conf.sh b/src/lib/conf.sh
index 607f2b8..b9e8698 100644
--- a/src/lib/conf.sh
+++ b/src/lib/conf.sh
@@ -93,16 +93,12 @@ check_vars() {
# makepkg configuration ########################################################
-load_conf_makepkg() {
- load_files makepkg
-}
-
# Usage: get_conf_makepkg <var_name> <default_value>
get_conf_makepkg() (
set +euE
local setting=$1
local default=$2
- load_conf_makepkg
+ load_files makepkg
printf '%s\n' "${!setting:-${default}}"
)
@@ -118,33 +114,3 @@ set_conf_makepkg() {
done
return 1
}
-
-# libretools configuration #####################################################
-
-check_conf_libretools() {
- check_vars libretools \
- PARABOLAHOST LIBREDESTDIR BLACKLIST WORKDIR REPOS ARCHES \
- ABSLIBREGIT DIFFTOOL FULLBUILDCMD SIGEXT SIGID
-}
-
-load_conf_libretools() {
- load_files libretools
- check_conf_libretools
-}
-
-load_conf_libretools_chroot() {
- load_files chroot
- # Exclude CHROOTEXTRAPKG from the checks because an empty value is valid
- if [[ -f /.arch-chroot ]]; then
- # inside of a chroot, only CHROOTEXTRAPKG needs to be set, but
- # as stated above, we don't check for it.
- :
- else
- check_vars chroot CHROOTDIR CHROOT
- fi
-}
-
-load_conf_libretools_librefetch() {
- load_files librefetch
- check_vars librefetch MIRROR DOWNLOADER
-}