summaryrefslogtreecommitdiff
path: root/backport_jags.sh
diff options
context:
space:
mode:
Diffstat (limited to 'backport_jags.sh')
-rw-r--r--backport_jags.sh44
1 files changed, 0 insertions, 44 deletions
diff --git a/backport_jags.sh b/backport_jags.sh
deleted file mode 100644
index f3a2987..0000000
--- a/backport_jags.sh
+++ /dev/null
@@ -1,44 +0,0 @@
-#!/bin/bash
-
-# Script to automate backporting jags for CRAN
-
-# Author: Johannes Ranke <jranke@uni-bremen.de>
-
-# 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-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
-if [ $? -ne 0 ]; then
- exit
-fi
-
-cd ..

Contact - Imprint