Re: [gentoo-dev] Re: [gentoo-commits] gentoo-x86 commit in x11-libs/qt: ChangeLog qt-4.3.2.ebuild

2007-10-04 Thread Roy Marples
On Thu, 2007-10-04 at 05:03 +0100, Steve Long wrote: Donnie Berkholz wrote: spec=$(echo ${CHOST} | cut -d- -f3) You can do this without resort to an external process: IFS=- read _ _ spec _ $CHOST unset IFS - or you can do: IFS=- arr=($CHOST) unset IFS spec=${arr[2]} See, another

Re: [gentoo-dev] controlling src_test

2007-10-04 Thread Ravi Pinjala
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Ryan Hill wrote: There are several packages in portage (and even in base-system) that fail in src_test when userpriv/usersandbox is enabled or disabled. That is, some testsuites fail when run as root and some fail if not run as root. I'd like a

Re: [gentoo-dev] Re: [gentoo-commits] gentoo-x86 commit in x11-libs/qt: ChangeLog qt-4.3.2.ebuild

2007-10-04 Thread Donnie Berkholz
On 07:49 Thu 04 Oct , Roy Marples wrote: On Thu, 2007-10-04 at 05:03 +0100, Steve Long wrote: Donnie Berkholz wrote: spec=$(echo ${CHOST} | cut -d- -f3) You can do this without resort to an external process: IFS=- read _ _ spec _ $CHOST unset IFS - or you can do:

Re: [gentoo-dev] Re: [gentoo-commits] gentoo-x86 commit in x11-libs/qt: ChangeLog qt-4.3.2.ebuild

2007-10-04 Thread Roy Marples
On Thu, 2007-10-04 at 00:32 -0700, Donnie Berkholz wrote: Sure. If there's no requirement to stick to portable sh, why shouldn't we use whatever features of bash we like? You can use whatever bash specific features you like. Just don't expect them to behave entirely the same way across

Re: [gentoo-dev] Re: [gentoo-commits] gentoo-x86 commit in x11-libs/qt: ChangeLog qt-4.3.2.ebuild

2007-10-04 Thread Marijn Schouten (hkBst)
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Roy Marples wrote: On Thu, 2007-10-04 at 05:03 +0100, Steve Long wrote: Donnie Berkholz wrote: spec=$(echo ${CHOST} | cut -d- -f3) You can do this without resort to an external process: IFS=- read _ _ spec _ $CHOST unset IFS - or you can

Re: [gentoo-dev] Re: [gentoo-commits] gentoo-x86 commit in x11-libs/qt: ChangeLog qt-4.3.2.ebuild

2007-10-04 Thread Roy Marples
On Thu, 2007-10-04 at 11:53 +0200, Marijn Schouten (hkBst) wrote: See, another use of bash arrays just because you can? IFS=- set -- ${CHOST} spec=$2 Works fine in bash - and other shells. Do I understand correctly that this resets any arguments that might have been passed to the

Re: [gentoo-dev] New developer : Mike Pagano (mpagano)

2007-10-04 Thread Mart Raudsepp
On K, 2007-10-03 at 10:53 -0600, Joe Peterson wrote: Andrew Gaffney wrote: Denis Dupeyron wrote: Yes people, Mike is older than Uncle Seemant, and even older than me. But is he older than nerdboy? Do we have competition for the Crotchety Old Man title? Are we going to hear lots of

Re: [gentoo-dev] controlling src_test

2007-10-04 Thread Doug Goldstein
Ravi Pinjala wrote: Ryan Hill wrote: There are several packages in portage (and even in base-system) that fail in src_test when userpriv/usersandbox is enabled or disabled. That is, some testsuites fail when run as root and some fail if not run as root. I'd like a simple consistent

Re: [gentoo-dev] controlling src_test

2007-10-04 Thread Rémi Cardona
Ravi Pinjala a écrit : I, for one, would like to be able to control whether or not to run tests that take a huge amount of time to run. Some test suites are ridiculously comprehensive, and if we could have an option to disable only those, or even run a reduced test suite, that'd be pretty neat.

Re: [gentoo-dev] controlling src_test

2007-10-04 Thread Thomas Anderson
On Thursday 04 October 2007 09:36:29 Doug Goldstein wrote: Ravi Pinjala wrote: Ryan Hill wrote: There are several packages in portage (and even in base-system) that fail in src_test when userpriv/usersandbox is enabled or disabled. That is, some testsuites fail when run as

