1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
|
Packaging using git
===================
The repository contains an appropriate debian/gbp.conf to build this package
using git-buildpackage. The debian branch contains the latest upstream versions
(for unstable, or experimental while a freeze is in progress). The debian-lenny
branch contains versions targeted for lenny, etc.
Here's how to build it:
git clone git://git.debian.org/git/pkg-telepathy/farstream.git
cd farstream
git checkout debian
git-buildpackage -us -uc
or for testing/stable branches like debian-lenny:
git clone git://git.debian.org/git/pkg-telepathy/farstream.git
cd farstream
git checkout debian-lenny
git-buildpackage -us -uc --git-debian-branch=debian-lenny
The branch 'upstream' is a copy of the contents of upstream tarballs. To import
upstream tarballs use:
git checkout debian
git-import-orig ~/farstream-0.x.tar.gz
The branch 'debian-patches' is 'upstream' plus any patches needed for Debian.
It should be rebased on 'upstream' after each upstream release:
git checkout debian-patches
git rebase upstream
The preferred way of adding patches is to cherry pick from an upstream
repository:
git remote add collabora \
git+ssh://git.collabora.co.uk/git/farstream.git
git fetch
git checkout debian-patches
git cherry-pick xxxxxxxxxxxxxx
git checkout debian
fakeroot debian/rules update-patches
|