Mateusz,
As part of the migration of www.gdal.org to telascience, we need to setup nightly snapshots on download.osgeo.org.
Please setup this as a nightly crontab (circa 3am US EST). The current script for doing this on www.gdal.org is below. Try to do things similarly.
warmerda@iweb[1071]$ cat gdalnightlycvs.csh
#!/bin/tcsh
setenv PATH /usr/local/bin:$PATH
# This is implemented using tcsh because I can't seem to get sh stdout/stderr
# redirection to /dev/null to work properly for sub scripts.
cd ~/gdal
setenv DATE `date +%Y%m%d`
setenv DATE_VER `date +%Y.%m.%d`
./mkgdaldist.sh svn-$DATE_VER -date $DATE >& /dev/null
rm -f ~/gdal-web/dl/daily/*
mv *svn-$DATE_VER* ~/gdal-web/dl/daily
mv gdalsvn*.zip ~/gdal-web/dl/daily
Note that there is already a "checked out" tree at /osgeo/gdal/gdal, and that the daily snapshot should go into /osgeo/download/gdal/daily. Please do all this work "as me" on download.osgeo.org. You can presumably use "sudo su - frankw" to become me from your account. It is likely that you will need to uninstall the system swig, and install swig 1.3.31 so that the bindings generation that is part of mkgdaldist.sh will work properly.
In addition to the old "trunk" snapshots, I would also like the following improvements as time permits:
- Add a nightly snapshot of the 1.4 branch.
- Remove man pages (gdal/man) from subversion, and modify mkgdaldist.sh to generate them as part of the distribution generation process.
Also, please setup a topic in the gdal wiki with information on how the gdal website, nightly snapshots and so forth are being administered. Over time we need to move to a situation where several GDAL project members can take care of administrative problems if needed.
Thanks!