[gentoo-dev] Last rites: dev-php5/pecl-pdo*

2007-10-04 Thread Christian Hoffmann
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 # Christian Hoffmann [EMAIL PROTECTED] (04 Oct 2007) # Outdated (no releases since May 2006), buggy and possibly vulnerable # to security problems # Masked for removal in 30 days # replacement: USE=pdo emerge =dev-lang/php-5* dev-php5/pecl-pdo #

Re: [gentoo-dev] New developer : Mike Pagano (mpagano)

2007-10-04 Thread Josh Saddler
Andrew Gaffney wrote: Denis Dupeyron wrote: Yes people, Mike is older than Uncle Seemant, and even older than me. But is he older than nerdboy? Do we have competition for the Crotchety Old Man title? Are we going to hear lots of stories that start with when I was your age? Welcome Mike!

[gentoo-dev] Re: [gentoo-commits] gentoo-x86 commit in dev-util/eric: ChangeLog eric-4.0.3.ebuild

2007-10-04 Thread Christian Faulhammer
Caleb Tennis (caleb) [EMAIL PROTECTED]: Modified: ChangeLog Added:eric-4.0.3.ebuild I miss the IUSE statement...isn't it needed for the linguas to add it? src_install() { # Change qt dir to be located in ${D} mkdir -p ${D}/usr/share/qt4/ dodir

[gentoo-dev] Re: controlling src_test

2007-10-04 Thread Ryan Hill
Rémi Cardona wrote: Ravi Pinjala a écrit : I, for one, would like to be able to control whether or not to run tests that take a huge amount of time to run. Some test suites are ridiculously comprehensive, and if we could have an option to disable only those, or even run a reduced test suite,

[gentoo-dev] Bugday on Saturday!

2007-10-04 Thread Peter Weller
Yes, that's right, next Saturday is the first of the month, so it's Bugday! Come along to #gentoo-bugs and help out with killing the bugs listed on http:///bugday.gentoo.org! If anyone has got any suggestions for new bug additions, email them to me by tomorrow, and I will update the site for

Re: [gentoo-dev] Re: controlling src_test

2007-10-04 Thread Alin Năstac
Ryan Hill wrote: NEWFEATURES= for f in ${FEATURES}; do if [[ ! $f == test ]]; then NEWFEATURES=${NEWFEATURES} $f fi done FEATURES=${NEWFEATURES} There is a simpler way to remove a word from an environment variable: FEATURES= ${FEATURES} # make sure every word is

[gentoo-dev] Re: controlling src_test

2007-10-04 Thread Ryan Hill
Ryan Hill wrote: Rémi Cardona wrote: Ravi Pinjala a écrit : I, for one, would like to be able to control whether or not to run tests that take a huge amount of time to run. Some test suites are ridiculously comprehensive, and if we could have an option to disable only those, or even run

Re: [gentoo-dev] New developer : Mike Pagano (mpagano)

2007-10-04 Thread Joe Peterson
Mart Raudsepp wrote: Damn, mine had 48K Luxury! Welcome Mike! And I forgot to welcome Mike; so welcome Mike! -Joe -- [EMAIL PROTECTED] mailing list

Re: [gentoo-dev] Re: controlling src_test

2007-10-04 Thread Chris Gianelloni
On Thu, 2007-10-04 at 13:47 -0600, Ryan Hill wrote: I usually disable tests on a per-package basis using /etc/portage/env entries. [EMAIL PROTECTED] ~ $ cat /etc/portage/env/sci-libs/fftw NEWFEATURES= for f in ${FEATURES}; do if [[ ! $f == test ]]; then

[gentoo-dev] Re: controlling src_test

2007-10-04 Thread Ryan Hill
Alin Năstac wrote: Ryan Hill wrote: NEWFEATURES= for f in ${FEATURES}; do if [[ ! $f == test ]]; then NEWFEATURES=${NEWFEATURES} $f fi done FEATURES=${NEWFEATURES} There is a simpler way to remove a word from an environment variable: FEATURES= ${FEATURES} # make

Re: [gentoo-dev] Re: controlling src_test

2007-10-04 Thread Rémi Cardona
Ryan Hill wrote: here's a crappy little script to automate it. This is really cool. /me had somehow missed the lesson on /etc/portage/env Cheers :) Rémi -- [EMAIL PROTECTED] mailing list

