Re: [gentoo-dev] controlling src_test

2007-10-03 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 li

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

2007-10-03 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=${ar

Re: [gentoo-dev] Re: [gentoo-commits] gentoo-x86 commit in sys-fs/ncdu: ChangeLog ncdu-1.3.ebuild

2007-10-03 Thread Josh Sled
Wolfram Schlich <[EMAIL PROTECTED]> writes: > * Donnie Berkholz <[EMAIL PROTECTED]> [2007-10-03 19:12]: >> On 12:43 Wed 03 Oct , Wolfram Schlich wrote: >> > And *please*, don't send such mails to this >> > list *and* to my address in addition. >> >> You can add a procmail rule to detect duplic

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

2007-10-03 Thread Steve Long
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]} - which is useful if you don't know how many elements there are. (IFS wou

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

2007-10-03 Thread Steve Long
Denis Dupeyron wrote: > Mike is also an > amateur cyclist who logs a bit over 4000 miles a year, with a racing > career that has slowly given away to age. Aww ;) > Yes people, Mike is older > than Uncle Seemant, and even older than me. So kids, please, don't go > and disturb him while he's having

[gentoo-dev] controlling src_test

2007-10-03 Thread Ryan Hill
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 way to mark or handle these packages without disabl

Re: [gentoo-dev] Re: [gentoo-commits] gentoo-x86 commit in sys-fs/ncdu: ChangeLog ncdu-1.3.ebuild

2007-10-03 Thread Wolfram Schlich
* Donnie Berkholz <[EMAIL PROTECTED]> [2007-10-03 19:12]: > On 12:43 Wed 03 Oct , Wolfram Schlich wrote: > > And *please*, don't send such mails to this > > list *and* to my address in addition. > > You can add a procmail rule to detect duplicates using a cache and > checking Message-Id, with

[gentoo-dev] Re: Getting rid of lurking no* USE flags - profile-based package.use

2007-10-03 Thread Ryan Hill
Zac Medico wrote: > Ryan Hill wrote: >> SLOT depends are something we could really use right now. What kind of >> time frame are you thinking of? > > Trying to include things that aren't implemented or things that are > controversial will delay it. It's difficult to make time estimates > for anyt

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

2007-10-03 Thread Caleb Tennis
> Try being a little smarter with both CHOST and CXX -- only add an > exception if the spec name isn't equal to the variable value. > > spec=$(echo ${CHOST} | cut -d- -f3) > spec=${spec%%[0-9]*} > spec=${spec}-$(tc-getCXX) The bsd folks are the ones who added these conditionals. I'd like for them

Re: [gentoo-dev] Re: RFC: sh versionator.eclass

2007-10-03 Thread Fabian Groffen
On 03-10-2007 09:40:02 +0100, Roy Marples wrote: > > Although, I have to ask: what is so terrible about installing GNU findutils? > > Personally I'd just build in a chroot if the pollution were that bad. > > (AFAICT the whole point of GNU stuff is to have a consistent Free > > foundation. But like

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

2007-10-03 Thread Donnie Berkholz
On 14:58 Wed 03 Oct , Caleb Tennis (caleb) wrote: > 1.1 x11-libs/qt/qt-4.3.2.ebuild > > file : > http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qt/qt-4.3.2.ebuild?rev=1.1&view=markup > plain: > http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qt/qt-4.3.2.eb

[gentoo-dev] Re: [gentoo-commits] gentoo-x86 commit in media-sound/gimmix: metadata.xml ChangeLog gimmix-0.4.2.ebuild

2007-10-03 Thread Donnie Berkholz
On 11:57 Wed 03 Oct , Christoph Mende (angelos) wrote: > 1.1 media-sound/gimmix/gimmix-0.4.2.ebuild > > file : > http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/gimmix/gimmix-0.4.2.ebuild?rev=1.1&view=markup > plain: > http://sources.gentoo.org/viewcvs.py/gentoo-

Re: [gentoo-dev] Re: [gentoo-commits] gentoo-x86 commit in sys-fs/ncdu: ChangeLog ncdu-1.3.ebuild

2007-10-03 Thread Donnie Berkholz
On 12:43 Wed 03 Oct , Wolfram Schlich wrote: > And *please*, don't send such mails to this > list *and* to my address in addition. You can add a procmail rule to detect duplicates using a cache and checking Message-Id, with formail. Examples of this are all over the place. It's a useful rule

Re: [gentoo-dev] Re: Getting rid of lurking no* USE flags - profile-based package.use

