[gentoo-dev] Re: QA last rites for media-video/mmsv2

2009-07-29 Thread Ryan Hill
On Wed, 29 Jul 2009 22:49:20 +0200
"Diego E. 'Flameeyes'" Pettenò
 wrote:

> +# Diego E. Pettenò  (29 
> Jul 2009)
> +#  on behalf of QA Team
> +#
> +# Fails to build with gcc 4.3 (bug #240614), 4.4 (bug #278432) and
> mixes
> +# compiler flags (bug #199585).
> +#
> +# Removal on 2009-09-29
> +media-video/mmsv2
> +

When you file these, could you make a removal bug with a tracker for the
various issues, and mark the leaf bugs with the PMASKED keyword?


-- 
gcc-porting,  Character is what you are in the dark.
treecleaner,
wxwidgets @ gentoo EFFD 380E 047A 4B51 D2BD C64F 8AA8 8346 F9A4 0662


signature.asc
Description: PGP signature


[gentoo-dev] Re: [gentoo-soc] Re: [GSoC status] Web-based image builder

2009-07-29 Thread Sérgio Almeida
Hello,

On Tue, 2009-07-28 at 18:11 -0400, Eitan Mosenkis wrote:
> Ideally I'd like to make the system available for testing ASAP, but
> since the system needs root access to run, getting a server to run it
> on is a little tricky.
> 

I can help with a server with root access. I can make a gentoo vmware
machine on a quad-core with 1GB of dedicated RAM just for you and your
testings. The machine has 100/100MB connection to internet. What else do
you need?

Cheers,
Sérgio
-- 
Sérgio Almeida - meph...@gmail.com
mephx @ freenode



signature.asc
Description: This is a digitally signed message part


[gentoo-dev] Last rites for gnome-extra/gnome-art

2009-07-29 Thread Victor Ostorga
# Víctor Ostorga  (29 Jul 2009)
# Masked for removal in 60 days. Latest release in 2005, 
# upstream no longer maintains it , Gnome-Art NextGen is a replacement
# bug 245145
gnome-extra/gnome-art



Re: [gentoo-dev] Help: How to handle multi svn sources

2009-07-29 Thread Zac Medico
Dennis.Yxun wrote:
> HI Folks:
> I'm not a ebuild guru, so I ask here directly.
> Here I'm trying to update kicad package to support live svn repos.
> But the problem I face here is, kicad seperate different sources base on
> different USE flags
>I slightly modified the ebuild files, but it simply doesn't work.
>Any suggestion or advice, really appreciate!
> 
>   Following is offended code, attached file is the ebuild file:
> 
> ESVN_REPO_URI="https://kicad.svn.sourceforge.net/svnroot/kicad/trunk/kicad
> !minimal? (
> https://kicad.svn.sourceforge.net/svnroot/kicad/trunk/kicad-library )
> doc? (
> https://kicad.svn.sourceforge.net/svnroot/kicad/trunk/kicad-doc )"
> 
> Dennis

You can't embed USE conditionals inside ESVN_REPO_URI, since USE
conditionals like those are only supported in specific variables:
*DEPEND, RESTRICT, SRC_URI, PROPERTIES, and PROVIDE.

A brief examination of the subversion_fetch() function inside
/usr/portage/eclass/subversion.eclass suggests that ESVN_REPO_URI is
expected to be single-valued. So, I suspect that you will want to
define your own src_unpack() function (overriding
subversion_src_unpack) which will call subversion_fetch() as many
times as necessary. See the attached code for example.
-- 
Thanks,
Zac
src_unpack() {
subversion_fetch 
https://kicad.svn.sourceforge.net/svnroot/kicad/trunk/kicad
use minimal || subversion_fetch 
https://kicad.svn.sourceforge.net/svnroot/kicad/trunk/kicad-library
use doc && subversion_fetch 
https://kicad.svn.sourceforge.net/svnroot/kicad/trunk/kicad-doc
}


Re: [gentoo-dev] Test request: Bugzilla load balancer

2009-07-29 Thread Sebastian Pipping
Robin H. Johnson wrote:
> So, please test at:
> http://bugs-web-lb.gentoo.org/
> HTTP and HTTPS available.

Nice, makes a very responsive impression to me.



Sebastian



[gentoo-dev] Test request: Bugzilla load balancer

2009-07-29 Thread Robin H. Johnson
Hi folks,

I've been doing some more mucking with the Bugzilla code and setup, and
I think I've got most of the issues worked out that previously prevented
it from being fully load balanced.

So, please test at:
http://bugs-web-lb.gentoo.org/
HTTP and HTTPS available.

Thanks to ra...@hyves for the idea of the solution - he suggested it
months ago, I just had to apply it on a non-conventional way.

-- 
Robin Hugh Johnson
Gentoo Linux Developer & Infra Guy
E-Mail : robb...@gentoo.org
GnuPG FP   : 11AC BA4F 4778 E3F6 E4ED  F38E B27B 944E 3488 4E85


pgpXm1Gx5LbN2.pgp
Description: PGP signature


[gentoo-dev] Help: How to handle multi svn sources

2009-07-29 Thread Dennis.Yxun
HI Folks:
I'm not a ebuild guru, so I ask here directly.
Here I'm trying to update kicad package to support live svn repos.
But the problem I face here is, kicad seperate different sources base on
different USE flags
   I slightly modified the ebuild files, but it simply doesn't work.
   Any suggestion or advice, really appreciate!

  Following is offended code, attached file is the ebuild file:

ESVN_REPO_URI="https://kicad.svn.sourceforge.net/svnroot/kicad/trunk/kicad
!minimal? (
https://kicad.svn.sourceforge.net/svnroot/kicad/trunk/kicad-library )
doc? ( https://kicad.svn.sourceforge.net/svnroot/kicad/trunk/kicad-doc)"

Dennis


kicad-.ebuild
Description: Binary data


[gentoo-dev] Using bindnow-flags will now make your ebuild to die.

2009-07-29 Thread Samuli Suominen
There is no ebuild in gentoo-x86 left that's using the bindnow-flags
from flag-o-matic, including any of the old revs.

So this is a warning to the people who are still using it in overlay,
simply stop using it -- it will now die instead of just warn.

Thanks, Samuli