#!/bin/sh
# NOTE
# this fetches a given revision at the util-vserver svn repo
# it DOES NOT try to regenerate configure 
# (an earlier attempt about that has failed)
# instead the specfile is expected to invoke
# make -f Makefile.svn
# to get that created on the build box
# in particular this requires the following packages in devel.pkgs
# automake autoconf libtool
ver=2926
fullver=util-vserver-0.30.216-pre${ver}
rm -rf $fullver
svn export http://svn.linux-vserver.org/svn/util-vserver/trunk@${ver} ${fullver}
tar -cjf ${fullver}.tar.bz2 ${fullver}
sha1sum ${fullver}.tar.bz2

