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

View of /backport_jags.sh

Parent Directory Parent Directory | Revision Log Revision Log


Revision 73 - (download) (as text) (annotate)
Sun Oct 2 05:43:42 2011 UTC (19 months, 3 weeks ago) by ranke
File size: 1292 byte(s)
Updated backport script.

#!/bin/bash

# Script to automate backporting jags for CRAN

# 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_r-base.sh

# Preconditions: - shell variables DIST and ARCH
#                - sid sources in /etc/apt/sources/list
#                - cdbs installed (and maybe more)

export DEBEMAIL="jranke@uni-bremen.de"
export DEBFULLNAME="Johannes Ranke"
echo Distribution is $DIST
echo Architecture is $ARCH

if [ -d jags-* ]
then
    rm -rf `ls -d jags-*`
fi

apt-get update
apt-get source jags

cd jags-*

# Old version
oldversion=`dpkg-parsechangelog | grep ^Version | cut -f2 -d " "`
cranversion=$oldversion"~"$DIST"cran.0"

echo Old version is $oldversion
echo CRAN version is $cranversion

# Add new version to changelog
dch -v "${cranversion}" --force-distribution -D $DIST-cran -b "Backport from Debian unstable to Debian $DIST"

# Reverts for squeeze 

pbuilder update
pdebuild --debbuildopts '-sa' --buildresult /home/ranke/svn/website/www/ranke/r-cran/$DIST-cran/ -- --distribution $DIST --basetgz /var/cache/pbuilder/$DIST-$ARCH-base.tgz --aptcache /var/cache/pbuilder/$DIST-$ARCH/aptcache --buildplace /var/cache/pbuilder/$DIST-$ARCH/build
if [ $? -ne 0 ]; then
    exit 
fi

cd ..

Johannes Ranke
ViewVC Help
Powered by ViewVC 1.0.1