Re: [gentoo-dev] RFC: media-sound/xmms2/xmms2-0.7.ebuild

2010-06-29 Thread Mike Frysinger
if [[ -z $1 ]]; then either lose the quotes or lose the double brackets. hint: the former. echo !!! xmms2_flag() called without a parameter. 2 echo !!! xmms2_flag() USEFLAG [xmms2_flagname] 2 use eerror or die if use $1; then USE

[gentoo-dev] [OT] h v l

2010-06-29 Thread Mike Frysinger
On Monday, June 28, 2010 11:21:07 Brian Harring wrote: That is the question. If the only correct answer is it must be the right technical solution always we'd theoretically be running hurd rather than linux after all huh ? since when has the vapor Hurd ever been technically superior to Linux

Re: [gentoo-dev] [OT] h v l

2010-06-29 Thread Luis Araujo
On 06/29/2010 02:27 PM, Mike Frysinger wrote: On Monday, June 28, 2010 11:21:07 Brian Harring wrote: That is the question. If the only correct answer is it must be the right technical solution always we'd theoretically be running hurd rather than linux after all huh ? since when

Re: [gentoo-dev] RFC: media-sound/xmms2/xmms2-0.7.ebuild

2010-06-29 Thread Łukasz Michalik
On 02:24 2010-06-29 -0400, Mike Frysinger wrote: --destdir=${D} \ you need to give the DESTDIR to configure ? no wonder xmms2 sucks It's not a need -- with waf destdir can be set at either configure or install time. -- Pozdrawiam, Łukasz P. Michalik

Re: [gentoo-dev] Adding --as-needed to LDFLAGS in profiles/default/linux/make.defaults

2010-06-29 Thread Ciaran McCreesh
On Tue, 29 Jun 2010 05:30:24 +0200 Jeroen Roovers j...@gentoo.org wrote: On Mon, 28 Jun 2010 15:05:19 +0100 Ciaran McCreesh ciaran.mccre...@googlemail.com wrote: You appear to be assuming that those pushing the --as-needed solution have it finished. This is far from the case. There's still

Re: [gentoo-dev] Adding --as-needed to LDFLAGS in profiles/default/linux/make.defaults

2010-06-29 Thread Alex Alexander
On Tue, Jun 29, 2010 at 08:23:40AM +0100, Ciaran McCreesh wrote: On Tue, 29 Jun 2010 05:30:24 +0200 Jeroen Roovers j...@gentoo.org wrote: On Mon, 28 Jun 2010 15:05:19 +0100 Ciaran McCreesh ciaran.mccre...@googlemail.com wrote: You appear to be assuming that those pushing the --as-needed

[gentoo-dev] Council manifesto for jmbsvicetto

2010-06-29 Thread Jorge Manuel B. S. Vicetto
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi. With my apologies for being late, you can find my manifesto for the current Council election in woodpecker[1]. Please feel free to ask any questions you'd like to be answered. [1] - http://dev.gentoo.org/~jmbsvicetto/council201006-manifesto.xml

Re: [gentoo-dev] Council manifesto for jmbsvicetto

2010-06-29 Thread Theo Chatzimichos
On Tue, Jun 29, 2010 at 2:27 PM, Jorge Manuel B. S. Vicetto jmbsvice...@gentoo.org wrote: Please feel free to ask any questions you'd like to be answered. 1) Is it possible an election official to run for the council? If so, I think this should change 2) Why did you mention that you were KDE HT

Re: [gentoo-dev] Council manifesto for jmbsvicetto

2010-06-29 Thread Tom Knight
On Tue, Jun 29, 2010 at 02:49:44PM +0300, Theo Chatzimichos wrote: On Tue, Jun 29, 2010 at 2:27 PM, Jorge Manuel B. S. Vicetto jmbsvice...@gentoo.org wrote: Please feel free to ask any questions you'd like to be answered. 1) Is it possible an election official to run for the council? If so,

Re: [gentoo-dev] RFC: media-sound/xmms2/xmms2-0.7.ebuild (v2)

