Re: Updating multiple ports with portmaster

2011-03-28 Thread Doug Barton
On 03/26/2011 09:47, Doug Barton wrote: On 3/26/2011 8:22 AM, Ron (Lists) wrote: Is there a way to get portmaster to behave like portupgrade did and only upgrade what needs to be upgraded? I reserve the right not only to change my mind, but also to be wrong on occasion. :) I just ran into

Re: Updating multiple ports with portmaster

2011-03-27 Thread perryh
Doug Barton do...@freebsd.org wrote: On 03/26/2011 10:00, Matthew Seaman wrote: pkg_version -vIL= | awk '/^p5-/ { print $1 }' | xargs portmaster That's a good suggestion, but if you want to use that technique, better would be: portmaster `pkg_version -vIL= | awk '/^p5-/ { print $1 }'` ...

Re: Updating multiple ports with portmaster

2011-03-27 Thread J. Hellenthal
On Sat, 26 Mar 2011 12:47, dougb@ wrote: On 3/26/2011 8:22 AM, Ron (Lists) wrote: I have a questions about the use of portmaster when upgrading multiple ports and how to correctly use wildcards. For example, I have this from pkg_version: p5-Digest-SHA-5.50 needs updating (port has 5.61)

Re: Updating multiple ports with portmaster

2011-03-27 Thread Doug Barton
On 03/27/2011 00:26, per...@pluto.rain.com wrote: Doug Bartondo...@freebsd.org wrote: On 03/26/2011 10:00, Matthew Seaman wrote: pkg_version -vIL= | awk '/^p5-/ { print $1 }' | xargs portmaster That's a good suggestion, but if you want to use that technique, better would be: portmaster

Re: Updating multiple ports with portmaster

2011-03-27 Thread Doug Barton
On 03/27/2011 03:07, J. Hellenthal wrote: Hi Doug, ...Everyone else, Since were on the (-i) subject here. Do you have any plans in the near future to implement a way for end-user to change the default questioning response from [y] to [n] ? No, sorry. I think it would be very confusing to the

Updating multiple ports with portmaster

2011-03-26 Thread Ron (Lists)
I have a questions about the use of portmaster when upgrading multiple ports and how to correctly use wildcards. For example, I have this from pkg_version: p5-Digest-SHA-5.50 needs updating (port has 5.61) p5-IO-Socket-SSL-1.38 needs updating (port has

Re: Updating multiple ports with portmaster

2011-03-26 Thread Doug Barton
On 3/26/2011 8:22 AM, Ron (Lists) wrote: I have a questions about the use of portmaster when upgrading multiple ports and how to correctly use wildcards. For example, I have this from pkg_version: p5-Digest-SHA-5.50 needs updating (port has 5.61) p5-IO-Socket-SSL-1.38 needs updating (port

Re: Updating multiple ports with portmaster

2011-03-26 Thread b. f.
I have a questions about the use of portmaster when upgrading multiple ports and how to correctly use wildcards. For example, I have this from pkg_version: p5-Digest-SHA-5.50 needs updating (port has 5.61) p5-IO-Socket-SSL-1.38 needs updating (port

Re: Updating multiple ports with portmaster

2011-03-26 Thread Matthew Seaman
On 26/03/2011 16:47, Doug Barton wrote: On 3/26/2011 8:22 AM, Ron (Lists) wrote: I have a questions about the use of portmaster when upgrading multiple ports and how to correctly use wildcards. For example, I have this from pkg_version: p5-Digest-SHA-5.50 needs updating (port has 5.61)

Re: Updating multiple ports with portmaster

2011-03-26 Thread Matthias Andree
Am 26.03.2011 17:58, schrieb b. f.: I have a questions about the use of portmaster when upgrading multiple ports and how to correctly use wildcards. For example, I have this from pkg_version: p5-Digest-SHA-5.50needs updating (port has 5.61) p5-IO-Socket-SSL-1.38needs updating

Re: Updating multiple ports with portmaster

2011-03-26 Thread b. f.
Matthias Andree wrote: ... Is there a way to get portmaster to behave like portupgrade did and only upgrade what needs to be upgraded? This is documented in the portmaster(1) manpage. You can use -a to update all ports that need to be updated. To update a subset of those, you

Re: Updating multiple ports with portmaster

2011-03-26 Thread Doug Barton
On 03/26/2011 10:00, Matthew Seaman wrote: pkg_version -vIL= | awk '/^p5-/ { print $1 }' | xargs portmaster That's a good suggestion, but if you want to use that technique, better would be: portmaster `pkg_version -vIL= | awk '/^p5-/ { print $1 }'` so that you can take advantage of the