Gentoo Archives: gentoo-commits

From: Zac Medico <zmedico@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/portage:master commit in: bin/
Date: Tue, 30 Apr 2019 18:56:25
Message-Id: 1556650526.445784f2cd9529ad03712d8d4b85784401d8b863.zmedico@gentoo
1 commit: 445784f2cd9529ad03712d8d4b85784401d8b863
2 Author: Bertrand Jacquin <bertrand <AT> jacquin <DOT> bzh>
3 AuthorDate: Tue Apr 30 18:09:31 2019 +0000
4 Commit: Zac Medico <zmedico <AT> gentoo <DOT> org>
5 CommitDate: Tue Apr 30 18:55:26 2019 +0000
6 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=445784f2
7
8 __dyn_install: print category before package name
9
10 It is more common in gentoo to see ${CATEGORY}/${PF} rather than ${PF}
11 followed by ${CATEGORY}.
12
13 Closes: https://github.com/gentoo/portage/pull/423
14 Signed-off-by: Zac Medico <zmedico <AT> gentoo.org>
15
16 bin/phase-functions.sh | 4 ++--
17 1 file changed, 2 insertions(+), 2 deletions(-)
18
19 diff --git a/bin/phase-functions.sh b/bin/phase-functions.sh
20 index ee07ea0f9..e6380f554 100644
21 --- a/bin/phase-functions.sh
22 +++ b/bin/phase-functions.sh
23 @@ -592,7 +592,7 @@ __dyn_install() {
24 fi
25
26 __vecho
27 - __vecho ">>> Install ${PF} into ${D} category ${CATEGORY}"
28 + __vecho ">>> Install ${CATEGORY}/${PF} into ${D}"
29 #our custom version of libtool uses $S and $D to fix
30 #invalid paths in .la files
31 export S D
32 @@ -613,7 +613,7 @@ __dyn_install() {
33 __ebuild_phase src_install
34 >> "$PORTAGE_BUILDDIR/.installed" || \
35 die "Failed to create $PORTAGE_BUILDDIR/.installed"
36 - __vecho ">>> Completed installing ${PF} into ${D}"
37 + __vecho ">>> Completed installing ${CATEGORY}/${PF} into ${D}"
38 __vecho
39 __ebuild_phase post_src_install