No binary gets installed. I suspect it is a missing install in src_install emake command. Reproducible: Always Steps to Reproduce: 1. emerge dstat 2. 3. Actual Results: No dstat binary Expected Results: dstat binary installed
commit 33d249d4b12616985c6b3b67d484e989827de983 Author: Guilherme Amadio <amadio@gentoo.org> Date: Tue Oct 22 10:18:33 2019 +0200 sys-apps/dstat: fix src_install() for prefix Using 'default' as done in the version bump made files get installed outside the prefix, directly into /usr. Package-Manager: Portage-2.3.78, Repoman-2.3.17 Signed-off-by: Guilherme Amadio <amadio@gentoo.org> diff --git a/sys-apps/dstat/dstat-0.7.4.ebuild b/sys-apps/dstat/dstat-0.7.4.ebuild index 66bbf59ec4a..491efbdb32a 100644 --- a/sys-apps/dstat/dstat-0.7.4.ebuild +++ b/sys-apps/dstat/dstat-0.7.4.ebuild @@ -40,7 +40,8 @@ src_prepare() { } src_install() { - default + emake DESTDIR="${ED}" + einstalldocs if use examples; then dodoc examples/{mstat,read}.py
The bug has been closed via the following commit(s): https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c4a088199cd63467f2d0e607735fbecbec761229 commit c4a088199cd63467f2d0e607735fbecbec761229 Author: Piotr Karbowski <slashbeast@gentoo.org> AuthorDate: 2019-10-24 19:51:52 +0000 Commit: Piotr Karbowski <slashbeast@gentoo.org> CommitDate: 2019-10-24 19:52:59 +0000 sys-apps/dstat: 0.7.4: add missing install target. Fixes broken src_install() introduced in commit 33d249d4b12616985c6b3b67d484e989827de983. Closes: https://bugs.gentoo.org/698456 Package-Manager: Portage-2.3.78, Repoman-2.3.17 Signed-off-by: Piotr Karbowski <slashbeast@gentoo.org> sys-apps/dstat/dstat-0.7.4.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
Oops, sorry about that.