Daily Sourcecode Snapshot - Standardisation??
Posted: Sun May 11, 2003 10:28 pm
Hello,
I was just wondering if you were able to automate the naming of the daily sourcecode snapshot to list the date it was taken??
For example, rather than having it called Exult.zip, perhaps it could be called .... exultcvs-20030511.zip ??? If this can't be automated than that's no problem. I can live with it, I just thought it would make more sense for those of us who run on a ports-based system and want to update it easily.
And could use tar & gzip(or bzip2 it) instead of using just the ordinary zip format?? It might seem like an alot of effort for CVS but releases are along time inbetween. Check out wine (www.winehq.com) if you can't understand what I mean.
I use Crux, which is a simple and generic distro of linux that uses ports. Here is what a port for Exult if you were to append the date onto the end of the file...
===================================================================
name=exultcvs
version=20030511
release=1
source=(http://exult.info/snapshots/$name-$version.zip)
build () {
cd $name-$version
sh autogen.sh
./configure --prefix=/usr
make
make DESTDIR=$PKG install
}
===================================================================
I was just wondering if you were able to automate the naming of the daily sourcecode snapshot to list the date it was taken??
For example, rather than having it called Exult.zip, perhaps it could be called .... exultcvs-20030511.zip ??? If this can't be automated than that's no problem. I can live with it, I just thought it would make more sense for those of us who run on a ports-based system and want to update it easily.
And could use tar & gzip(or bzip2 it) instead of using just the ordinary zip format?? It might seem like an alot of effort for CVS but releases are along time inbetween. Check out wine (www.winehq.com) if you can't understand what I mean.
I use Crux, which is a simple and generic distro of linux that uses ports. Here is what a port for Exult if you were to append the date onto the end of the file...
===================================================================
name=exultcvs
version=20030511
release=1
source=(http://exult.info/snapshots/$name-$version.zip)
build () {
cd $name-$version
sh autogen.sh
./configure --prefix=/usr
make
make DESTDIR=$PKG install
}
===================================================================