diff options
-rw-r--r-- | backport_all.sh | 10 | ||||
-rw-r--r-- | backport_rkward.sh | 4 |
2 files changed, 7 insertions, 7 deletions
diff --git a/backport_all.sh b/backport_all.sh index 9f3bed7..8d75eab 100644 --- a/backport_all.sh +++ b/backport_all.sh @@ -10,18 +10,18 @@ export DEBFULLNAME="Johannes Ranke" text="Recompiled on etch for CRAN" -for i in rpy; do -#for i in boot cluster codetools foreign kernsmooth lattice mgcv nlme rodbc rpart survival vr littler rpy; do +#for i in rpy; do +for i in boot cluster codetools foreign kernsmooth lattice mgcv nlme rodbc rpart survival vr littler rpy; do cd $i rm -rf $i* rm *.deb apt-get source -t unstable $i cd $i-* - version=`dpkg-parsechangelog | grep ^Version | cut -f2 -d " "`~etchcran.2.8.0 + version=`dpkg-parsechangelog | grep ^Version | cut -f2 -d " "`~etchcran.2.8.1 dch -b -v $version -D etch-cran $text - sed -i '/^Build-Depends/s/r-base-dev (.*)/r-base-dev (>= 2.8.0-1~etchcran.0)/' debian/control - sed -i '/^Build-Depends-Indep/s/r-base-dev (.*)/r-base-dev (>= 2.8.0-1~etchcran.0)/' debian/control + sed -i '/^Build-Depends/s/r-base-dev (.*)/r-base-dev (>= 2.8.1-1~etchcran.0)/' debian/control + sed -i '/^Build-Depends-Indep/s/r-base-dev (.*)/r-base-dev (>= 2.8.1-1~etchcran.0)/' debian/control dch -a "debian/control: adapt build dependencies on r-base-dev to current backport" if [ ${i} == "rpy" ] diff --git a/backport_rkward.sh b/backport_rkward.sh index fdf64d9..8aa144c 100644 --- a/backport_rkward.sh +++ b/backport_rkward.sh @@ -19,10 +19,10 @@ for i in rkward; do rm *.deb apt-get source $i cd $i-* - version=`dpkg-parsechangelog | grep ^Version | cut -f2 -d " "`~etchcran.2.8.0 + version=`dpkg-parsechangelog | grep ^Version | cut -f2 -d " "`~etchcran.2.8.1 dch -b -v $version -D etch-cran $text - sed -i '/^Build-Depends/s/r-base-dev (.*)/r-base-dev (>= 2.8.0-1~etchcran.0)/' debian/control + sed -i '/^Build-Depends/s/r-base-dev (.*)/r-base-dev (>= 2.8.1-1~etchcran.0)/' debian/control dch -a "debian/control: adapt build dependencies on r-base-dev to current backport" sed -i '/^#include "Rdevices.h"/d' rkward/rbackend/rembedinternal.cpp |