1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
Updating to a new upstream release
==================================
This packaging makes use of uscan from devscripts and git-buildpackage. The
minimum required versions of those are:
- devscripts (>= 2.14.5~)
- git-buildpackage (>= 0.6.13~)
Having those in place you can follow the instructions below..
0) Make sure upstream sure upstream's repository is added as a remote
# git remote add upstream git://github.com/twigphp/Twig.git
1) Fetch upstream's tags
# git fetch upstream --tags
2) Download and import upstream's source with git-buildpackage
# gbp import-orig --sign-tags --upstream-vcs-tag=v<VERSION> --uscan
3) ...and of course don't forget to update debian/changelog
|