[r-backports] / backport_others.sh Repository:
ViewVC logotype

View of /backport_others.sh

Parent Directory Parent Directory | Revision Log Revision Log


Revision 88 - (download) (as text) (annotate)
Sat May 18 13:19:21 2013 UTC (3 days, 10 hours ago) by ranke
File size: 2130 byte(s)
Updates of build scripts for backport of 3.0.1 to squeeze

# Author: Johannes Ranke <jranke@uni-bremen.de>

# Run with (requires sudo configuration on Debian)
# sudo -E ./backport_others.sh

# Preconditions: - shell variables DIST and ARCH
#                - pbuilder chroot set up (see README)
#                - current R backport in /etc/apt/sources/list of pbuilder chroot
#                - sid sources in /etc/apt/sources/list
#                - ssed and cdbs installed (and maybe more)
#                - Edit R version and the sed scripts below (don't forget
#                  distribution name) to the appropriate version of R
#                - Set the R version

# R version against which the software is compiled
Rversion=3.0.1
reposversion="cran3"

echo Distribution is $DIST
echo Architecture is $ARCH

text="Recompiled on $DIST for CRAN"
rbasedev="r-base-dev (>= $Rversion~$DIST$reposversion.0)"

# Update the Package listings of the host system
apt-get update
# Update the pbuilder chroot
pbuilder update

# When doing a new repository, lattice, r-cran-mass and survival have to be
# built first, then nlme and rmatrix, then the rest

# single package:
for i in r-cran-rjags; do
# squeeze/wheezy packages:
#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 littler rpy rpy2 rkward r-cran-rjags; 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-$reposversion $text

    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-$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

Johannes Ranke
ViewVC Help
Powered by ViewVC 1.0.1