-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[`lintian`](https://lintian.debian.org/) is a tool for linting Debian packages to ensure they comply with Debian's standards. Now that we're releasing .deb packages for docsim we might as well do it correctly! - don't start package description with an article - don't include the full text of the GPL3 (link to it instead) - override prohibition on static linking (Go statically links binaries and lintian's detection system doesn't seem to make an exception, so we have to override that) - gzip the manpage - include an extended package description For future reference, to build the package locally and ensure it complies: $ goreleaser release --snapshot --skip-publish --clean && lintian dist/docsim_*amd64.deb
- Loading branch information
Showing
4 changed files
with
26 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
dist/ | ||
docsim | ||
manpages/*.gz |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ | ||
|
||
Files: * | ||
Copyright: © 2023 Harry R. Schwartz <hello@harryschwartz.com> and contributors | ||
License: GPL-3+ | ||
The full text of the GPL is distributed as ./LICENSE.md in docsim's source, | ||
and is distributed in /usr/share/common-licenses/GPL-3 on Debian systems. |