ABS - Specify repo or package to download on command-line
This patch fixes the ability to specify which repos to be
synced as parameters to abs (e.g "abs core extra").
In addition, single or multiple packages can be requested
on the command line (e.g. "abs core/pacman extra/abs") as
well as any combination of repos and packages.
##
@@ -73,15 +73,17 @@ fi
##
usage() {
echo "Arch Build System $ABS_VERSION -- synchronization utility"
- echo "usage: $0 [options] [repository1 [repository2 ...]]"
+ echo ""
+ echo "Usage:"
+ echo "$0 [options] [repository1[/package1] [repository2[/package2] ...]]"
echo
echo "Options:"
echo " -h, --help Display this help message then exit."
echo " -V, --version Display version information then exit."
echo
- echo "abs will synchronize PKGBUILD scripts from the Arch Linux"
- echo "repository into $ABSROOT via rsync. If no argument is given, abs"
- echo "will synchronize the repositories specified in ${CONFDIR}abs.conf."
+ echo "abs will synchronize PKGBUILD scripts from the Arch Linux repositories"
+ echo "into $ABSROOT via rsync. If no argument is given, abs will synchronize"
+ echo "the repositories specified in ${CONFDIR}abs.conf."
echo
echo "Report bugs to $BUG_REPORT_EMAIL with [ABS] in the subject"
}
@@ -92,24 +94,39 @@ version() {
echo "Copyright (C) 2002-2008 Judd Vinet <jvinet@zeroflux.org>."
echo
echo "This is free software; see the source for copying conditions."
- echo "There is NO WARRANTY, to the extent permitted by law."
+ echo "There is NO WARRANTY, to the extent permitted by law."
}
update() {
cd "$ABSROOT"
- EXCLUDE="--filter=P_/local/ --filter=P_/README"
-
- # I want to ensure we only exclude the top-level repo directories
- for repo in "${REPOS[@]}"; do
- if [ "$repo" != "${repo#!}" ]; then
- EXCLUDE="${EXCLUDE} --filter=-_/${repo#!}/"
- fi
- done
+ if [ "$CLPARAM" = "" ]; then
+ # using repos specified in abs.conf
+ for repo in "${REPOS[@]}"; do
+ if [ "$repo" != "${repo#!}" ]; then
+ EXCLUDE="${EXCLUDE} --filter=-_/${repo#!}/"
+ fi
+ done
+
+ EXCLUDE="${EXCLUDE} --filter=P_/local/ --filter=P_/README"
+ SYNCARGS="${SYNCARGS} --delete-excluded"
+ else
+ # using repos/packages specified on the command line
+ for param in "${REPOS[@]}"; do
+ INCLUDE="${INCLUDE} --include=/${param}"
+ if [ "$param" != "${param//}" ]; then
+ repo=${param%/*}
+ INCLUDE="${INCLUDE} --include=/${repo}"
+ EXCLUDE="${EXCLUDE} --exclude=/${repo}/*"
+ fi
+ done
+ INCLUDE=$(echo $INCLUDE | tr " " "
" | sort -u | tr "
" " ")
+ EXCLUDE="${EXCLUDE} --exclude=/*"
+ fi
which takes $INCLUDE, sorts it and removes duplicate values. Is there a
better way to do this? Everything appears to still work if I don't do
this but it makes the rsync command much cleaner.
Allan
_______________________________________________
pacman-dev mailing list
pacman-dev@archlinux.org
http://archlinux.org/mailman/listinfo/pacman-dev