1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 14:42:19 +02:00
tldr/pages/linux/gbp.md
Lena 8d3737dcbf
pages/*: add < > around links in example descriptions (#10594)
* pages/*: add `< >` around links in example descriptions

* Apply suggestions from code review

Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>

* apm: add `< >` to the English page

---------

Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
2023-09-10 18:51:33 +05:30

818 B

gbp

A system to integrate the Debian package build system with Git. More information: http://honk.sigxcpu.org/projects/git-buildpackage/manual-html/gbp.html.

  • Convert an existing Debian package to gbp:

gbp import-dsc {{path/to/package.dsc}}

  • Build the package in the current directory using the default builder (debuild):

gbp buildpackage -jauto -us -uc

  • Build a package in a pbuilder environment for Debian Bullseye:

DIST={{bullseye}} ARCH={{amd64}} gbp buildpackage -jauto -us -uc --git-builder={{git-pbuilder}}

gbp buildpackage -jauto -us -uc --changes-options={{-S}}

  • Import a new upstream release:

gbp import-orig --pristine-tar {{path/to/package.tar.gz}}