diff options
author | Johannes Ranke <jranke@uni-bremen.de> | 2021-02-16 09:35:34 +0100 |
---|---|---|
committer | Johannes Ranke <jranke@uni-bremen.de> | 2021-02-16 09:35:34 +0100 |
commit | 9cabb4ef1aa5199cbc0f05b431558876b2aa23c4 (patch) | |
tree | f674b8cda7775d89e5f6e16d5eee6356cbb6c633 /backport | |
parent | 6bff052819893b184b7cc09fe0fc1331d3bd4279 (diff) |
Some updates
Diffstat (limited to 'backport')
-rwxr-xr-x | backport | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -5,7 +5,8 @@ ARCH=i386 export ARCH -# R version against which the software is compiled +# Iteration of the backport, for the case several backports of the same +# release are published iteration=0 # Where the buildresults should be stored and where to look for current backports @@ -14,7 +15,6 @@ rcrandir=/home/jranke/git/uni/website/www/ranke/r-cran # Author: Johannes Ranke <jranke@uni-bremen.de> # Preconditions: -# - up to date R version for packages depending on R # - sudo and pbuilder configuration (see README) # - sid sources in /etc/apt/sources/list # - dh-r installed (and maybe more) @@ -67,14 +67,14 @@ then sudo rm -rf `ls -d $pkg-*` fi -# Get current source from sid. If we want buildd-unstable, we need to remove -t sid +# Get current source if [ "$skip" = false ] then sudo apt-get update sudo apt-get upgrade fi -#sudo apt-get source $pkg -sudo apt-get source -t sid $pkg +#sudo apt-get source -t sid $pkg +sudo apt-get source $pkg # Copy sources to $DIST directory to enable parallel builds mkdir -p $DIST |