2007-10-03 Thread Donnie Berkholz
On 09:37 Wed 03 Oct , Zac Medico wrote: > Trying to include things that aren't implemented or things that are > controversial will delay it. It's difficult to make time estimates > for anything that's not implemented yet. > > It's trivial to do the EAPI-1 bump if we only include things that >

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

2007-10-03 Thread Joe Peterson
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"? Or.

Re: [gentoo-dev] Re: Getting rid of lurking no* USE flags - profile-based package.use

2007-10-03 Thread Zac Medico
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Ryan Hill wrote: > Zac Medico wrote: >> As for using things like IUSE defaults and SLOT dependencies in >> ebuilds (both supported by portage-2.1.2), the most backward >> compatible approach is to do an EAPI bump. We should probably >> include a few ot

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

2007-10-03 Thread Jason Smathers
On 10/3/07, Denis Dupeyron <[EMAIL PROTECTED]> wrote: > > It's my pleasure to introduce Mike Pagano (mpagano) who has been > wrangling kernel bugs for some time already, and will now do so as a > full Gentoo developer. Let's all give him a warm welcome. > > Welcome Mike, you have been doing a gre

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

2007-10-03 Thread Rémi Cardona
Andrew Gaffney a écrit : 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"? 20 miles to school, barefooted, uphill both ways? Sounds familiar ;) Welcome Mike! +1 on that. Cheers f

Re: [gentoo-dev] Re: [gentoo-commits] gentoo-x86 commit in sys-fs/ncdu: ChangeLog ncdu-1.3.ebuild

2007-10-03 Thread Mike Frysinger
On Wednesday 03 October 2007, Wolfram Schlich wrote: > * Donnie Berkholz <[EMAIL PROTECTED]> [2007-10-03 10:55]: > > On 08:51 Wed 03 Oct , Wolfram Schlich (wschlich) wrote: > > > 1.1 sys-fs/ncdu/ncdu-1.3.ebuild > > > > > > file : > > > http://sources.gentoo.org/viewcvs.py/gento

Re: [gentoo-dev] RFC: sh versionator.eclass

2007-10-03 Thread Roy Marples
On Tue, 2007-10-02 at 06:57 -0400, Mike Frysinger wrote: > > Pattern matching can be done just as well with case. Infact, tend to use > > [[ == ]] a lot when pattern matching when a case statement would be more > > efficient and use less code. Of course when you're just interested in > > matching o

Re: [gentoo-dev] Re: RFC: sh versionator.eclass

2007-10-03 Thread Yuri Gagarin
On 10/2/07, Alex Tarkovsky <[EMAIL PROTECTED]> wrote: > On 10/2/07, Roy Marples <[EMAIL PROTECTED]> wrote: > > > I accept the argument for initscripts, since an embedded system is not > > > likely to have bash. But for compile-time (which shouldn't happen on an > > > embedded target) there simply i

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

2007-10-03 Thread Andrew Gaffney
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! -- Andrew Gaffney

Re: [gentoo-dev] Re: [gentoo-commits] gentoo-x86 commit in sys-fs/ncdu: ChangeLog ncdu-1.3.ebuild

2007-10-03 Thread Wolfram Schlich
* Donnie Berkholz <[EMAIL PROTECTED]> [2007-10-03 10:55]: > On 08:51 Wed 03 Oct , Wolfram Schlich (wschlich) wrote: > > 1.1 sys-fs/ncdu/ncdu-1.3.ebuild > > > > file : > > http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/ncdu/ncdu-1.3.ebuild?rev=1.1&view=markup > > plain

[gentoo-dev] Re: [gentoo-commits] gentoo-x86 commit in sys-fs/ncdu: ChangeLog ncdu-1.3.ebuild

2007-10-03 Thread Donnie Berkholz
On 08:51 Wed 03 Oct , Wolfram Schlich (wschlich) wrote: > 1.1 sys-fs/ncdu/ncdu-1.3.ebuild > > file : > http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/ncdu/ncdu-1.3.ebuild?rev=1.1&view=markup > plain: > http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/ncdu/ncdu-

Re: [gentoo-dev] Re: RFC: sh versionator.eclass

2007-10-03 Thread Roy Marples
On Wed, 2007-10-03 at 01:55 +0100, Steve Long wrote: > If you have the patches and can make it work consistently on all gentoo > platforms, imo you should just do a custom find for gentoo. Distributing it > to users won't be an issue, and by standardising here you can prove the > benefits, while sa

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

2007-10-03 Thread Denis Dupeyron
It's my pleasure to introduce Mike Pagano (mpagano) who has been wrangling kernel bugs for some time already, and will now do so as a full Gentoo developer. Mike lives in his native New Jersey with his wife and a large cat. He currently works for a Pharmacy Benefits Management company where he hel