Re: New MacPorts web site

2014-04-12 Thread Aljaž 'g5pw' Srebrnič
Congrats on the new design, I like it a lot! Is there any way I can contribute?

On 08 aprile 2014 at 07:25:57, Vincent Habchi (vi...@macports.org) wrote:

Ryan,  

the new design is rad! But I wonder if it is appropriate to use floppy disk 
icons to symbolize packages. I’m pretty sure the youngest over here do not even 
know what it is about ;)  

(Granted, that’s just nitpicking…)  

Thanks for the wonderful work.  
Vincent  

___  
macports-dev mailing list  
macports-dev@lists.macosforge.org  
https://lists.macosforge.org/mailman/listinfo/macports-dev  
-- 
Aljaž Srebrnič a.k.a g5pw
My public key:  http://bit.ly/g5pw_pubkey___
macports-dev mailing list
macports-dev@lists.macosforge.org
https://lists.macosforge.org/mailman/listinfo/macports-dev


Is there a way to figure out which deps would have to be build from sources

2014-04-12 Thread MK-MacPorts
Hi devs,

I just wonder whether someone out there
has already written some script
which can determine for any given port A
whether non-binary ports B1-Bn are to be build during 
port A's installation.

Greets,
Marko

P.S.: I do know that there is mp-distributable.sh in order to determine whether 
a port is binary-distributable.
___
macports-dev mailing list
macports-dev@lists.macosforge.org
https://lists.macosforge.org/mailman/listinfo/macports-dev


Re: Is there a way to figure out which deps would have to be build from sources

2014-04-12 Thread David Evans
On 4/12/14 1:55 PM, mk-macpo...@techno.ms wrote:
 Hi devs,

 I just wonder whether someone out there
   has already written some script
   which can determine for any given port A
   whether non-binary ports B1-Bn are to be build during 
 port A's installation.

 Greets,
 Marko

 P.S.: I do know that there is mp-distributable.sh in order to determine 
 whether a port is binary-distributable.
 ___
 macports-dev mailing list
 macports-dev@lists.macosforge.org
 https://lists.macosforge.org/mailman/listinfo/macports-dev

http://svn.macports.org/repository/macports/trunk/base/portmgr/jobs/port_binary_distributable.tcl
___
macports-dev mailing list
macports-dev@lists.macosforge.org
https://lists.macosforge.org/mailman/listinfo/macports-dev


Re: Is there a way to figure out which deps would have to be build from sources

2014-04-12 Thread Eric Gallager
On Sat, Apr 12, 2014 at 4:55 PM, mk-macpo...@techno.ms wrote:

 Hi devs,

 I just wonder whether someone out there
 has already written some script
 which can determine for any given port A
 whether non-binary ports B1-Bn are to be build
 during port A's installation.

 Greets,
 Marko

 P.S.: I do know that there is mp-distributable.sh in order to determine
 whether a port is binary-distributable.


Well, if there is already mp-distributable.sh, then it probably should not
be too hard to loop over a port's rdeps and run that script for each of
them... maybe something like this?

#!/bin/sh
for depport in `port -q rdeps $1`; do
  sh /path/to/mp-distributable.sh ${depport}
done

(note: not actually tested yet)
___
macports-dev mailing list
macports-dev@lists.macosforge.org
https://lists.macosforge.org/mailman/listinfo/macports-dev


Re: Is there a way to figure out which deps would have to be build from sources

2014-04-12 Thread MK-MacPorts
Hi Eric,

 #!/bin/sh
 for depport in `port -q rdeps $1`; do
   sh /path/to/mp-distributable.sh ${depport}
 done

that worked like a breeze. I should have been able to create in on my own. :-)

Thanks!

Greets,
Marko
___
macports-dev mailing list
macports-dev@lists.macosforge.org
https://lists.macosforge.org/mailman/listinfo/macports-dev