mirror of
https://gitlab.archlinux.org/archlinux/devtools.git
synced 2025-10-06 20:46:19 +02:00
Compare commits
6 Commits
939790367a
...
run0
Author | SHA1 | Date | |
---|---|---|---|
![]() |
2609e386d4 | ||
![]() |
447f7b4117 | ||
![]() |
3f0ebbc6d2 | ||
![]() |
fc56ebedf3 | ||
![]() |
01757e6904 | ||
![]() |
c5fe8ff3e6 |
@@ -150,6 +150,7 @@ _pkgctl_cmds=(
|
|||||||
db
|
db
|
||||||
diff
|
diff
|
||||||
issue
|
issue
|
||||||
|
license
|
||||||
release
|
release
|
||||||
repo
|
repo
|
||||||
search
|
search
|
||||||
|
@@ -14,7 +14,7 @@ Description
|
|||||||
|
|
||||||
Build a PKGBUILD on a remote server using makechrootpkg. Requires a remote user
|
Build a PKGBUILD on a remote server using makechrootpkg. Requires a remote user
|
||||||
that can run archbuild in a non-interactive manner, e.g. must be able to
|
that can run archbuild in a non-interactive manner, e.g. must be able to
|
||||||
elevate permissions using passwordless sudo.
|
elevate permissions using passwordless run0.
|
||||||
|
|
||||||
Options
|
Options
|
||||||
-------
|
-------
|
||||||
|
@@ -3,7 +3,7 @@ pkgctl-auth(1)
|
|||||||
|
|
||||||
Name
|
Name
|
||||||
----
|
----
|
||||||
pkgctl-auth - Authenticate with serivces like GitLab.
|
pkgctl-auth - Authenticate with services like GitLab.
|
||||||
|
|
||||||
Synopsis
|
Synopsis
|
||||||
--------
|
--------
|
||||||
|
@@ -155,7 +155,7 @@ if (( ${#needsversioning[*]} )); then
|
|||||||
if [[ ! -f "${file}" ]]; then
|
if [[ ! -f "${file}" ]]; then
|
||||||
continue
|
continue
|
||||||
fi
|
fi
|
||||||
if ! git ls-files --error-unmatch "$file"; then
|
if ! git ls-files --error-unmatch "$file" >/dev/null; then
|
||||||
die "%s is not under version control" "$file"
|
die "%s is not under version control" "$file"
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
@@ -15,7 +15,11 @@ 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 >/dev/null; then
|
||||||
|
keepenv=",$keepenv"
|
||||||
|
command="run0 ${keepenv//,/ --setenv=}"
|
||||||
|
exec ${command} -- "${orig_argv[@]}"
|
||||||
|
elif type -P sudo >/dev/null; then
|
||||||
exec sudo --preserve-env="${keepenv}" -- "${orig_argv[@]}"
|
exec sudo --preserve-env="${keepenv}" -- "${orig_argv[@]}"
|
||||||
else
|
else
|
||||||
exec su root -c "$(printf ' %q' "${orig_argv[@]}")"
|
exec su root -c "$(printf ' %q' "${orig_argv[@]}")"
|
||||||
|
@@ -8,8 +8,6 @@ DEVTOOLS_INCLUDE_DB_MOVE_SH=1
|
|||||||
_DEVTOOLS_LIBRARY_DIR=${_DEVTOOLS_LIBRARY_DIR:-@pkgdatadir@}
|
_DEVTOOLS_LIBRARY_DIR=${_DEVTOOLS_LIBRARY_DIR:-@pkgdatadir@}
|
||||||
# shellcheck source=src/lib/common.sh
|
# shellcheck source=src/lib/common.sh
|
||||||
source "${_DEVTOOLS_LIBRARY_DIR}"/lib/common.sh
|
source "${_DEVTOOLS_LIBRARY_DIR}"/lib/common.sh
|
||||||
# shellcheck source=src/lib/valid-repos.sh
|
|
||||||
source "${_DEVTOOLS_LIBRARY_DIR}"/lib/valid-repos.sh
|
|
||||||
|
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
@@ -22,7 +20,6 @@ pkgctl_db_move_usage() {
|
|||||||
Move packages between binary repositories.
|
Move packages between binary repositories.
|
||||||
|
|
||||||
OPTIONS
|
OPTIONS
|
||||||
--noconfirm Bypass any confirmation messages, should only be used with caution
|
|
||||||
-h, --help Show this help text
|
-h, --help Show this help text
|
||||||
|
|
||||||
EXAMPLES
|
EXAMPLES
|
||||||
@@ -32,12 +29,9 @@ _EOF_
|
|||||||
}
|
}
|
||||||
|
|
||||||
pkgctl_db_move() {
|
pkgctl_db_move() {
|
||||||
if (( $# < 3 )); then
|
local SOURCE_REPO=""
|
||||||
pkgctl_db_move_usage
|
local TARGET_REPO=""
|
||||||
exit 1
|
local PKGBASES=()
|
||||||
fi
|
|
||||||
|
|
||||||
local CONFIRM=1
|
|
||||||
|
|
||||||
# option checking
|
# option checking
|
||||||
while (( $# )); do
|
while (( $# )); do
|
||||||
@@ -46,10 +40,6 @@ pkgctl_db_move() {
|
|||||||
pkgctl_db_move_usage
|
pkgctl_db_move_usage
|
||||||
exit 0
|
exit 0
|
||||||
;;
|
;;
|
||||||
--noconfirm)
|
|
||||||
CONFIRM=0
|
|
||||||
shift
|
|
||||||
;;
|
|
||||||
-*)
|
-*)
|
||||||
die "invalid argument: %s" "$1"
|
die "invalid argument: %s" "$1"
|
||||||
;;
|
;;
|
||||||
@@ -59,35 +49,16 @@ pkgctl_db_move() {
|
|||||||
esac
|
esac
|
||||||
done
|
done
|
||||||
|
|
||||||
local source_repo=$1
|
if (( $# < 3 )); then
|
||||||
local target_repo=$2
|
pkgctl_db_move_usage
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
SOURCE_REPO=$1
|
||||||
|
TARGET_REPO=$2
|
||||||
shift 2
|
shift 2
|
||||||
|
PKGBASES+=("$@")
|
||||||
|
|
||||||
if ! in_array "${source_repo}" "${DEVTOOLS_VALID_REPOS[@]}"; then
|
# shellcheck disable=SC2029
|
||||||
die "Invalid source repository: %s" "${source_repo}"
|
ssh "${PACKAGING_REPO_RELEASE_HOST}" db-move "${SOURCE_REPO}" "${TARGET_REPO}" "${PKGBASES[@]}"
|
||||||
fi
|
|
||||||
if ! in_array "${target_repo}" "${DEVTOOLS_VALID_REPOS[@]}"; then
|
|
||||||
die "Invalid target repository: %s" "${target_repo}"
|
|
||||||
fi
|
|
||||||
|
|
||||||
if (( CONFIRM )); then
|
|
||||||
local pkglist
|
|
||||||
pkglist=$(printf '%s\n' "$@" | paste -sd ' ')
|
|
||||||
read -r -p "Move packages from [${source_repo}] to [${target_repo}]: ${pkglist}? [Y/n] " response
|
|
||||||
case ${response} in
|
|
||||||
[Yy][Ee][Ss]|[Yy]|'')
|
|
||||||
: # continue
|
|
||||||
;;
|
|
||||||
*)
|
|
||||||
exit 0
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
fi
|
|
||||||
|
|
||||||
local pkgbase
|
|
||||||
for pkgbase in "$@"; do
|
|
||||||
msg "Moving [%s] from [%s] to [%s]" "${pkgbase}" "${source_repo}" "${target_repo}"
|
|
||||||
# shellcheck disable=SC2046
|
|
||||||
db-move "${source_repo}" "${target_repo}" $(pacman -Sql "${source_repo}" | grep "^${pkgbase}" || echo "${pkgbase}")
|
|
||||||
done
|
|
||||||
}
|
}
|
||||||
|
@@ -188,10 +188,13 @@ path = [
|
|||||||
"README.md",
|
"README.md",
|
||||||
"keys/**",
|
"keys/**",
|
||||||
".SRCINFO",
|
".SRCINFO",
|
||||||
|
".gitignore",
|
||||||
".nvchecker.toml",
|
".nvchecker.toml",
|
||||||
"*.install",
|
"*.install",
|
||||||
"*.sysusers",
|
"*.sysusers",
|
||||||
|
"*sysusers.conf",
|
||||||
"*.tmpfiles",
|
"*.tmpfiles",
|
||||||
|
"*tmpfiles.conf",
|
||||||
"*.logrotate",
|
"*.logrotate",
|
||||||
"*.pam",
|
"*.pam",
|
||||||
"*.service",
|
"*.service",
|
||||||
|
@@ -185,10 +185,18 @@ prepare_chroot() {
|
|||||||
echo "$x" >>"$copydir/etc/makepkg.conf"
|
echo "$x" >>"$copydir/etc/makepkg.conf"
|
||||||
done
|
done
|
||||||
|
|
||||||
cat > "$copydir/etc/sudoers.d/builduser-pacman" <<EOF
|
# TODO(gromit): check if this rule is sane
|
||||||
builduser ALL = NOPASSWD: /usr/bin/pacman
|
# TODO(gromit): this will require a full container
|
||||||
|
cat > "$copydir/etc/polkit-1/rules.d/10-systemd-nopasswd.rules" <<EOF
|
||||||
|
polkit.addRule(function(action, subject) {
|
||||||
|
if (action.id == "org.freedesktop.systemd1.manage-units") {
|
||||||
|
if (subject.isInGroup("wheel")) {
|
||||||
|
return polkit.Result.YES;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
EOF
|
EOF
|
||||||
chmod 440 "$copydir/etc/sudoers.d/builduser-pacman"
|
chmod 440 "$copydir/etc/polkit-1/rules.d/10-systemd-nopasswd.rules"
|
||||||
|
|
||||||
cat > "$copydir/etc/gitconfig" <<EOF
|
cat > "$copydir/etc/gitconfig" <<EOF
|
||||||
[safe]
|
[safe]
|
||||||
@@ -222,17 +230,14 @@ _chrootbuild() {
|
|||||||
# shellcheck source=/dev/null
|
# shellcheck source=/dev/null
|
||||||
. /etc/profile
|
. /etc/profile
|
||||||
|
|
||||||
# Beware, there are some stupid arbitrary rules on how you can
|
run0 --setenv=SOURCE_DATE_EPOCH \
|
||||||
# use "$" in arguments to commands with "sudo -i". ${foo} or
|
--setenv=BUILDTOOL \
|
||||||
# ${1} is OK, but $foo or $1 isn't.
|
--setenv=BUILDTOOLVER \
|
||||||
# https://bugzilla.sudo.ws/show_bug.cgi?id=765
|
--via-shell --chdir='~' \
|
||||||
sudo --preserve-env=SOURCE_DATE_EPOCH \
|
--user=builduser -- bash -c 'cd /startdir; makepkg "$@"' -bash "$@"
|
||||||
--preserve-env=BUILDTOOL \
|
|
||||||
--preserve-env=BUILDTOOLVER \
|
|
||||||
-iu builduser bash -c 'cd /startdir; makepkg "$@"' -bash "$@"
|
|
||||||
ret=$?
|
ret=$?
|
||||||
case $ret in
|
case $ret in
|
||||||
0|14)
|
0)
|
||||||
return 0;;
|
return 0;;
|
||||||
*)
|
*)
|
||||||
return $ret;;
|
return $ret;;
|
||||||
@@ -243,7 +248,7 @@ _chrootnamcap() {
|
|||||||
pacman -S --needed --noconfirm namcap
|
pacman -S --needed --noconfirm namcap
|
||||||
for pkgfile in /startdir/PKGBUILD /pkgdest/*; do
|
for pkgfile in /startdir/PKGBUILD /pkgdest/*; do
|
||||||
echo "Checking ${pkgfile##*/}"
|
echo "Checking ${pkgfile##*/}"
|
||||||
sudo -u builduser namcap "$pkgfile" 2>&1 | tee "/logdest/${pkgfile##*/}-namcap.log"
|
run0 --user=builduser -- namcap "$pkgfile" 2>&1 | tee "/logdest/${pkgfile##*/}-namcap.log"
|
||||||
done
|
done
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -252,8 +257,12 @@ download_sources() {
|
|||||||
chown "$makepkg_user:" "$WORKDIR"
|
chown "$makepkg_user:" "$WORKDIR"
|
||||||
|
|
||||||
# Ensure sources are downloaded
|
# Ensure sources are downloaded
|
||||||
sudo -u "$makepkg_user" --preserve-env=GNUPGHOME,SSH_AUTH_SOCK \
|
run0 --user="$makepkg_user" \
|
||||||
env SRCDEST="$SRCDEST" BUILDDIR="$WORKDIR" \
|
--setenv=GNUPGHOME \
|
||||||
|
--setenv=SSH_AUTH_SOCK \
|
||||||
|
--setenv=SRCDEST="$SRCDEST" \
|
||||||
|
--setenv=BUILDDIR="$WORKDIR" \
|
||||||
|
--chdir=. -- \
|
||||||
makepkg --config="$copydir/etc/makepkg.conf" --verifysource -o "${verifysource_args[@]}" ||
|
makepkg --config="$copydir/etc/makepkg.conf" --verifysource -o "${verifysource_args[@]}" ||
|
||||||
die "Could not download sources."
|
die "Could not download sources."
|
||||||
}
|
}
|
||||||
@@ -400,7 +409,7 @@ if arch-nspawn "$copydir" \
|
|||||||
"${nspawn_build_args[@]}" \
|
"${nspawn_build_args[@]}" \
|
||||||
/chrootbuild "${makepkg_args[@]}"
|
/chrootbuild "${makepkg_args[@]}"
|
||||||
then
|
then
|
||||||
mapfile -t pkgnames < <(sudo -u "$makepkg_user" bash -c 'source PKGBUILD; printf "%s\n" "${pkgname[@]}"')
|
mapfile -t pkgnames < <(run0 --user="$makepkg_user" -- bash -c 'source PKGBUILD; printf "%s\n" "${pkgname[@]}"')
|
||||||
move_products
|
move_products
|
||||||
else
|
else
|
||||||
(( ret += 1 ))
|
(( ret += 1 ))
|
||||||
@@ -453,7 +462,7 @@ else
|
|||||||
done
|
done
|
||||||
|
|
||||||
msg2 "Checking packages"
|
msg2 "Checking packages"
|
||||||
sudo -u "$makepkg_user" checkpkg --rmdir --warn --makepkg-config "$copydir/etc/makepkg.conf" "${remotepkgs[@]/#file:\/\//}"
|
run0 --user="$makepkg_user" -- checkpkg --rmdir --warn --makepkg-config "$copydir/etc/makepkg.conf" "${remotepkgs[@]/#file:\/\//}"
|
||||||
fi
|
fi
|
||||||
true
|
true
|
||||||
fi
|
fi
|
||||||
|
@@ -192,7 +192,7 @@ for p in "$@"; do
|
|||||||
pkgfile=${pkgfile_remote#file://}
|
pkgfile=${pkgfile_remote#file://}
|
||||||
if [[ ! -f ${pkgfile} ]]; then
|
if [[ ! -f ${pkgfile} ]]; then
|
||||||
msg "Downloading package '%s' into pacman's cache" "${pkgfile}"
|
msg "Downloading package '%s' into pacman's cache" "${pkgfile}"
|
||||||
sudo pacman -Swdd --noconfirm --logfile /dev/null "${p}" || exit 1
|
run0 -- pacman -Swdd --noconfirm --logfile /dev/null "${p}" || exit 1
|
||||||
pkgfile_remote=$(pacman -Sddp "${p}" 2>/dev/null)
|
pkgfile_remote=$(pacman -Sddp "${p}" 2>/dev/null)
|
||||||
pkgfile="${pkgfile_remote#file://}"
|
pkgfile="${pkgfile_remote#file://}"
|
||||||
fi
|
fi
|
||||||
|
Reference in New Issue
Block a user