You are not logged in.
Is there any script that makes abs compile updated cvs sntries?
What I want is to have a server that keeps running abs every 24 hours and automatically compiling new packages for my arch: pentium3 and pentium4
Or easier: Is there a mirror that holds p3 and p4 packages?
Offline
couldn't you run a simple cron job using abs and srcpac?
Dusty
Offline
Then I have to have the compilation server with all packages installed... and it is not possible, because some of them conflict with each other
Offline
Well it shouldn't be to hard to hack at srcpac and make your own script that runs it.
Basically, you would modify (around line 100):
if [ "$action" = "install" ]; then
makepkg -icbrfw /var/cache/pacman
else
makepkg -cbrfw /var/cache/pacman
fi
to something like:
[ ! -d /var/cache/P4 ] && mkdir -p /var/cache/P4
[ ! -d /var/cache/P3 ] && mkdir -p /var/cache/P3
if [ "$scriptselect" = "P4" ]; then
makepkg -cbrfw /var/cache/P4
else
makepkg -cbrfw /var/cache/P3
fi
Then you could make a script that be something like:
mv /etc/makepkg.conf /etc/makepkg.conf.temp
mv /etc/makepkg.conf.P4 /etc/makepkg.conf
scriptselect="P4"
srcpac -Sbyu --noconfirm #what ever it is
mv /etc/makepkg.conf /etc/makepkg.conf.P4
mv /etc/makepkg.conf.P3 /etc/makepkg.conf
sriptselect="P3"
srcpac -Sbyu --noconfirm
mv /etc/makepkg.conf /etc/makepkg.conf.P3
mv /etc/makepkg.conf.temp /etc/makepkg.conf
...and your makepkg.conf.Px's would be the opt. code for each cpu.
Probably a good idea to copy and rename srcpac to something else too afterwards because it would be pretty much mangled after that.
Offline
thank you a lot
Is anyone interested in this optimized packages?
Could I upload them somewhere?
Offline