commit: 445784f2cd9529ad03712d8d4b85784401d8b863
Author: Bertrand Jacquin <bertrand <AT> jacquin <DOT> bzh>
AuthorDate: Tue Apr 30 18:09:31 2019 +0000
Commit: Zac Medico <zmedico <AT> gentoo <DOT> org>
CommitDate: Tue Apr 30 18:55:26 2019 +0000
URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=445784f2
__dyn_install: print category before package name
It is more common in gentoo to see ${CATEGORY}/${PF} rather than ${PF}
followed by ${CATEGORY}.
Closes: https://github.com/gentoo/portage/pull/423
Signed-off-by: Zac Medico <zmedico <AT> gentoo.org>
bin/phase-functions.sh | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/bin/phase-functions.sh b/bin/phase-functions.sh
index ee07ea0f9..e6380f554 100644
--- a/bin/phase-functions.sh
+++ b/bin/phase-functions.sh
@@ -592,7 +592,7 @@ __dyn_install() {
fi
__vecho
- __vecho ">>> Install ${PF} into ${D} category ${CATEGORY}"
+ __vecho ">>> Install ${CATEGORY}/${PF} into ${D}"
#our custom version of libtool uses $S and $D to fix
#invalid paths in .la files
export S D
@@ -613,7 +613,7 @@ __dyn_install() {
__ebuild_phase src_install
>> "$PORTAGE_BUILDDIR/.installed" || \
die "Failed to create $PORTAGE_BUILDDIR/.installed"
- __vecho ">>> Completed installing ${PF} into ${D}"
+ __vecho ">>> Completed installing ${CATEGORY}/${PF} into ${D}"
__vecho
__ebuild_phase post_src_install