Re: Checking you the maintainer of a port?

2019-11-28 Thread Kurt Jaeger
Hi!

> I thought that the maintainer of a port was listed somewhere in the files at 
> user/ports//portbase/ but evidently not. What is the easiest way to 
> find out, sitting in console on a server without a GUI, to find out who the 
> maintainer is? (On my desktop I can just google and launch a browser, but 
> that is not possible on most of the servers which do not have web clients 
> installed.
> 
> (Right now I am looking for the maintainer of roundcube, but this is a 
> general question.)

pkg info roundcube

displays:

Maintainer : ...

-- 
p...@opsec.eu+49 171 3101372One year to go !
___
freebsd-ports@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


Re: Checking you the maintainer of a port?

2019-11-27 Thread Kevin Oberman
On Wed, Nov 27, 2019 at 1:08 PM Brooks Davis  wrote:

> On Wed, Nov 27, 2019 at 02:05:56PM -0700, Janky Jay, III wrote:
> > Hello,
> >
> > On 11/27/19 2:03 PM, @lbutlr wrote:
> > > I thought that the maintainer of a port was listed somewhere in the
> files at user/ports//portbase/ but evidently not. What is the
> easiest way to find out, sitting in console on a server without a GUI, to
> find out who the maintainer is? (On my desktop I can just google and launch
> a browser, but that is not possible on most of the servers which do not
> have web clients installed.
> > >
> > > (Right now I am looking for the maintainer of roundcube, but this is a
> general question.)
> > >
> >
> >   Please see the "MAINTAINER=" line in the port's "Makefile".
>
> A slightly more general answer is:
>
> cd /usr/ports//; make -V MAINTAINER
>
> -- Brooks
>

Or:
make -C /usr/ports// maintainer
--
Kevin Oberman, Part time kid herder and retired Network Engineer
E-mail: rkober...@gmail.com
PGP Fingerprint: D03FB98AFA78E3B78C1694B318AB39EF1B055683
___
freebsd-ports@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


Re: Checking you the maintainer of a port?

2019-11-27 Thread Tatsuki Makino
I ride too.

pkg query %m package-name

___
freebsd-ports@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


Re: Checking you the maintainer of a port?

2019-11-27 Thread @lbutlr
On 27 Nov 2019, at 14:05, Janky Jay, III  wrote:
> Please see the "MAINTAINER=" line in the port's "Makefile”.

Aw hell, I should have gripped all the files. I was sure it would’t be in the 
make file!



-- 
"Are you pondering what I'm pondering?"
"I think so, but where is a fish?”

___
freebsd-ports@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


Re: Checking you the maintainer of a port?

2019-11-27 Thread Lars Engels
On Wed, Nov 27, 2019 at 09:07:55PM +, Brooks Davis wrote:
> On Wed, Nov 27, 2019 at 02:05:56PM -0700, Janky Jay, III wrote:
> > Hello,
> > 
> > On 11/27/19 2:03 PM, @lbutlr wrote:
> > > I thought that the maintainer of a port was listed somewhere in the files 
> > > at user/ports//portbase/ but evidently not. What is the easiest 
> > > way to find out, sitting in console on a server without a GUI, to find 
> > > out who the maintainer is? (On my desktop I can just google and launch a 
> > > browser, but that is not possible on most of the servers which do not 
> > > have web clients installed.
> > > 
> > > (Right now I am looking for the maintainer of roundcube, but this is a 
> > > general question.)
> > > 
> > 
> > Please see the "MAINTAINER=" line in the port's "Makefile".
> 
> A slightly more general answer is:
> 
> cd /usr/ports//; make -V MAINTAINER

There's already a target for it:

  make maintainer

in a port's directory.
___
freebsd-ports@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


Re: Checking you the maintainer of a port?

2019-11-27 Thread Steve Kargl
On Wed, Nov 27, 2019 at 02:03:33PM -0700, @lbutlr wrote:
> I thought that the maintainer of a port was listed somewhere in the files at 
> user/ports//portbase/ but evidently not. What is the easiest way to 
> find out, sitting in console on a server without a GUI, to find out who the 
> maintainer is? (On my desktop I can just google and launch a browser, but 
> that is not possible on most of the servers which do not have web clients 
> installed.
> 
> (Right now I am looking for the maintainer of roundcube, but this is a 
> general question.)
> 
> 

man pkg-info

or

grep -i maintainer /path/to/port/Makefile

-- 
Steve
___
freebsd-ports@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


Re: Checking you the maintainer of a port?

2019-11-27 Thread Brooks Davis
On Wed, Nov 27, 2019 at 02:05:56PM -0700, Janky Jay, III wrote:
> Hello,
> 
> On 11/27/19 2:03 PM, @lbutlr wrote:
> > I thought that the maintainer of a port was listed somewhere in the files 
> > at user/ports//portbase/ but evidently not. What is the easiest way 
> > to find out, sitting in console on a server without a GUI, to find out who 
> > the maintainer is? (On my desktop I can just google and launch a browser, 
> > but that is not possible on most of the servers which do not have web 
> > clients installed.
> > 
> > (Right now I am looking for the maintainer of roundcube, but this is a 
> > general question.)
> > 
> 
>   Please see the "MAINTAINER=" line in the port's "Makefile".

A slightly more general answer is:

cd /usr/ports//; make -V MAINTAINER

-- Brooks


signature.asc
Description: PGP signature


Re: Checking you the maintainer of a port?

2019-11-27 Thread Janky Jay, III
Hello,

On 11/27/19 2:03 PM, @lbutlr wrote:
> I thought that the maintainer of a port was listed somewhere in the files at 
> user/ports//portbase/ but evidently not. What is the easiest way to 
> find out, sitting in console on a server without a GUI, to find out who the 
> maintainer is? (On my desktop I can just google and launch a browser, but 
> that is not possible on most of the servers which do not have web clients 
> installed.
> 
> (Right now I am looking for the maintainer of roundcube, but this is a 
> general question.)
> 

Please see the "MAINTAINER=" line in the port's "Makefile".

Regards,
Janky Jay, III

___
freebsd-ports@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


Checking you the maintainer of a port?

2019-11-27 Thread @lbutlr
I thought that the maintainer of a port was listed somewhere in the files at 
user/ports//portbase/ but evidently not. What is the easiest way to find 
out, sitting in console on a server without a GUI, to find out who the 
maintainer is? (On my desktop I can just google and launch a browser, but that 
is not possible on most of the servers which do not have web clients installed.

(Right now I am looking for the maintainer of roundcube, but this is a general 
question.)


-- 
Yeah, and I never wanted to kick Albert Einstein in the nuts.

___
freebsd-ports@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"