summaryrefslogtreecommitdiff
path: root/backport_others
diff options
context:
space:
mode:
authorJohannes Ranke <jranke@uni-bremen.de>2017-03-11 13:48:58 +0100
committerJohannes Ranke <jranke@uni-bremen.de>2017-03-11 13:48:58 +0100
commit7430f108c3d9e07871c66daedcbce4aa2f5ff9a7 (patch)
treecb160bb17d367d09326663b1bdbab33445d8a6a0 /backport_others
parent995e65c8ed9d66ed6206c47f01ef2ef503bf790e (diff)
Support stretch (testing) instead of wheezy (oldstable)
Diffstat (limited to 'backport_others')
-rwxr-xr-xbackport_others17
1 files changed, 12 insertions, 5 deletions
diff --git a/backport_others b/backport_others
index faf604c..c2fa8c1 100755
--- a/backport_others
+++ b/backport_others
@@ -3,11 +3,15 @@
# Author: Johannes Ranke <jranke@uni-bremen.de>
# Script to automate backporting for CRAN
-# Make sure the R version in ./backport is correctly set and the pbuilder chroot is updated
+# Make sure the R version in ./backport is correctly set
+
+# Creates a source package and binary packages for the following architecture
+ARCH=i386
+export ARCH
usage()
{
-echo "Usage: ./backport_others [options] wheezy|jessie"
+echo "Usage: ./backport_others [options] stretch|jessie"
echo "Options:"
echo " -s Skip apt-get update/upgrade and pbuilder update"
}
@@ -40,17 +44,20 @@ if [ "$skip" = false ]
then
sudo apt-get update
sudo apt-get upgrade
- sudo -E pbuilder update
+ sudo -E pbuilder update \
+ --distribution $DIST \
+ --basetgz /var/cache/pbuilder/$DIST-$ARCH-base.tgz \
+ --aptcache /var/cache/pbuilder/$DIST-$ARCH/aptcache
fi
# Validate distribution argument
-if [ $DIST != "wheezy" ] && [ $DIST != "jessie" ]; then usage; exit 1; fi
+if [ $DIST != "stretch" ] && [ $DIST != "jessie" ]; then usage; exit 1; fi
export DIST
# When doing a new repository, lattice, r-cran-mass and survival have to be
# built first, then nlme and rmatrix, then the rest
-# Packages to backport to wheezy/jessie (without rpy2):
+# Packages to backport (without rpy2):
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 rkward r-cran-rjags; do
./backport -s $i $DIST

Contact - Imprint