[gentoo-portage-dev] [PATCH 2/2] MEDIUM: misc-functions: Be more verbose when removing INSTALL_MASK glob

2015-04-19 Thread Bertrand Jaquin
From: Bertrand Jacquin bertr...@jacquin.bzh When glob are defined in INSTALL_MASK, no output is given on what file has been deleted. The following patch provide more information to user about what is actually removed. Example: # INSTALL_MASK='*.h' emerge -va1t x11-proto/xproto ..

[gentoo-portage-dev] [PATCH 1/2] MEDIUM: misc-functions: Be more quiet when removing non existing INSTALL_MASK

2015-04-19 Thread Bertrand Jaquin
From: Bertrand Jacquin bertr...@jacquin.bzh When FEATURES=nodoc noinfo noman is used, you will get the following output for every packages, even virtual that contain no file: # FEATURES=nodoc noinfo noman emerge -va1t virtual/cron .. Installing (1 of 1) virtual/cron-0::gentoo *

Re: [gentoo-portage-dev] [PATCH 2/2] MEDIUM: misc-functions: Be more verbose when removing INSTALL_MASK glob

2015-04-19 Thread Zac Medico
On 04/19/2015 03:35 PM, Bertrand Jaquin wrote: + find ${root} \( -path ${no_inst} -or -name ${no_inst} \) 2 /dev/null \ + | while read; do + __quiet_mode || einfo Removing /${REPLY#${root}} + rm -Rf ${REPLY} /dev/null +

[gentoo-portage-dev] [PATCH] _doebuild_path: add fallback for temp PORTAGE_BIN_PATH (bug 547086)

2015-04-19 Thread Zac Medico
X-Gentoo-Bug: 547086 X-Gentoo-Bug-URL: https://bugs.gentoo.org/show_bug.cgi?id=547086 --- pym/portage/package/ebuild/doebuild.py | 19 +-- 1 file changed, 13 insertions(+), 6 deletions(-) diff --git a/pym/portage/package/ebuild/doebuild.py

[gentoo-portage-dev] [PATCH] UseManager: handle newlines for USE_EXPAND prefixes (bug 546512)

2015-04-19 Thread Zac Medico
From: Albert Safin xzf...@gmail.com Since commit b65e1fc5fe723bd07bf034f6e08878fa3eb033cb, USE_EXPAND prefixes affected subsequent lines of the same atom in package.use. Fixes: b65e1fc5fe72 (Support USE_EXPAND prefixes in package.use and relevant files) X-Gentoo-Bug: 546512 X-Gentoo-Bug-URL:

Re: [gentoo-portage-dev] [PATCHv2 2/2] MEDIUM: misc-functions: Be more verbose when removing INSTALL_MASK glob

2015-04-19 Thread Zac Medico
On 04/19/2015 05:01 PM, Bertrand Jaquin wrote: diff --git a/bin/misc-functions.sh b/bin/misc-functions.sh index 36a3bb8..4c37f10 100755 --- a/bin/misc-functions.sh +++ b/bin/misc-functions.sh @@ -276,7 +276,13 @@ install_mask() { # we also need to handle globs (*.a, *.h,

Re: [gentoo-portage-dev] [PATCHv2 2/2] MEDIUM: misc-functions: Be more verbose when removing INSTALL_MASK glob

2015-04-19 Thread Brian Dolbec
On Sun, 19 Apr 2015 20:26:35 -0700 Zac Medico zmed...@gentoo.org wrote: On 04/19/2015 05:01 PM, Bertrand Jaquin wrote: diff --git a/bin/misc-functions.sh b/bin/misc-functions.sh index 36a3bb8..4c37f10 100755 --- a/bin/misc-functions.sh +++ b/bin/misc-functions.sh @@ -276,7 +276,13 @@