Codebase list rust-bzip2 / 160f911
Exa - man & completion Sylvestre Ledru 2 years ago
6 changed file(s) with 27 addition(s) and 8 deletion(s). Raw diff Collapse all Expand all
0 rust-exa (0.10.1-2) UNRELEASED-FIXME-AUTOGENERATED-DEBCARGO; urgency=medium
1
2 * Install the manpages and completions (Closes: #996059)
3 * Adjust the description (Closes: #996081)
4
5 -- Sylvestre Ledru <sylvestre@debian.org> Sun, 10 Oct 2021 22:54:15 +0200
6
07 rust-exa (0.10.1-1) unstable; urgency=medium
18
29 * Package exa 0.10.1 from crates.io using debcargo 2.4.4-alpha.0
66
77 [source]
88 section = "utils"
9 build_depends = ["help2man"]
9 build_depends = ["pandoc", "bash-completion"]
1010
1111 [packages.bin]
1212 summary = "Modern replacement for ls"
1616 exa is an improved file lister with more features and better defaults.
1717 It uses colours to distinguish file types and metadata. It knows about
1818 symlinks, extended attributes, and Git. And it’s small, fast, and just
19 one single binary.
19 one single binary.
2020 """
2121
2222 [packages.lib]
23 # Disable because cannot find build-script-build (not sure where
23 # Disable because cannot find build-script-build (not sure where
2424 # this is coming from)
2525 # https://github.com/ogham/exa/issues/651
2626 test_is_broken = true
0 completion/completions.bash
0 ./target/*/release/exa usr/bin
1
00 debian/exa.1
1 debian/exa_colors.5
44 %:
55 dh $@ --buildsystem cargo
66
7 override_dh_install:
8 mkdir -p debian/exa/usr/share/fish/completions/ debian/exa/usr/share/zsh/vendor-completions/
9 cp -f completions/completions.fish debian/exa/usr/share/fish/completions/exa.fish
10 cp -f completions/completions.zsh debian/exa/usr/share/zsh/vendor-completions/_exa
11
12
713 override_dh_installman:
8 help2man \
9 --name exa \
10 --no-info \
11 --version-string $(DEB_VERSION_UPSTREAM) \
12 debian/exa/usr/bin/exa > debian/exa.1
14 pandoc --standalone -f markdown -t man man/exa.1.md > debian/exa.1
15 pandoc --standalone -f markdown -t man man/exa_colors.5.md > debian/exa_colors.5
16 # help2man \
17 # --name exa \
18 # --no-info \
19 # --version-string $(DEB_VERSION_UPSTREAM) \
20 # debian/exa/usr/bin/exa > debian/exa.1
1321 dh_installman -O--buildsystem=cargo
1422
1523 override_dh_auto_test: