diff options
Diffstat (limited to 'backport')
-rwxr-xr-x | backport | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -5,7 +5,8 @@ ARCH=i386 export ARCH -# R version against which the software is compiled +# Iteration of the backport, for the case several backports of the same +# release are published iteration=0 # Where the buildresults should be stored and where to look for current backports @@ -14,7 +15,6 @@ rcrandir=/home/jranke/git/uni/website/www/ranke/r-cran # Author: Johannes Ranke <jranke@uni-bremen.de> # Preconditions: -# - up to date R version for packages depending on R # - sudo and pbuilder configuration (see README) # - sid sources in /etc/apt/sources/list # - dh-r installed (and maybe more) @@ -67,14 +67,14 @@ then sudo rm -rf `ls -d $pkg-*` fi -# Get current source from sid. If we want buildd-unstable, we need to remove -t sid +# Get current source if [ "$skip" = false ] then sudo apt-get update sudo apt-get upgrade fi -#sudo apt-get source $pkg -sudo apt-get source -t sid $pkg +#sudo apt-get source -t sid $pkg +sudo apt-get source $pkg # Copy sources to $DIST directory to enable parallel builds mkdir -p $DIST |