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
|
Debian packaging for https-everywhere
-------------------------------------
This packages uses snapshots of the upstream Git repository as sources.
It follows git-buildpackage advices as on:
<http://honk.sigxcpu.org/projects/git-buildpackage/manual-html/gbp.import.html#GBP.IMPORT.UPSTREAM.GIT.NOTARBALL>
The tarball created from Git is recorded using pristine-tar.
A quick summary of how one can update the Debian packaging of
https-everywhere, assuming that one already has the appropriate
build-dependencies, `devscripts`, `pristine-tar`, and `git-buildpackage`
installed. VERSION is assumed to be the new upstream version:
gbp clone git+ssh://git.debian.org/git/pkg-mozext/https-everywhere.git
cd https-everywhere
git remote add tpo-upstream https://git.torproject.org/https-everywhere.git
git fetch tpo-upstream
git tag -v $VERSION
git checkout upstream
git merge --ff-only $VERSION
git tag upstream/$VERSION
git checkout master
git merge upstream/$VERSION
[ Make here some adaptations, like updating debian/patches, if needed ]
gbp buildpackage
|