mirror of
https://github.com/moparisthebest/pacman
synced 2024-11-10 03:25:01 -05:00
b6387b954f
This should finally get the path replacement in our scripts right. This is the way the autoconf package itself does it and should not need much further tweaking. Threw in a few trailing whitespace corrections from the scripts as well. Signed-off-by: Dan McGee <dan@archlinux.org>
114 lines
2.9 KiB
Bash
114 lines
2.9 KiB
Bash
#!/bin/bash
|
|
#
|
|
# abs - download a PKGBUILD tree from a CVS repository
|
|
# @configure_input@
|
|
#
|
|
# Copyright (c) 2002-2007 by Judd Vinet <jvinet@zeroflux.org>
|
|
#
|
|
# This program is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program; if not, write to the Free Software
|
|
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
|
|
# USA.
|
|
#
|
|
|
|
myver='@PACKAGE_VERSION@'
|
|
CONFDIR="@sysconfdir@/abs"
|
|
CONNMODE="m"
|
|
|
|
[ -f "$CONFDIR/abs.conf" ] && source "$CONFDIR/abs.conf"
|
|
|
|
#user based overrides
|
|
[ -f ~/.abs.conf ] && source ~/.abs.conf
|
|
|
|
usage() {
|
|
echo "Arch Build System -- synchronization utility"
|
|
echo "usage: $0 [-p] [repository1 [repository2 ...]]"
|
|
echo
|
|
echo "abs will synchronize PKGBUILD scripts from the CVS repository"
|
|
echo "into $ABSROOT. You can follow different package trees by"
|
|
echo "editing @SYSCONFDIR@/abs/supfile.* files. If no argument is given, abs "
|
|
echo "will synchronize from supfiles specified in @SYSCONFDIR@/abs/abs.conf."
|
|
echo "If -p is specified, the connection is opened in passive mode."
|
|
}
|
|
|
|
version() {
|
|
printf "abs (pacman) %s\n" "$myver"
|
|
printf "Copyright (C) 2002-2007 Judd Vinet <jvinet@zeroflux.org>.\n"
|
|
echo
|
|
printf "This is free software; see the source for copying conditions.\n"
|
|
printf "There is NO WARRANTY, to the extent permitted by law.\n"
|
|
echo
|
|
}
|
|
|
|
update() {
|
|
cd "$ABSROOT"
|
|
for sup in "${SUPFILES[@]}"; do
|
|
if [ "$sup" != "testing" ]; then
|
|
if [ "$sup" = "${sup#!}" ]; then
|
|
$CVSUP -L 1 -r 0 -g -b "$ABSROOT" -P $CONNMODE -c .sup "$CONFDIR/supfile.$sup"
|
|
fi
|
|
elif [ "$sup" = "testing" ]; then
|
|
if [ ! -d "$ABSROOT/testing" ]; then
|
|
mkdir "$ABSROOT/testing"
|
|
fi
|
|
cd "$ABSROOT/testing"
|
|
$CVSUP -L 1 -r 0 -g -b "$ABSROOT/testing" -P $CONNMODE -c .sup "$CONFDIR/supfile.testing"
|
|
cd "$ABSROOT"
|
|
fi
|
|
done
|
|
}
|
|
|
|
if [ "$1" = "-h" -o "$1" = "--help" ]; then
|
|
usage
|
|
exit 0
|
|
fi
|
|
|
|
if [ "$1" = "-V" -o "$1" = "--version" ]; then
|
|
version
|
|
exit 0
|
|
fi
|
|
|
|
if [ ! -d "$ABSROOT" ]; then
|
|
echo "abs: $ABSROOT does not exist (or is not a directory)"
|
|
exit 1
|
|
fi
|
|
if [ ! -w "$ABSROOT" ]; then
|
|
echo "abs: no write permissions in $ABSROOT"
|
|
exit 1
|
|
fi
|
|
|
|
if [ "$(type -p cvsup)" ]; then
|
|
CVSUP="cvsup"
|
|
elif [ "$(type -p csup)" ]; then
|
|
CVSUP="csup"
|
|
else
|
|
echo "abs: missing CVS synchronization utility. Install cvsup or csup."
|
|
exit 1
|
|
fi
|
|
|
|
if [ "$1" = "-p" ] || [ "$1" = "--passive" ]; then
|
|
CONNMODE="-"
|
|
shift
|
|
else
|
|
CONNMODE="m"
|
|
fi
|
|
|
|
if [ "$#" -ne "0" ]; then
|
|
SUPFILES=("$@")
|
|
fi
|
|
|
|
update
|
|
|
|
exit 0
|
|
# vim: set ts=2 sw=2 noet:
|