[gentoo-dev] [RFC] Planning for the transition to EAPI=1 support

2007-10-04 Thread Zac Medico
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi everyone, A number of people have been expressing desires to start using some new extensions in the portage tree [1]. Due to popular demand, I'm preparing a sys-apps/portage-2.1.3.12 release that will have support for EAPI=1. The extensions

Re: [gentoo-dev] [RFC] Planning for the transition to EAPI=1 support

2007-10-04 Thread Dan
Arfrever Frehtes Taifersar Arahesis wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 When could we expect new PMS version? Sometime after the last one gets approved. - -- Arfrever Frehtes Taifersar Arahesis -BEGIN PGP SIGNATURE- Version: GnuPG v2.0.7 (GNU/Linux)

Re: [gentoo-dev] [RFC] Planning for the transition to EAPI=1 support

2007-10-04 Thread Arfrever Frehtes Taifersar Arahesis
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 When could we expect new PMS version? - -- Arfrever Frehtes Taifersar Arahesis -BEGIN PGP SIGNATURE- Version: GnuPG v2.0.7 (GNU/Linux) iD8DBQFHBWhT/axNJ4Xo/ZERAov7AJ4p47BYJFfRa28QxM4WwLgqLgjwdQCgkkvz 2Ass5yTDXkwJuyORJWaDo38= =23E2 -END

Re: [gentoo-dev] controlling src_test

2007-10-04 Thread Marius Mauch
On Wed, 03 Oct 2007 19:50:01 -0600 Ryan Hill [EMAIL PROTECTED] wrote: There are several packages in portage (and even in base-system) that fail in src_test when userpriv/usersandbox is enabled or disabled. That is, some testsuites fail when run as root and some fail if not run as root. I'd

Re: [gentoo-dev] controlling src_test

2007-10-04 Thread Bo Ørsted Andresen
On Friday 05 October 2007 01:14:32 Marius Mauch wrote: (btw, the /etc/portage/env trick only works because the default src_test in ebuild.sh has the otherwise redundant FEATURES check which was discussed a few days ago in one of the commit reviews) src_test() is not called in dyn_test() unless

[gentoo-dev] Re: [RFC] Planning for the transition to EAPI=1 support

2007-10-04 Thread Duncan
Zac Medico [EMAIL PROTECTED] posted [EMAIL PROTECTED], excerpted below, on Thu, 04 Oct 2007 15:12:29 -0700: Due to popular demand, I'm preparing a sys-apps/portage-2.1.3.12 release that will have support for EAPI=1. The extensions planned for inclusion are SLOT dependencies (#174405), IUSE

Re: [gentoo-dev] Re: [RFC] Planning for the transition to EAPI=1 support

2007-10-04 Thread Petteri Räty
Duncan kirjoitti: Zac Medico [EMAIL PROTECTED] posted [EMAIL PROTECTED], excerpted below, on Thu, 04 Oct 2007 15:12:29 -0700: Due to popular demand, I'm preparing a sys-apps/portage-2.1.3.12 release that will have support for EAPI=1. The extensions planned for inclusion are SLOT

[gentoo-dev] Re: controlling src_test

2007-10-04 Thread Ryan Hill
Ryan Hill wrote: here's a crappy little script to automate it. here's take two. if someone could tell me a simple way to get the category given a package name, including a way to detect ambiguous names, i could drop the dependency on app-portage/udept. anyways it now supports disabling

[gentoo-dev] Re: [gentoo-commits] gentoo-x86 commit in eclass: java-utils-2.eclass java-virtuals-2.eclass

2007-10-04 Thread Donnie Berkholz
On 09:59 Thu 04 Oct , Alistair Bush (ali_bush) wrote: 1.1 eclass/java-virtuals-2.eclass file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/java-virtuals-2.eclass?rev=1.1view=markup plain:

Re: [gentoo-dev] Re: [RFC] Planning for the transition to EAPI=1 support

2007-10-04 Thread Marius Mauch
On Thu, 4 Oct 2007 23:34:14 + (UTC) Duncan [EMAIL PROTECTED] wrote: Zac Medico [EMAIL PROTECTED] posted [EMAIL PROTECTED], excerpted below, on Thu, 04 Oct 2007 15:12:29 -0700: Due to popular demand, I'm preparing a sys-apps/portage-2.1.3.12 release that will have support for EAPI=1.