summaryrefslogtreecommitdiffstats
path: root/scripts/libmakepkg/lint_pkgbuild/install.sh.in
diff options
context:
space:
mode:
authorEli Schwartz <eschwartz@archlinux.org>2020-01-16 18:27:34 +0100
committerAllan McRae <allan@archlinux.org>2020-01-27 08:53:50 +0100
commitd626a17ef94d79975ff17d04250152ea46aaade3 (patch)
treeba9da4c04b40c86aa1655f4c5bfe045b3bbc53f7 /scripts/libmakepkg/lint_pkgbuild/install.sh.in
parent2856a7dea3c0d4584e126b5ca5957e13e23f83d1 (diff)
downloadpacman-d626a17ef94d79975ff17d04250152ea46aaade3.tar.gz
pacman-d626a17ef94d79975ff17d04250152ea46aaade3.tar.xz
makepkg: make per-package files containing '$pkgname' consistently work
Extracting function variables containing arbitrarily scoped variables of arbitrary nature is a disaster, but let's at least cover the common case of using the actual '$pkgname' in an install/changelog file. It's the odd case of actually being basically justified use of disambiguating between the same variable used in multiple different split packages... and also, --printsrcinfo already uses and overwrites the variable 'pkgname' in pkgbuild_extract_to_srcinfo, so this "works" in .SRCINFO but doesn't work in .src.tar.gz It doesn't work in lint_pkgbuild either, but in that case the problem is being too permissive, not too restrictive -- we might end up checking the same file twice, and printing that it is missing twice. Fixes FS#64932 Signed-off-by: Eli Schwartz <eschwartz@archlinux.org> Signed-off-by: Allan McRae <allan@archlinux.org>
Diffstat (limited to 'scripts/libmakepkg/lint_pkgbuild/install.sh.in')
-rw-r--r--scripts/libmakepkg/lint_pkgbuild/install.sh.in10
1 files changed, 7 insertions, 3 deletions
diff --git a/scripts/libmakepkg/lint_pkgbuild/install.sh.in b/scripts/libmakepkg/lint_pkgbuild/install.sh.in
index 95076692..1bf5681d 100644
--- a/scripts/libmakepkg/lint_pkgbuild/install.sh.in
+++ b/scripts/libmakepkg/lint_pkgbuild/install.sh.in
@@ -32,11 +32,15 @@ lint_pkgbuild_functions+=('lint_install')
lint_install() {
- local list file name install_list ret=0
+ local list file install_list ret=0
install_list=("${install[@]}")
- for name in "${pkgname[@]}"; do
- extract_function_variable "package_$name" install 0 file
+ # set pkgname the same way we do for running package(), this way we get
+ # the right value in extract_function_variable
+ local pkgname_backup=(${pkgname[@]})
+ local pkgname
+ for pkgname in "${pkgname_backup[@]}"; do
+ extract_function_variable "package_$pkgname" install 0 file
install_list+=("$file")
done