mirror of
https://gitlab.archlinux.org/archlinux/devtools.git
synced 2025-09-13 09:56:18 +02:00
Compare commits
6 Commits
Author | SHA1 | Date | |
---|---|---|---|
![]() |
3699321904 | ||
![]() |
d8ec9c9066 | ||
![]() |
fbb2bd2b8e | ||
![]() |
d5c6bc7656 | ||
![]() |
f7615fe7d7 | ||
![]() |
1703b92e1a |
2
.gitignore
vendored
2
.gitignore
vendored
@@ -1,5 +1,5 @@
|
||||
*~
|
||||
devtools-*.tar.gz
|
||||
devtools-*.tar.gz*
|
||||
archbuild
|
||||
archco
|
||||
archrelease
|
||||
|
@@ -13,7 +13,7 @@ case $scriptname in
|
||||
archco)
|
||||
SVNURL="svn+ssh://gerolde.archlinux.org/srv/svn-packages";;
|
||||
communityco)
|
||||
SVNURL="svn+ssh://aur.archlinux.org/srv/svn-packages";;
|
||||
SVNURL="svn+ssh://sigurd.archlinux.org/srv/svn-packages";;
|
||||
*)
|
||||
die "Couldn't find svn url for $scriptname"
|
||||
;;
|
||||
|
@@ -66,7 +66,7 @@ for tag in "$@"; do
|
||||
while read -r file; do
|
||||
trash+=("repos/$tag/$file")
|
||||
done < <(svn ls "repos/$tag")
|
||||
[[ $trash ]] && svn rm -q "${trash[@]}"
|
||||
[[ $trash ]] && svn rm -q "${trash[@]/%/@}"
|
||||
else
|
||||
mkdir -p "repos/$tag"
|
||||
svn add --parents -q "repos/$tag"
|
||||
|
@@ -109,7 +109,7 @@ if [[ -z $server ]]; then
|
||||
core|extra|testing|staging|kde-unstable|gnome-unstable)
|
||||
server='gerolde.archlinux.org' ;;
|
||||
community*|multilib*)
|
||||
server='aur.archlinux.org' ;;
|
||||
server='sigurd.archlinux.org' ;;
|
||||
*)
|
||||
server='gerolde.archlinux.org'
|
||||
msg "Non-standard repository $repo in use, defaulting to server $server" ;;
|
||||
|
@@ -13,8 +13,8 @@ pkgbase="${1}"
|
||||
|
||||
packages_svn='svn+ssh://gerolde.archlinux.org/srv/svn-packages'
|
||||
packages_server='gerolde.archlinux.org'
|
||||
community_svn='svn+ssh://aur.archlinux.org/srv/svn-packages'
|
||||
community_server='aur.archlinux.org'
|
||||
community_svn='svn+ssh://sigurd.archlinux.org/srv/svn-packages'
|
||||
community_server='sigurd.archlinux.org'
|
||||
mirror='http://mirrors.kernel.org/archlinux'
|
||||
|
||||
case $scriptname in
|
||||
|
@@ -78,7 +78,7 @@ trap_abort() {
|
||||
|
||||
trap_exit() {
|
||||
trap - EXIT INT QUIT TERM HUP
|
||||
cleanup 0
|
||||
cleanup
|
||||
}
|
||||
|
||||
die() {
|
||||
|
@@ -213,12 +213,12 @@ if ! grep -q 'SRCDEST="/srcdest"' "$copydir/etc/makepkg.conf"; then
|
||||
echo 'SRCDEST="/srcdest"' >> "$copydir/etc/makepkg.conf"
|
||||
fi
|
||||
|
||||
if [[ -n $MAKEFLAGS ]]; then
|
||||
if [[ -n $MAKEFLAGS ]]; then
|
||||
sed -i '/^MAKEFLAGS=/d' "$copydir/etc/makepkg.conf"
|
||||
echo "MAKEFLAGS='${MAKEFLAGS}'" >> "$copydir/etc/makepkg.conf"
|
||||
fi
|
||||
|
||||
if [[ -n $PACKAGER ]]; then
|
||||
if [[ -n $PACKAGER ]]; then
|
||||
sed -i '/^PACKAGER=/d' "$copydir/etc/makepkg.conf"
|
||||
echo "PACKAGER='${PACKAGER}'" >> "$copydir/etc/makepkg.conf"
|
||||
fi
|
||||
|
@@ -131,7 +131,7 @@ chroot_mount() {
|
||||
[[ -e "${working_dir}/run" ]] || mkdir "${working_dir}/run"
|
||||
mount -t tmpfs tmpfs "${working_dir}/run" -o mode=0755,nodev,nosuid,strictatime,size=64M
|
||||
|
||||
for host_config in resolv.conf timezone localtime; do
|
||||
for host_config in resolv.conf localtime; do
|
||||
bind_mount /etc/$host_config ro
|
||||
done
|
||||
fi
|
||||
@@ -160,7 +160,8 @@ copy_hostconf () {
|
||||
}
|
||||
|
||||
trap_chroot_umount () {
|
||||
trap 'trap_exit' EXIT INT QUIT TERM HUP
|
||||
trap 'trap_abort' INT QUIT TERM HUP
|
||||
trap 'trap_exit' EXIT
|
||||
|
||||
for cache_dir in ${cache_dirs[@]}; do
|
||||
umount "${working_dir}/${cache_dir}"
|
||||
@@ -168,7 +169,7 @@ trap_chroot_umount () {
|
||||
[[ -n $host_mirror_path ]] && umount "${working_dir}/${host_mirror_path}"
|
||||
|
||||
if (( ! have_nspawn )); then
|
||||
for host_config in resolv.conf timezone localtime; do
|
||||
for host_config in resolv.conf localtime; do
|
||||
umount "${working_dir}/etc/${host_config}"
|
||||
done
|
||||
umount "${working_dir}/proc/sys"
|
||||
|
Reference in New Issue
Block a user