blob: 3ee818782c31c0ef9943bc28d2c7c0b448e42325 (
plain) (
tree)
|
|
#!/bin/bash
# SVN: $Id$
# Script to automate building backports from Dirks r-base packages to etch.
# Depends: python-debian, edit_changelog.py
# Author: Johannes Ranke <jranke@uni-bremen.de>
# Comment: Doesn't currently work, since debian_bundle.changelog from
# python-debian throws an error with the changelog in r-base (message
# to pkg-python-debian-discuss on December 16 2006)
# Last Change: 2006 Dez 20
cd r-base
rm -rf *
apt-get source -t unstable r-base
cd r-base-*
python ../../edit_changelog.py
fakeroot dpkg-buildpackage
cd ../..
|