blob: 4e9a53a3551b99fa0a9fca19645000e087f69d29 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#!/bin/bash
# SVN: $Id$
# Script to automate building backports from Dirks r-cran-* packages to etch.
# Depends: python-debian, edit_changelog.py
# Author: Johannes Ranke <jranke@uni-bremen.de>
# Comment: First, a backport of R should be installed
# Last Change: 2006 Dec 22
for i in boot cluster foreign kernsmooth lattice mgcv nlme rpart survival vr; do
cd $i
rm -rf $i*
apt-get source -t unstable r-cran-$i
cd $i-*
python ../../edit_changelog.py
fakeroot dpkg-buildpackage
cd ../..
done
|