diff options
author | Johannes Ranke <jranke@uni-bremen.de> | 2017-03-13 01:10:18 +0100 |
---|---|---|
committer | Johannes Ranke <jranke@uni-bremen.de> | 2017-03-13 01:10:18 +0100 |
commit | d49073642498e6140d093de48623efae51be5bf7 (patch) | |
tree | 9d5d2ccc59612d6b3762f91554d3b3616a1d1829 | |
parent | 7430f108c3d9e07871c66daedcbce4aa2f5ff9a7 (diff) |
Wheezy is not supported any more, stretch may be in the future
-rwxr-xr-x | build_others | 4 | ||||
-rwxr-xr-x | move_debs | 4 |
2 files changed, 3 insertions, 5 deletions
diff --git a/build_others b/build_others index 739ec5c..45311bb 100755 --- a/build_others +++ b/build_others @@ -41,8 +41,6 @@ fi # wheezy/jessie #for i in lattice r-cran-mass survival; do #for i in nlme rmatrix; do -#for i in cluster foreign r-cran-class r-cran-spatial r-cran-nnet kernsmooth mgcv rodbc rpart littler rpy rpy2 rkward r-cran-rjags; do -for i in lattice rmatrix nlme cluster foreign r-cran-class r-cran-spatial r-cran-nnet r-cran-mass kernsmooth mgcv rodbc rpart survival littler rpy rkward r-cran-rjags -do +for i in lattice rmatrix nlme cluster foreign r-cran-class r-cran-spatial r-cran-nnet r-cran-mass kernsmooth mgcv rodbc rpart survival littler rpy rkward r-cran-rjags; do ./build -s $i done @@ -4,7 +4,7 @@ usage() { -echo "Usage: ./move_debs wheezy|jessie" +echo "Usage: ./move_debs stretch|jessie" } # Positional argument @@ -12,7 +12,7 @@ if [ $# -lt 1 ]; then usage; exit 1; fi DIST=$1 # Validate distribution argument -if [ $DIST != "wheezy" ] && [ $DIST != "jessie" ]; then usage; exit 1; fi +if [ $DIST != "stretch" ] && [ $DIST != "jessie" ]; then usage; exit 1; fi chown jranke $DIST/*${DIST}cran*_amd64.deb mv -v $DIST/*${DIST}cran*_amd64.deb /home/jranke/svn/website/www/ranke/r-cran/$DIST-cran3 |