diff options
-rw-r--r-- | README | 4 | ||||
-rw-r--r-- | backport_recommended_etch.sh | 3 | ||||
-rw-r--r-- | build_recommended_etch.sh | 2 |
3 files changed, 7 insertions, 2 deletions
@@ -0,0 +1,4 @@ +The command used for building the packages is +fakeroot dpkg-buildpackage > ../build_log_r-base_i386 2> ../build_errors_r-base_i386 + +Didn't figure out how to do this with tee yet... diff --git a/backport_recommended_etch.sh b/backport_recommended_etch.sh index 66576bb..6799677 100644 --- a/backport_recommended_etch.sh +++ b/backport_recommended_etch.sh @@ -14,9 +14,10 @@ text="Recompiled on etch for CRAN" for i in boot cluster codetools foreign kernsmooth lattice mgcv nlme rcompgen rpart survival vr; do cd $i rm -rf $i* + rm *.deb apt-get source -t unstable $i cd $i-* - version=`dpkg-parsechangelog | grep ^Version | cut -f2 -d " "`~etchcran.1 + version=`dpkg-parsechangelog | grep ^Version | cut -f2 -d " "`~etchcran.2.6.0 dch -b -v $version -D etch-cran $text fakeroot dpkg-buildpackage -sa cd ../.. diff --git a/build_recommended_etch.sh b/build_recommended_etch.sh index 3dcfc09..2c81392 100644 --- a/build_recommended_etch.sh +++ b/build_recommended_etch.sh @@ -16,7 +16,7 @@ for i in boot cluster codetools foreign kernsmooth lattice mgcv nlme rcompgen rp rm *.deb apt-get source -t unstable $i cd $i-* - version=`dpkg-parsechangelog | grep ^Version | cut -f2 -d " "`~etchcran.1 + version=`dpkg-parsechangelog | grep ^Version | cut -f2 -d " "`~etchcran.2.6.0 dch -b -v $version -D etch-cran $text fakeroot dpkg-buildpackage -B cd ../.. |