mirror of
https://github.com/moparisthebest/pacman
synced 2024-12-22 07:48:50 -05:00
Added 'abs' and configs to CVS
* Added testing-usability to abs
This commit is contained in:
parent
aad3f6ab1f
commit
6ec8dfc2f3
21
etc/abs/supfile.arch
Normal file
21
etc/abs/supfile.arch
Normal file
@ -0,0 +1,21 @@
|
||||
#
|
||||
# /etc/abs/supfile
|
||||
#
|
||||
|
||||
# this is the host containing the master ABS files
|
||||
*default host=cvs.archlinux.org
|
||||
|
||||
*default release=cvs
|
||||
*default delete
|
||||
*default use-rel-suffix
|
||||
*default compress
|
||||
|
||||
#
|
||||
# Set tag equal to the package tree you wish to follow. CURRENT and
|
||||
# STABLE are the most commonly used, but you can specify specific
|
||||
# versions or tag names. Examples are RELEASE_0_2, VEGA, RELEASE_0_3,
|
||||
# FIREFLY, etc.
|
||||
#
|
||||
*default tag=CURRENT
|
||||
|
||||
arch
|
14
etc/abs/supfile.community
Normal file
14
etc/abs/supfile.community
Normal file
@ -0,0 +1,14 @@
|
||||
#
|
||||
# /etc/abs/supfile.community
|
||||
#
|
||||
|
||||
# this is the host containing the community PKGBUILD files
|
||||
*default host=cvs.archlinux.org
|
||||
|
||||
*default release=cvs
|
||||
*default delete
|
||||
*default use-rel-suffix
|
||||
*default compress
|
||||
|
||||
*default tag=CURRENT
|
||||
community
|
14
etc/abs/supfile.extra
Normal file
14
etc/abs/supfile.extra
Normal file
@ -0,0 +1,14 @@
|
||||
#
|
||||
# /etc/abs/supfile.extra
|
||||
#
|
||||
|
||||
# this is the host containing the extra PKGBUILD files
|
||||
*default host=cvs.archlinux.org
|
||||
|
||||
*default release=cvs
|
||||
*default delete
|
||||
*default use-rel-suffix
|
||||
*default compress
|
||||
|
||||
*default tag=CURRENT
|
||||
extra
|
15
etc/abs/supfile.testing
Normal file
15
etc/abs/supfile.testing
Normal file
@ -0,0 +1,15 @@
|
||||
#
|
||||
# /etc/abs/supfile
|
||||
#
|
||||
|
||||
# this is the host containing the master ABS files
|
||||
*default host=cvs.archlinux.org
|
||||
|
||||
*default release=cvs
|
||||
*default delete
|
||||
*default use-rel-suffix
|
||||
*default compress
|
||||
*default tag=TESTING
|
||||
|
||||
arch
|
||||
extra
|
14
etc/abs/supfile.unstable
Normal file
14
etc/abs/supfile.unstable
Normal file
@ -0,0 +1,14 @@
|
||||
#
|
||||
# /etc/abs/supfile.unstable
|
||||
#
|
||||
|
||||
# this is the host containing the unstable PKGBUILD files
|
||||
*default host=cvs.archlinux.org
|
||||
|
||||
*default release=cvs
|
||||
*default delete
|
||||
*default use-rel-suffix
|
||||
*default compress
|
||||
|
||||
*default tag=CURRENT
|
||||
unstable
|
96
scripts/abs
Normal file
96
scripts/abs
Normal file
@ -0,0 +1,96 @@
|
||||
#!/bin/bash
|
||||
# vim: set ft=sh ts=2 sw=2
|
||||
|
||||
[ -f /etc/abs/abs.conf ] && source /etc/abs/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 /etc/abs/supfile.* files. If no argument is given, abs "
|
||||
echo "will synchronize from supfiles specified in /etc/abs/abs.conf."
|
||||
echo "If -p is specified, the connection is opened in passive mode."
|
||||
}
|
||||
|
||||
update() {
|
||||
cd $ABSROOT
|
||||
for sup in "${SUPFILES[@]}"; do
|
||||
if [ "$sup" != "testing" ]; then
|
||||
if [ "$sup" = "${sup#!}" ]; then
|
||||
cvsup -L 1 -r 0 -g -b $ABSROOT -c .sup /etc/abs/supfile.$sup
|
||||
fi
|
||||
elif [ "$sup" = "testing" ]; then
|
||||
if [ ! -d /var/abs/testing ]; then
|
||||
mkdir /var/abs/testing;
|
||||
fi
|
||||
cd $ABSROOT/testing
|
||||
cvsup -L 1 -r 0 -g -b $ABSROOT/testing -c .sup /etc/abs/supfile.testing
|
||||
cd $ABSROOT
|
||||
fi
|
||||
done
|
||||
}
|
||||
|
||||
|
||||
update() {
|
||||
cd $ABSROOT
|
||||
for sup in "${SUPFILES[@]}"; do
|
||||
if [ "$sup" = "${sup#!}" ]; then
|
||||
$CVSUP -L 1 -r 0 -g -b $ABSROOT -P $CONNMODE -c .sup /etc/abs/supfile.$sup
|
||||
fi
|
||||
done
|
||||
}
|
||||
|
||||
if [ "$1" = "-h" ] || [ "$1" = "--help" ]; then
|
||||
usage
|
||||
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 [ ! -d "$ABSROOT" ]; then
|
||||
echo "abs: directory $ABSROOT does not exist"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if [ "$1" = "-p" ] || [ "$1" = "--passive" ]; then
|
||||
CONNMODE="-"
|
||||
shift
|
||||
else
|
||||
CONNMODE="m"
|
||||
shift
|
||||
fi
|
||||
|
||||
if [ "$1" = "-p" ] || [ "$1" = "--passive" ]; then
|
||||
CONNMODE="-"
|
||||
shift
|
||||
else
|
||||
CONNMODE="m"
|
||||
shift
|
||||
fi
|
||||
|
||||
if [ "$#" -ne "0" ]; then
|
||||
SUPFILES=("$@")
|
||||
fi
|
||||
|
||||
update
|
||||
|
||||
exit 0
|
||||
# vim: set ts=2 noet:
|
Loading…
Reference in New Issue
Block a user