diff options
Diffstat (limited to 'backport_others')
-rw-r--r-- | backport_others | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/backport_others b/backport_others index a923587..03b91ca 100644 --- a/backport_others +++ b/backport_others @@ -7,7 +7,7 @@ usage() { -echo "Usage: ./backport_others [options] squeeze|wheezy|jessie" +echo "Usage: ./backport_others [options] wheezy|jessie" echo "Options:" echo " -s Skip apt-get update/upgrade and pbuilder update" } @@ -44,13 +44,13 @@ then fi # Validate distribution argument -if [ $DIST != "squeeze" ] && [ $DIST != "wheezy" ] && [ $DIST != "jessie" ]; then usage; exit 1; fi +if [ $DIST != "wheezy" ] && [ $DIST != "jessie" ]; then usage; exit 1; fi export DIST # When doing a new repository, lattice, r-cran-mass and survival have to be # built first, then nlme and rmatrix, then the rest -# Packages to backport to squeeze/wheezy/jessie (without rpy2): +# Packages to backport to wheezy/jessie (without rpy2): for i in lattice nlme rmatrix mgcv boot cluster codetools foreign kernsmooth r-cran-class r-cran-coda r-cran-spatial r-cran-nnet r-cran-mass rodbc rpart survival r-cran-littler rpy rkward r-cran-rjags; do ./backport -s $i $DIST |