blob: d24ebad0db270d8dfb68e10f0dcbc413edcd7364 (
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 Dez 20
for i in boot cluster foreign kernsmooth lattice mgcv nlme rpart survival vr; do
cd $i
rm -rf *
apt-get source -t unstable r-cran-$i
cd $i-*
python ../../edit_changelog.py
fakeroot dpkg-buildpackage
cd ../..
done
|