Changes between Version 41 and Version 42 of CommittersTipsAndTricks


Ignore:
Timestamp:
Oct 27, 2010, 10:25:10 PM (14 years ago)
Author:
ryandesign (Ryan Carsten Schmidt)
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • CommittersTipsAndTricks

    v41 v42  
    320320== Searching for ports of a specific maintainer ==
    321321
    322 It can happen that port maintainer search queries with "port info" deliver ambiguous results. In case you need to make sure that only a specific maintainer handle is found use this
    323 {{{
    324 port info --name --maintainer 'maintainer:(\s|^)HANDLE(\s|$)'
     322To find ports maintained by a particular maintainer, you can use the "maintainer:" pseudoport.
     323Maintainers can list their email address in a port in [http://guide.macports.org/#reference.keywords.maintainers several different ways], and you must search for all of them to be sure you find all relevant ports.
     324For example, to print the name and maintainer(s) of all ports maintained by julesverne:
     325{{{
     326HANDLE=julesverne
     327port info --name --maintainer '(' \
     328"maintainer:(\s|^)$HANDLE(\s|$)" or \
     329"maintainer:(\s|^)$HANDLE@macports.org(\s|$)" or \
     330"maintainer:(\s|^)macports.org:$HANDLE(\s|$)" ')'
    325331}}}
    326332which will now find only those ports which HANDLE@macports.org maintains.