diff options
author | Johannes Ranke <jranke@uni-bremen.de> | 2017-03-21 10:37:33 +0100 |
---|---|---|
committer | Johannes Ranke <jranke@uni-bremen.de> | 2017-03-21 10:37:33 +0100 |
commit | e00c1aed1dbf6343f2914180f898943797586e8c (patch) | |
tree | 8a209162e83f77fd797595643f1c9719248c2d5e /backport | |
parent | d49073642498e6140d093de48623efae51be5bf7 (diff) |
Changes for security fix of R 3.2.5 in wheezy-cran3
Diffstat (limited to 'backport')
-rwxr-xr-x | backport | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -8,7 +8,7 @@ export ARCH # R version against which the software is compiled Rversion=3.3.3 reposversion="cran3" -iteration=0 +iteration=1 # Where the buildresults should be stored and where to look for current backports rcrandir=/home/jranke/svn/website/www/ranke/r-cran @@ -24,7 +24,7 @@ rcrandir=/home/jranke/svn/website/www/ranke/r-cran usage() { -echo "Usage: ./backport [options] sourcepackage stretch|jessie" +echo "Usage: ./backport [options] sourcepackage stretch|jessie|wheezy" echo "Options:" echo " -k, --keep Keep copied source package and directory used for package building" echo " -s, --skip Skip apt-get update/upgrade and pbuilder update" @@ -60,7 +60,7 @@ pkg=$1 DIST=$2 # Validate distribution argument -if [ $DIST != "stretch" ] && [ $DIST != "jessie" ]; then usage; exit 1; fi +if [ $DIST != "stretch" ] && [ $DIST != "jessie" ] && [ $DIST != "wheezy" ]; then usage; exit 1; fi export DIST # Set required r-base-dev version for packages build-depending on R |