summaryrefslogtreecommitdiff
path: root/backport_others.sh
diff options
context:
space:
mode:
Diffstat (limited to 'backport_others.sh')
-rw-r--r--backport_others.sh23
1 files changed, 13 insertions, 10 deletions
diff --git a/backport_others.sh b/backport_others.sh
index 9b66c63..dc74564 100644
--- a/backport_others.sh
+++ b/backport_others.sh
@@ -1,7 +1,7 @@
# Author: Johannes Ranke <jranke@uni-bremen.de>
-# On Debian I used to run this script as root. On Ubuntu I now run it with
-# sudo -E sh backport_others.sh
+# Run with (requires sudo configuration on Debian)
+# sudo -E ./backport_others.sh
# Preconditions: - shell variables DIST and ARCH
# - current R backport in /etc/apt/sources/list of pbuilder chroot
@@ -13,31 +13,34 @@
# R version against which the software is compiled
Rversion=3.0.0
+reposversion="cran3"
echo Distribution is $DIST
echo Architecture is $ARCH
text="Recompiled on $DIST for CRAN"
+rbasedev="r-base-dev (>= $Rversion~$DIST$reposversion.0)"
+echo $rbasedev
-apt-get update
+#apt-get update
pbuilder update
# single package:
-#for i in r-cran-rjags; do
+for i in boot; do
# lenny packages:
#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; do
-# squeeze packages:
-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 rkward; do
+# squeeze/wheezy packages:
+#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 rkward; do
apt-get source $i
cd $i-*
version=`dpkg-parsechangelog | grep ^Version | cut -f2 -d " "`~$DIST"cran".$Rversion
- dch -b -v $version --force-distribution -D $DIST-cran3 $text
+ dch -b -v $version --force-distribution -D $DIST-$reposversion $text
- ssed -i -R '/^Build-Depends/s/r-base-dev \(>= \..*?\)/r-base-dev (>= 3.0.0-1~squeezecran.0)/' debian/control
- ssed -i -R '/^Build-Depends-Indep/s/r-base-dev \(>= \..*?\)/r-base-dev (>= 3.0.0-1~squeezecran.0)/' debian/control
+ ssed -i -R "/^Build-Depends/s/r-base-dev \(>= .*?\)/$rbasedev/" debian/control
+ ssed -i -R "/^Build-Depends-Indep/s/r-base-dev \(>= .*?\)/$rbasedev/" debian/control
dch -a "debian/control: adapt build dependencies on r-base-dev to current backport"
- pdebuild --debbuildopts '-sa' --buildresult /home/ranke/svn/website/www/ranke/r-cran/$DIST-cran3/ -- --distribution $DIST --basetgz /var/cache/pbuilder/$DIST-$ARCH-base.tgz --aptcache /var/cache/pbuilder/$DIST-$ARCH/aptcache --buildplace /var/cache/pbuilder/$DIST-$ARCH/build
+ pdebuild --debbuildopts '-sa' --buildresult /home/ranke/svn/website/www/ranke/r-cran/$DIST-$reposversion/ -- --distribution $DIST --basetgz /var/cache/pbuilder/$DIST-$ARCH-base.tgz --aptcache /var/cache/pbuilder/$DIST-$ARCH/aptcache --buildplace /var/cache/pbuilder/$DIST-$ARCH/build
cd ..
done

Contact - Imprint