diff options
author | ranke <ranke@f247ebf9-aa24-0410-a698-f940e971ad2b> | 2010-06-03 04:05:25 +0000 |
---|---|---|
committer | ranke <ranke@f247ebf9-aa24-0410-a698-f940e971ad2b> | 2010-06-03 04:05:25 +0000 |
commit | 6d7746c313ac186d66126255b639a14f0ea6e3ba (patch) | |
tree | d26bcb6bb61277be70fc43441cce292a88b0d243 | |
parent | 3cb754dbfa095a5855400dc6151ab71ec7441f90 (diff) |
Add a missing build dependency of r-cran-class
git-svn-id: svn+ssh://stiller/home/schatz/reps/r-backports@66 f247ebf9-aa24-0410-a698-f940e971ad2b
-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-* |