1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
We describe here one way to work with the package sources.
Initialize cowbuilder:
sudo cowbuilder --create --distribution sid --mirror http://http.debian.net/debian --debootstrapopts "--keyring=/usr/share/keyrings/debian-archive-keyring.gpg" --basepath /var/cache/pbuilder/base-debian-sid.cow
Optionally update cowbuilder:
sudo cowbuilder --update --basepath /var/cache/pbuilder/base-debian-sid.cow
Clone the repository:
git clone git://gitorious.org/libntlm-dpkg/libntlm-dpkg.git
Build the package:
git-buildpackage --git-pristine-tar --git-builder="pdebuild --auto-debsign --pbuilder cowbuilder -- --twice --basepath /var/cache/pbuilder/base-debian-sid.cow"
If all goes well, you should have newly built packages in
/var/cache/pbuilder/result/.
Update the package to a new upstream release (don't forget debian/changelog):
git-import-orig --pristine-tar /path/to/new-release.tar.gz
|