asp equivalent?
Is there an equivalent to arch's asp package? I use the following script to
pull from https://github.com/artix-linux (asp is much more comfortable but seems
to know nothing about system/world/galaxy):
#!/bin/bash
BUILDDIR="${BUILDDIR:-$HOME/ARTIX}"
mkdir -p $BUILDDIR
for dir in $BUILDDIR/{system,world,galaxy}; do
[[ -d $dir ]] && {
cd $dir
git reset --hard HEAD
git pull
} || {
cd $BUILDDIR && \
git clone https://github.com/artix-linux/`basename $dir`
}
done
This works perfectly but may become a strain on your servers if more people use
something like this and the number of packages increases (that's why the arch
people replaced abs with asp, which has sparse checkout - every package has its
own .git folder).