2010-06-29 Thread Sergei Trofimovich
--destdir=${D} \ you need to give the DESTDIR to configure ? no wonder xmms2 sucks Completely my fault. Moreover it ignores the option in configure phase (same with '--without-ldconfig') ${CTARGET:+--with-target-platform=${CTARGET}} i highly suspect

Re: [gentoo-dev] Adding --as-needed to LDFLAGS in profiles/default/linux/make.defaults

2010-06-29 Thread David Leverton
On Monday 28 June 2010 02:09:44 Nirbheek Chauhan wrote: Hello everyone, I'm sure at least half of you are thinking Oh no, not this again..., and I agree. However, I'm /also/ thinking Why the heck haven't we done this yet? [...] /If/ you're¹ going to insist on doing this, could you please

Re: [gentoo-dev] Adding --as-needed to LDFLAGS in profiles/default/linux/make.defaults

2010-06-29 Thread David Leverton
On Tuesday 29 June 2010 09:46:52 Alex Alexander wrote: If the community feels their choice, albeit not perfect, will help the project, you have to respect that. That is, if you want to be part of the community :) I see your point to some extent, but the concern is that such decisions might

Re: [gentoo-dev] Adding --as-needed to LDFLAGS in profiles/default/linux/make.defaults

2010-06-29 Thread Alex Alexander
On Tue, Jun 29, 2010 at 06:25:50PM +0100, David Leverton wrote: On Tuesday 29 June 2010 09:46:52 Alex Alexander wrote: If the community feels their choice, albeit not perfect, will help the project, you have to respect that. That is, if you want to be part of the community :) I see your

Re: [gentoo-dev] RFC: media-sound/xmms2/xmms2-0.7.ebuild (v2)

2010-06-29 Thread Mike Frysinger
return 0 nowhere do you check the return value of xmms2_flag, so not much point in returning a value (also, the eerror path no longer returns 1) ${CHOST:+--with-target-platform=${CHOST}} \ CHOST is guaranteed to always be set, so no need for the ${VAR:+} magic

Re: [gentoo-dev] RFC: media-sound/xmms2/xmms2-0.7.ebuild (v3)

2010-06-29 Thread Sergei Trofimovich
/me amends. Third one! Is there way to declare locals directly in 'for' loops? -- Sergei # Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ EAPI=2 inherit base eutils python MY_P=${P}DrNo DESCRIPTION=X(cross)platform

Re: [gentoo-dev] RFC: media-sound/xmms2/xmms2-0.7.ebuild (v3)

2010-06-29 Thread Mike Frysinger
On Tuesday, June 29, 2010 15:44:56 Sergei Trofimovich wrote: Is there way to declare locals directly in 'for' loops? no -mike signature.asc Description: This is a digitally signed message part.

Re: [gentoo-dev] Council manifesto for jmbsvicetto

2010-06-29 Thread Sebastian Pipping
Hello Jorge, I stumbled upon this in the section on community related beliefs of yours: [T]he Gentoo community is made of its members and they are what they are. We have a mostly technical adult male community, including a few people with rough or challenging social skills. How do you

Re: [gentoo-dev] Council 201006 elections - third election official needed

2010-06-29 Thread Roy Bamford
On 2010.06.25 10:47, Ulrich Mueller wrote: Hello fellow developers, unfortunately one of the officials (tove) for the present Council elections has stepped down. Therefore one election official is now missing. Any interested dev please contact us per e-mail at electi...@gentoo.org or in

Re: [gentoo-dev] Council manifesto of sping

2010-06-29 Thread Sebastian Pipping
Arun, On 06/22/10 07:13, Arun Raghavan wrote: On reading again, you do have suggestions on how you would deal with most of what you've spoken. The only one that I think could use more details (other than all the references to tone which I think we should let rest for a while) is Opening up

Re: [gentoo-dev] Council manifesto for jmbsvicetto

2010-06-29 Thread Jorge Manuel B. S. Vicetto
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi Sebastian. On 29-06-2010 20:06, Sebastian Pipping wrote: Hello Jorge, I stumbled upon this in the section on community related beliefs of yours: [T]he Gentoo community is made of its members and they are what they are. We have a mostly