From ff10aaf3a5acea0a352ed2c6a8a1e7fb56817e53 Mon Sep 17 00:00:00 2001 From: Sylvestre Ledru Date: Sun, 17 Jan 2021 15:19:33 +0100 Subject: [PATCH] rename manpages to have them coinstalable --- src/coreutils/debian/README.Debian | 4 +++- src/coreutils/debian/rules | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/coreutils/debian/README.Debian b/src/coreutils/debian/README.Debian index ca522447e..bef40d552 100644 --- a/src/coreutils/debian/README.Debian +++ b/src/coreutils/debian/README.Debian @@ -6,6 +6,8 @@ crates.io. As we don't want to package them separately, we have to do some voodoo magic to make it more maintainable but not following the typical debcargo process. +To be coinstallable with GNU coinstallable, manpages are called rust-$PROGRAM. + Reminder ======== @@ -44,4 +46,4 @@ tar zcvf rust-coreutils_8.0~0.0.2.orig.tar.gz coreutils/ We are following the version of the GNU version as we have some packages having an explicit minimal dep (ex: initramfs-tools-core, xinit, initscripts) - -- Sylvestre Ledru , Sat, 16 Jan 2021 19:33:37 +0100 + -- Sylvestre Ledru , Sun, 17 Jan 2021 15:19:03 +0100 diff --git a/src/coreutils/debian/rules b/src/coreutils/debian/rules index 0fdf4aec6..e63c6bce8 100755 --- a/src/coreutils/debian/rules +++ b/src/coreutils/debian/rules @@ -16,5 +16,5 @@ override_dh_auto_install: CARGO_HOME=$(shell pwd)/debian/cargo_home DESTDIR=$(CURDIR)/debian/tmp/ make install for f in $(CURDIR)/debian/tmp/usr/local/bin/*; do \ filename=$$(basename $$f); \ - help2man $$f > docs/$$filename.1; \ + help2man $$f > docs/rust-$$filename.1; \ done -- 2.39.5