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 29 30 31
|
This package is maintained using `git` and `git-buildpackage`. The repository
is kept on Debian Salsa: https://salsa.debian.org/debian/imapproxy
Branches
--------
The branches are named per [DEP-14] with the default packaging branch being
`debian/unstable` (rather than `debian/master`).
The `pristine-tar` branch is used by the `pristine-tar` utility. It contains
the data (besides that in the `upstream/latest` branch) necessary to exactly
reconstruct the binary orig tarball.
The `upstream/latest` branch contains the unpacked contents of the orig
tarball.
[DEP-14]: https://dep-team.pages.debian.net/deps/dep14/
Patches
-------
Patches are stored "unapplied". Specifically, they are in `quilt` format in
the `debian/patches` directory.
Git Hooks
---------
A .git/hooks/pre-commit script like this will ensure that `wrap-and-sort` is
run before each commit, to keep things sorted and minimize diffs:
#!/bin/sh
wrap-and-sort --wrap-always --trailing-comma
|