Re: [gentoo-dev] [PATCH 3/4] toolchain-funcs.eclass: Add tc-get-compiler-type()

2016-06-22 Thread Fabian Groffen
On 22-06-2016 22:06:53 +0200, Michał Górny wrote: > +# @FUNCTION: tc-get-compiler-type > +# @RETURN: keyword identifying the compiler: gcc, clang, unknown > +tc-get-compiler-type() { > + set -- $($(tc-getCPP "$@") -E -P - <<<"CPP_WORKS __GNUC__ __clang__") % echo "CPP_WORKS __GNUC__ __clang__"

Re: [gentoo-dev] [PATCH] git-r3.eclass: Make EGIT_LIVE_* associative arrays

2016-06-22 Thread Michael Orlitzky
On 06/22/2016 08:34 PM, Dan Douglas wrote: > On 06/22/2016 07:12 PM, Ulrich Mueller wrote: >>> On Wed, 22 Jun 2016, Dan Douglas wrote: >> >>> + [[ >>> + ( BASH_VERSINFO[0] -ge 4 || EAPI -ge 6 ) && >>> + $(declare -p "EGIT_${livevars[idx+1]}" 2>/dev/

Re: [gentoo-dev] [PATCH] git-r3.eclass: Make EGIT_LIVE_* associative arrays

2016-06-22 Thread Dan Douglas
On 06/22/2016 07:12 PM, Ulrich Mueller wrote: >> On Wed, 22 Jun 2016, Dan Douglas wrote: > >> +[[ >> +( BASH_VERSINFO[0] -ge 4 || EAPI -ge 6 ) && >> +$(declare -p "EGIT_${livevars[idx+1]}" 2>/dev/null) == >> 'declare -A'* >> +]]

Re: [gentoo-dev] [PATCH] git-r3.eclass: Make EGIT_LIVE_* associative arrays

2016-06-22 Thread Ulrich Mueller
> On Wed, 22 Jun 2016, Dan Douglas wrote: > + [[ > + ( BASH_VERSINFO[0] -ge 4 || EAPI -ge 6 ) && > + $(declare -p "EGIT_${livevars[idx+1]}" 2>/dev/null) == > 'declare -A'* > + ]] && ref=EGIT_${livevars[idx+1]}[\$PN] EAPI is not

[gentoo-dev] Re: [PATCH] git-r3.eclass: Make EGIT_LIVE_* associative arrays

2016-06-22 Thread Dan Douglas
Sorry I screwed up a commit --amend so it won't apply. Correct patch below, or PR here: https://github.com/gentoo/gentoo/pull/1723 From 77e19a7a4fd1cad13df3626d4ac3c436512dcb14 Mon Sep 17 00:00:00 2001 From: Dan Douglas Date: Wed, 22 Jun 2016 17:00:07 -0500 Subject: [PATCH] git-r3.eclass: Make EG

[gentoo-dev] [PATCH] git-r3.eclass: Make EGIT_LIVE_* associative arrays

2016-06-22 Thread Dan Douglas
This creates new associative arrays for each "live" variable if bash4 / eapi6 is available. Mainly for user convenience in a bashrc as an alternative to magic variable names. --- eclass/git-r3.eclass | 68 ++-- 1 file changed, 39 insertions(+), 29 de

[gentoo-dev] [PATCH 4/4] toolchain-funcs.eclass: Add helpful tc-is-{gcc,clang} wrappers

2016-06-22 Thread Michał Górny
--- eclass/toolchain-funcs.eclass | 14 ++ 1 file changed, 14 insertions(+) diff --git a/eclass/toolchain-funcs.eclass b/eclass/toolchain-funcs.eclass index 116bc43..00dec40 100644 --- a/eclass/toolchain-funcs.eclass +++ b/eclass/toolchain-funcs.eclass @@ -604,6 +604,20 @@ tc-get-comp

[gentoo-dev] [PATCH 3/4] toolchain-funcs.eclass: Add tc-get-compiler-type()

2016-06-22 Thread Michał Górny
Add a tc-get-compiler-type() function that can be used to identify the compiler being used, using the preprocessor defines. Alike gcc-*version() routines, it uses CPP (which in turn uses CC). The major usage would be applying compiler-specific quirks and limiting gcc version checks to compilers th

[gentoo-dev] [PATCH 2/4] toolchain-funcs.eclass: Assume CPP="$(tc-getCC) -E" when unset, #582822

2016-06-22 Thread Michał Górny
Modify the tc-getCPP and tc-getBUILD_CPP functions to use "$(tc-getCC) -E" (i.e. the C compiler's preprocessing call) instead of falling back to 'cpp'. This ensures that in environment with CC (and CXX) overriden the correct compiler is used rather than the one selected by gcc-config, which in turn

[gentoo-dev] [PATCH 1/4] toolchain-funcs.eclass: Fix _tc-getPROG with multi-parameter defaults

2016-06-22 Thread Michał Górny
Fix _tc-getPROG function to account correctly for default values that contain program name along with arguments, e.g. the default for CPP containing "$(CC) -E". --- eclass/toolchain-funcs.eclass | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/eclass/toolchain-funcs.eclass

[gentoo-dev] [PATCH 0/4] toolchain-funcs.eclass: fix for version checks (v2) + compiler identification

2016-06-22 Thread Michał Górny
Hello, everyone. Here's my second attempt at improving version checks in toolchain-funcs.eclass. Currently the functions use $(tc-getCPP) to determine gcc version. This doesn't trigger expected results when CC & CXX are overriden but CPP is not which is a common case -- it causes the eclass to fal

[gentoo-dev] [PATCH] distutils-r1.eclass: reset XDG env vars

2016-06-22 Thread Mike Gilbert
Bug: https://bugs.gentoo.org/577704 --- eclass/distutils-r1.eclass | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/eclass/distutils-r1.eclass b/eclass/distutils-r1.eclass index c545290..fb0362c 100644 --- a/eclass/distutils-r1.eclass +++ b/eclass/distutils-r1.eclass @@ -80,7

[gentoo-dev] Last-rites: dev-java/cacao

2016-06-22 Thread James Le Cuirot
# James Le Cuirot (22 Jun 2016) # Not practical as a system JVM and you'd be better off with # IcedTea. In-tree version is ancient. java-overlay version is newer # but not the latest. It can't be moved to the tree because # gnu-classpath-0.99 has packaging issues. Removal in 30 days.

Re: [gentoo-dev] L10N USE_EXPAND initial values

2016-06-22 Thread Ulrich Mueller
> On Wed, 22 Jun 2016, Ulrich Mueller wrote: >> What sort of changes will need to be made in ebuilds? I ask so I >> have a list of packages I can draw up that need this changed so I >> can get things done when everything's in place with the guide. > For the simple two- and three-letter langua

Re: [gentoo-dev] L10N USE_EXPAND initial values

2016-06-22 Thread Ulrich Mueller
> On Wed, 22 Jun 2016, Daniel Campbell wrote: > Sounds decent to me. Will any eclasses be affected? Certainly l10n.eclass will need some tweaking. > What sort of changes will need to be made in ebuilds? I ask so I > have a list of packages I can draw up that need this changed so I > can get

Re: [gentoo-dev] L10N USE_EXPAND initial values

2016-06-22 Thread Daniel Campbell
On 06/20/2016 11:19 PM, Ulrich Mueller wrote: > I have come up with an initial list of values for the L10N USE_EXPAND, > see patch included below. > > The plan would be to commit this to the tree, update the localization > guide at https://wiki.gentoo.org/wiki/Localization/Guide and send the > new