mirror of
https://gitlab.archlinux.org/archlinux/devtools.git
synced 2025-09-13 09:56:18 +02:00
Compare commits
4 Commits
Author | SHA1 | Date | |
---|---|---|---|
![]() |
2020fb406a | ||
![]() |
4427b80aba | ||
![]() |
41b54bdde5 | ||
![]() |
54bad4c91d |
@@ -58,7 +58,7 @@ for _pkgname in "${pkgname[@]}"; do
|
||||
elif [[ -f "$STARTDIR/$oldpkg" ]]; then
|
||||
ln -s "$STARTDIR/$oldpkg" "$oldpkg"
|
||||
else
|
||||
wget --quiet "$pkgurl"
|
||||
curl -fsLC - --retry 3 --retry-delay 3 -o "$oldpkg" "$pkgurl"
|
||||
fi
|
||||
fi
|
||||
|
||||
|
@@ -72,11 +72,23 @@ svn -q commit -m"${scriptname}: Moving ${pkgbase} from ${source_repo} to ${targe
|
||||
pushd "target_checkout/${pkgbase}/trunk" >/dev/null
|
||||
archrelease "${arch[@]/#/$target_repo-}" || die
|
||||
popd >/dev/null
|
||||
ssh "${target_server}" '/arch/db-update' || die
|
||||
|
||||
if [[ "${target_server}" == "${community_server}" ]]; then
|
||||
dbscripts_path='/srv/repos/svn-community/dbscripts'
|
||||
else
|
||||
dbscripts_path='/arch'
|
||||
fi
|
||||
|
||||
ssh "${target_server}" "${dbscripts_path}/db-update" || die
|
||||
|
||||
msg "Removing ${pkgbase} from ${source_repo}"
|
||||
if [[ "${source_server}" == "${community_server}" ]]; then
|
||||
dbscripts_path='/srv/repos/svn-community/dbscripts'
|
||||
else
|
||||
dbscripts_path='/arch'
|
||||
fi
|
||||
for _arch in ${arch[@]}; do
|
||||
ssh "${source_server}" "/arch/db-remove ${source_repo} ${_arch} ${pkgbase}"
|
||||
ssh "${source_server}" "${dbscripts_path}/db-remove ${source_repo} ${_arch} ${pkgbase}"
|
||||
done
|
||||
svn -q checkout -N "${source_svn}" source_checkout
|
||||
svn -q up "source_checkout/${pkgbase}"
|
||||
|
@@ -44,7 +44,7 @@ while getopts 'r:ufnhC:M:c:' arg; do
|
||||
M) makepkg_conf="$OPTARG" ;;
|
||||
n) NOCOPY='y' ;;
|
||||
c) cache_dir="$OPTARG" ;;
|
||||
h|?) usage 0 ;;
|
||||
h|?) usage ;;
|
||||
*) error "invalid argument '${arg}'"; usage ;;
|
||||
esac
|
||||
done
|
||||
|
Reference in New Issue
Block a user