diff options
-rw-r--r-- | backport_others.sh | 9 | ||||
-rw-r--r-- | build_others.sh | 2 |
2 files changed, 9 insertions, 2 deletions
diff --git a/backport_others.sh b/backport_others.sh index 731ea29..d7c3b86 100644 --- a/backport_others.sh +++ b/backport_others.sh @@ -22,7 +22,7 @@ text="Recompiled on $DIST for CRAN" apt-get update pbuilder update -#for i in rpy; do +#for i in r-cran-class; do for i in boot cluster codetools foreign kernsmooth lattice mgcv nlme r-cran-class r-cran-spatial r-cran-nnet r-cran-mass rmatrix rodbc rpart survival littler rpy; do apt-get source $i cd $i-* @@ -34,6 +34,13 @@ for i in boot cluster codetools foreign kernsmooth lattice mgcv nlme r-cran-clas dch -a "debian/control: adapt build dependencies on r-base-dev to current backport" + # Backport r-cran-class + if [ ${i} = "r-cran-class" ] + then + sed -i '/^Build-Depends/s/.*/&, r-cran-mass/' debian/control + dch -a "debian/control: add Build-Depends: to 'r-cran-mass'" + fi + # Backport rpy if [ ${i} = "rpy" ] then diff --git a/build_others.sh b/build_others.sh index 77ac7f9..61915f2 100644 --- a/build_others.sh +++ b/build_others.sh @@ -13,7 +13,7 @@ echo Architecture is $ARCH apt-get update pbuilder update -#for i in littler; do +#for i in r-cran-class; do for i in cluster foreign lattice mgcv nlme r-cran-class r-cran-spatial r-cran-nnet r-cran-mass kernsmooth rmatrix rodbc rpart survival littler rpy; do apt-get source $i cd $i-* |