Re: Enabling fetch.type svn to work with a proxy

2012-08-21 Thread Christoph Iserlohn
Am 21.08.12 19:26, schrieb Blair Zajac: > On 08/21/2012 01:51 AM, Christoph Iserlohn wrote: >> 2012/8/21 Ryan Schmidt : >> >>> >>> On Aug 20, 2012, at 16:59, Christoph Iserlohn wrote: >>> I assume you refer to a enviroment variable 'http_proxy'. >>> >>> Shouldn't it be looking at the proxy* va

Re: How can variant B imply variant A?

2012-08-21 Thread Daniel J. Luke
On Aug 21, 2012, at 4:26 PM, Jeremy Lavergne wrote: > Here are our thoughts on the variants, mostly about user assumptions: > * making subports for every combination of variants is messy (e.g. > python{24,25,26,27}-ucs{2,4}-svn) It is. It would be really nice if we could narrow down the number o

Re: How can variant B imply variant A?

2012-08-21 Thread Jeremy Lavergne
Here are our thoughts on the variants, mostly about user assumptions: * making subports for every combination of variants is messy (e.g. python{24,25,26,27}-ucs{2,4}-svn) * defaulting to a non-default variant may surprise users by suddenly building packages (e.g. buildbots would never build it/

Re: How can variant B imply variant A?

2012-08-21 Thread Jeremy Lavergne
On Aug 21, 2012, at 3:55 PM, Clemens Lang wrote: >> This is just a bad idea: your package will install differently based >> on what's available > > Why is that a problem? In this case, the maintainer wants to > specifically support both wxWidgets and wxWidgets-devel. The end-user > either alread

Re: How can variant B imply variant A?

2012-08-21 Thread Clemens Lang
On Tue, Aug 21, 2012 at 03:46:31PM -0400, Jeremy Lavergne wrote: > This is just a bad idea: your package will install differently based > on what's available Why is that a problem? In this case, the maintainer wants to specifically support both wxWidgets and wxWidgets-devel. The end-user either al

Re: How can variant B imply variant A?

2012-08-21 Thread Clemens Lang
Hi, On Tue, Aug 21, 2012 at 03:53:08PM +0200, Mojca Miklavec wrote: > However, I'm still left with a tiny follow up (in case that it is > doable without too much hassle). Can the following be done (below is > just "pseudocode")? > > variant wxt description "Enable wxWidgets" { > if {!

Re: How can variant B imply variant A?

2012-08-21 Thread Jeremy Lavergne
> Independent of all that, my two questions still stand: > - Is it possible to enable a variant if I'm already too late for How are you too late for this? I don't see how you can be too late. > "variant ... requires ..."? > - Is it possible to use "if port X is installed" inside Y's Portfile? Th

Re: Java SE 7 Update 6

2012-08-21 Thread Bjarne D Mathiesen
Blair Zajac wrote: > On 08/21/2012 11:49 AM, Bjarne D Mathiesen wrote: >> When reading >> http://www.h-online.com/open/news/item/Java-SE-7-Update-6-hands-OS-X-support-to-Oracle-1667714.html >> >> it seems as if the one has to manually upgrade to this version while >> future upgrades are then done a

Re: Java SE 7 Update 6

2012-08-21 Thread Robson Roberto Souza Peixoto
On Tue, Aug 21, 2012 at 3:49 PM, Bjarne D Mathiesen wrote: > When reading > http://www.h-online.com/open/news/item/Java-SE-7-Update-6-hands-OS-X-support-to-Oracle-1667714.html > it seems as if the one has to manually upgrade to this version while > future upgrades are then done automagically by Or

Re: Java SE 7 Update 6

2012-08-21 Thread Blair Zajac
On 08/21/2012 11:49 AM, Bjarne D Mathiesen wrote: When reading http://www.h-online.com/open/news/item/Java-SE-7-Update-6-hands-OS-X-support-to-Oracle-1667714.html it seems as if the one has to manually upgrade to this version while future upgrades are then done automagically by Oracle. Now, ther

Java SE 7 Update 6

2012-08-21 Thread Bjarne D Mathiesen
When reading http://www.h-online.com/open/news/item/Java-SE-7-Update-6-hands-OS-X-support-to-Oracle-1667714.html it seems as if the one has to manually upgrade to this version while future upgrades are then done automagically by Oracle. Now, there are 2 (two) versions : JRE & JDK. Which version sh

Re: Enabling fetch.type svn to work with a proxy

2012-08-21 Thread Blair Zajac
On 08/21/2012 01:51 AM, Christoph Iserlohn wrote: 2012/8/21 Ryan Schmidt : On Aug 20, 2012, at 16:59, Christoph Iserlohn wrote: I assume you refer to a enviroment variable 'http_proxy'. Shouldn't it be looking at the proxy* variables in macports.conf instead of environment variables which

Re: How can variant B imply variant A?

2012-08-21 Thread Mojca Miklavec
On Tue, Aug 21, 2012 at 3:55 PM, Jeremy Lavergne wrote: >> However, I'm still left with a tiny follow up (in case that it is >> doable without too much hassle). Can the following be done (below is >> just "pseudocode")? >> >>variant wxt description "Enable wxWidgets" { >>if {![variant_i

Re: How can variant B imply variant A?

2012-08-21 Thread Jeremy Lavergne
> However, I'm still left with a tiny follow up (in case that it is > doable without too much hassle). Can the following be done (below is > just "pseudocode")? > >variant wxt description "Enable wxWidgets" { >if {![variant_isset wxwidgets] && ![variant_isset wxwidgets_devel]} { >

Re: How can variant B imply variant A?

2012-08-21 Thread Mojca Miklavec
On Tue, Aug 21, 2012 at 3:27 PM, Jeremy Lavergne wrote: >> How can I make variant B automatically turn the variant A on? > > variant A {} > variant B requires A {} Please excuse my blindness. I was starring at both http://guide.macports.org/chunked/reference.variants.html http://guide.macp

Re: How can variant B imply variant A?

2012-08-21 Thread Jeremy Lavergne
> How can I make variant B automatically turn the variant A on? variant A {} variant B requires A {} ___ macports-dev mailing list macports-dev@lists.macosforge.org http://lists.macosforge.org/mailman/listinfo/macports-dev

How can variant B imply variant A?

2012-08-21 Thread Mojca Miklavec
Hello, How can I make variant B automatically turn the variant A on? I have tried variant A description "funny variant" { ... } variant B description "even more funny, depends on A" { ... default_variants +A } But when I use +B, this will end up with +B only, it won't try

Re: Enabling fetch.type svn to work with a proxy

2012-08-21 Thread Christoph Iserlohn
2012/8/21 Ryan Schmidt : > > On Aug 20, 2012, at 16:59, Christoph Iserlohn wrote: > >> I assume you refer to a enviroment variable 'http_proxy'. > > Shouldn't it be looking at the proxy* variables in macports.conf instead of environment variables which would have already been cleared? > I thought