Migrating to Perl 5.20/5.22
Joshua Root
jmr at macports.org
Wed Jul 15 05:37:34 PDT 2015
On 2015-7-15 18:07 , Mojca Miklavec wrote:
> On Wed, Jul 15, 2015 at 2:49 AM, David Evans <devans at macports.org> wrote:
>> On 7/14/15 4:32 PM, Mark Anderson wrote:
>>>
>>> I second perl 5.22. And that we should only support the latest perl.
>>>
>>> —Mark
>>
>>
>> Sounds good, Mark. I think that makes the vote 3 to 1 so that probably
>> covers the majority of people who are interested.
>>
>> Lets go!! Mojca?
>
> What's the fastest trick to list all dependent ports (possibly sorted
> according to maintainership)?
>
> I tried to cheat and copied the following
> port echo depends:perl5.16 or depends:p5.16-*
> from
> https://trac.macports.org/ticket/44405
> but that one misses some ports (it doesn't list ackmate for example).
That command lists ackmate for me. Note however that those patterns are
regexes, so you really want:
port echo depends:'perl5\.16' or depends:'p5\.16-.*'
And since regexes are unanchored by default, the .* is technically
redundant.
Sorting by maintainer:
port info --line --index --name --maintainer depends:'perl5\.16' or
depends:'p5\.16-' | sort
- Josh
More information about the macports-dev
mailing list