mirror of
https://gitlab.archlinux.org/archlinux/devtools.git
synced 2025-09-15 19:06:19 +02:00
Compare commits
2 Commits
mr-origin-
...
a0ab546bd7
Author | SHA1 | Date | |
---|---|---|---|
![]() |
a0ab546bd7 | ||
![]() |
0712c4fe2e |
@@ -15,8 +15,8 @@ check_root() {
|
|||||||
local orig_argv=("$@")
|
local orig_argv=("$@")
|
||||||
|
|
||||||
(( EUID == 0 )) && return
|
(( EUID == 0 )) && return
|
||||||
if type -P sudo >/dev/null; then
|
if type -P run0 && type -P pkexec >/dev/null; then
|
||||||
exec sudo --preserve-env="${keepenv}" -- "${orig_argv[@]}"
|
exec run0 -- "${orig_argv[@]}"
|
||||||
else
|
else
|
||||||
exec su root -c "$(printf ' %q' "${orig_argv[@]}")"
|
exec su root -c "$(printf ' %q' "${orig_argv[@]}")"
|
||||||
fi
|
fi
|
||||||
|
@@ -94,19 +94,19 @@ pkgctl_license_check() {
|
|||||||
pushd "${path}" >/dev/null
|
pushd "${path}" >/dev/null
|
||||||
|
|
||||||
if [[ ! -f PKGBUILD ]]; then
|
if [[ ! -f PKGBUILD ]]; then
|
||||||
msg_error "${BOLD}${path}:${ALL_OFF} no PKGBUILD found"
|
msg_error "${BOLD}${pkgbase}:${ALL_OFF} no PKGBUILD found"
|
||||||
return 1
|
return 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ ! -f .SRCINFO ]]; then
|
# reset common PKGBUILD variables
|
||||||
msg_error "${BOLD}${path}:${ALL_OFF} no .SRCINFO found"
|
unset pkgbase
|
||||||
return 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
if ! pkgbase=$(grep --max-count=1 --extended-regexp "pkgbase = (.+)" .SRCINFO | awk '{print $3}'); then
|
# shellcheck source=contrib/makepkg/PKGBUILD.proto
|
||||||
msg_error "${BOLD}${path}:${ALL_OFF} pkgbase not found in .SRCINFO"
|
if ! . ./PKGBUILD; then
|
||||||
|
msg_error "${BOLD}${pkgbase}:${ALL_OFF} failed to source PKGBUILD"
|
||||||
return 1
|
return 1
|
||||||
fi
|
fi
|
||||||
|
pkgbase=${pkgbase:-$pkgname}
|
||||||
|
|
||||||
if [[ ! -e LICENSE ]]; then
|
if [[ ! -e LICENSE ]]; then
|
||||||
msg_error "${BOLD}${pkgbase}:${ALL_OFF} is missing the LICENSE file"
|
msg_error "${BOLD}${pkgbase}:${ALL_OFF} is missing the LICENSE file"
|
||||||
|
Reference in New Issue
Block a user