[gentoo-dev] Re: Importance of SLOTs on Java dependencies

2015-04-19 Thread Ryan Hill
On Wed, 8 Apr 2015 16:25:20 +0100 James Le Cuirot ch...@gentoo.org wrote: On Wed, 8 Apr 2015 17:10:30 +0200 Patrice Clement monsie...@gentoo.org wrote: Tuesday 07 Apr 2015 20:41:05, Pacho Ramos wrote : Wouldn't be possible to show a repoman warning when a dependency on any

RE: [gentoo-dev] Re: bug-wrangling (was: [warning] the bug queue has 111 bugs)

2015-04-19 Thread Franz Fellner
Ian Stakenvicius wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA256 On 17/04/15 12:13 PM, Franz Fellner wrote: Alex Alexander wrote: Our bug queue has 111 bugs! If you have some spare time, please help assign/sort a few bugs. To view the bug queue, click here:

[gentoo-dev] Automated Package Removal and Addition Tracker, for the week ending 2015-04-19 23:59 UTC

2015-04-19 Thread Robin H. Johnson
The attached list notes all of the packages that were added or removed from the tree, for the week ending 2015-04-19 23:59 UTC. Removals: app-vim/xolox-misc 2015-04-13 18:50:36 radhermit net-im/pymsn-t 2015-04-14 19:55:51 mrueg net-im/pebrot

[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-dev] Last rites: dev-ruby/json_pure

2015-04-19 Thread Hans de Graaff
# Hans de Graaff gra...@gentoo.org (19 Apr 2015) # Pure-ruby implementation of dev-ruby/json for uses where a compiled # version is not possible. This implementation is not needed on Gentoo # and slower than the compiled version, so all packages should depend # on dev-ruby/json instead. Nothing

[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 @@