mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00
debchange, debuild, dget, quilt: add pages (#4022)
This commit is contained in:
parent
5ddf587e3a
commit
20f4b56734
4 changed files with 76 additions and 0 deletions
28
pages/common/quilt.md
Normal file
28
pages/common/quilt.md
Normal file
|
@ -0,0 +1,28 @@
|
|||
# quilt
|
||||
|
||||
> Tool to manage a series of patches.
|
||||
> More information: <https://savannah.nongnu.org/projects/quilt>.
|
||||
|
||||
- Import an existing patch from a file:
|
||||
|
||||
`quilt import {{path/to/filename.patch}}`
|
||||
|
||||
- Create a new patch:
|
||||
|
||||
`quilt new {{filename.patch}}`
|
||||
|
||||
- Add a file to the current patch:
|
||||
|
||||
`quilt add {{path/to/file}}`
|
||||
|
||||
- After editing the file, refresh the current patch with the changes:
|
||||
|
||||
`quilt refresh`
|
||||
|
||||
- Apply all the patches in the series file:
|
||||
|
||||
`quilt push -a`
|
||||
|
||||
- Remove all applied patches:
|
||||
|
||||
`quilt pop -a`
|
16
pages/linux/debchange.md
Normal file
16
pages/linux/debchange.md
Normal file
|
@ -0,0 +1,16 @@
|
|||
# debchange
|
||||
|
||||
> Tool for maintenance of the debian/changelog file in a Debian source package.
|
||||
> More information: <https://manpages.debian.org/debchange>.
|
||||
|
||||
- Add a new version for a non-maintainer upload to the changelog:
|
||||
|
||||
`debchange --nmu`
|
||||
|
||||
- Add a changelog entry to the current version:
|
||||
|
||||
`debchange --append`
|
||||
|
||||
- Add a changelog entry to close the bug with specified ID:
|
||||
|
||||
`debchange --closes {{bug_id}}`
|
16
pages/linux/debuild.md
Normal file
16
pages/linux/debuild.md
Normal file
|
@ -0,0 +1,16 @@
|
|||
# debuild
|
||||
|
||||
> Tool to build a Debian package from source.
|
||||
> More information: <https://manpages.debian.org/debuild>.
|
||||
|
||||
- Build the package in the current directory:
|
||||
|
||||
`debuild`
|
||||
|
||||
- Build a binary package only:
|
||||
|
||||
`debuild -b`
|
||||
|
||||
- Do not run lintian after building the package:
|
||||
|
||||
`debuild --no-lintian`
|
16
pages/linux/dget.md
Normal file
16
pages/linux/dget.md
Normal file
|
@ -0,0 +1,16 @@
|
|||
# dget
|
||||
|
||||
> Download Debian packages.
|
||||
> More information: <https://manpages.debian.org/dget>.
|
||||
|
||||
- Download a binary package:
|
||||
|
||||
`dget {{package_name}}`
|
||||
|
||||
- Download and extract a package source from its .dsc file:
|
||||
|
||||
`dget {{http://deb.debian.org/debian/pool/main/h/haskell-tldr/haskell-tldr_0.4.0-2.dsc}}`
|
||||
|
||||
- Download a package source tarball from its .dsc file but don't extract it:
|
||||
|
||||
`dget -d {{http://deb.debian.org/debian/pool/main/h/haskell-tldr/haskell-tldr_0.4.0-2.dsc}}`
|
Loading…
Add table
Reference in a new issue