Re: looking for port origin for executable

2021-05-05 Thread Michael Gmelin
> On 5. May 2021, at 20:25, Christian Weisgerber wrote: > > On 2021-05-04, Robert Huff wrote: > >>Would some kind soul please tell me which port installs the >> executable "g-ir-scanner"? I was purging unused ports and seem to >> have done this one by mistake. > > pkg-which(1) > > $

Re: Making a port to use OpenSSL of ports collection on FreeBSD 11.x

2021-05-05 Thread Chris
On 2021-05-05 09:10, Yasuhiro Kimura wrote: From: Chris Subject: Re: Making a port to use OpenSSL of ports collection on FreeBSD 11.x Date: Wed, 05 May 2021 08:03:00 -0700 I ran into a similar situation requiring freebsd 11 users not use SSL from base, and I simply used a conditional based

Re: Making a port to use OpenSSL of ports collection on FreeBSD 11.x

2021-05-05 Thread Michael Gmelin
> On 5. May 2021, at 18:56, Stefan Esser wrote: > > Am 05.05.21 um 18:00 schrieb Yasuhiro Kimura: >> You misunderstand my intention. What I would like to do is to make a >> port use security/openssl instead of base OpenSSL even if user sets >> 'DEFAULT_VERSIONS+=ssl=base' in /etc/make.conf

Re: looking for port origin for executable

2021-05-05 Thread Tatsuki Makino
Piotr Smyrak wrote on 2021/05/05 02:28: > $ find /usr/ports -name pkg-plist | xargs grep -l bin/g-ir-scanner If grep is to be used, then grep -rn --include \*/Makefile\* --include \*/pkg-plist\* -e g-ir-scanner /usr/ports It can also be picked up to some extent from PLIST_FILES in the

Re: Making a port to use OpenSSL of ports collection on FreeBSD 11.x

2021-05-05 Thread Eugene Grosbein
06.05.2021 10:49, Dima Panov wrote: > Chris, your suggestion leads to dll hell due to mix-links between ssl > libraries :( > At least, your setup easily face up situation where one lib will be built > with “port openss” and consumers still get a “base openssl”. > DEFAULT_VERSION here is set to

Re: Making a port to use OpenSSL of ports collection on FreeBSD 11.x

2021-05-05 Thread Dima Panov
Moin! Chris, your suggestion leads to dll hell due to mix-links between ssl libraries :( At least, your setup easily face up situation where one lib will be built with “port openss” and consumers still get a “base openssl”. DEFAULT_VERSION here is set to avoid a such situation — the whole

Re: looking for port origin for executable

2021-05-05 Thread Eugene Grosbein
05.05.2021 0:28, Piotr Smyrak wrote: >> Would some kind soul please tell me which port installs the >> executable "g-ir-scanner"? I was purging unused ports and seem to >> have done this one by mistake. > > When I hit a wall like this, this is my usual way to get around without > any

Re: Making a port to use OpenSSL of ports collection on FreeBSD 11.x

2021-05-05 Thread Chris
On 2021-05-05 20:49, Dima Panov wrote: Moin! Chris, your suggestion leads to dll hell due to mix-links between ssl libraries :( At least, your setup easily face up situation where one lib will be built with “port openss” and consumers still get a “base openssl”. DEFAULT_VERSION here is set

looking for committer

2021-05-05 Thread Ronald Klop
Hi, I'm looking for a committer for the following port issues. https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=255118 (mongodb40, maintainer gave +feedback instead of +approval) https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=255117 (monbodb40-tools, maintainer gave +feedback instead of

FreeBSD ports you maintain which are out of date

2021-05-05 Thread portscout
Dear port maintainer, The portscout new distfile checker has detected that one or more of your ports appears to be out of date. Please take the opportunity to check each of the ports listed below, and if possible and appropriate, submit/commit an update. If any ports have already been updated,

Re: Making a port to use OpenSSL of ports collection on FreeBSD 11.x

2021-05-05 Thread Yasuhiro Kimura
From: Michael Gmelin Subject: Re: Making a port to use OpenSSL of ports collection on FreeBSD 11.x Date: Tue, 4 May 2021 23:05:06 +0200 > See https://docs.freebsd.org/en/books/porters-handbook/uses/#uses-ssl > > Best I checked it but couldn't find proper solution. I think what is necessary in

Re: Making a port to use OpenSSL of ports collection on FreeBSD 11.x

2021-05-05 Thread Chris
On 2021-05-05 07:22, Yasuhiro Kimura wrote: From: Michael Gmelin Subject: Re: Making a port to use OpenSSL of ports collection on FreeBSD 11.x Date: Tue, 4 May 2021 23:05:06 +0200 See https://docs.freebsd.org/en/books/porters-handbook/uses/#uses-ssl Best I checked it but couldn't find

Re: Making a port to use OpenSSL of ports collection on FreeBSD 11.x

2021-05-05 Thread Michael Gmelin
On Wed, 05 May 2021 23:22:08 +0900 (JST) Yasuhiro Kimura wrote: > From: Michael Gmelin > Subject: Re: Making a port to use OpenSSL of ports collection on > FreeBSD 11.x Date: Tue, 4 May 2021 23:05:06 +0200 > > > See > > https://docs.freebsd.org/en/books/porters-handbook/uses/#uses-ssl > > >

Re: Making a port to use OpenSSL of ports collection on FreeBSD 11.x

2021-05-05 Thread Yasuhiro Kimura
From: Michael Gmelin Subject: Re: Making a port to use OpenSSL of ports collection on FreeBSD 11.x Date: Wed, 5 May 2021 17:32:02 +0200 > Which port are you talking about by the way? > > This worked for me just fine in the past (placed in make.conf): > > DEFAULT_VERSIONS+=ssl=libressl > >

Re: Making a port to use OpenSSL of ports collection on FreeBSD 11.x

2021-05-05 Thread Stefan Esser
Am 05.05.21 um 18:00 schrieb Yasuhiro Kimura: > You misunderstand my intention. What I would like to do is to make a > port use security/openssl instead of base OpenSSL even if user sets > 'DEFAULT_VERSIONS+=ssl=base' in /etc/make.conf (or user doesn't > customize setting about ssl at all). You

Re: Making a port to use OpenSSL of ports collection on FreeBSD 11.x

2021-05-05 Thread Yasuhiro Kimura
From: Chris Subject: Re: Making a port to use OpenSSL of ports collection on FreeBSD 11.x Date: Wed, 05 May 2021 08:03:00 -0700 > I ran into a similar situation requiring freebsd 11 users not use > SSL from base, and I simply used a conditional based against freebsd > version, that also included

Re: looking for port origin for executable

2021-05-05 Thread Christian Weisgerber
On 2021-05-04, Robert Huff wrote: > Would some kind soul please tell me which port installs the > executable "g-ir-scanner"? I was purging unused ports and seem to > have done this one by mistake. pkg-which(1) $ pkg which /usr/local/bin/g-ir-scanner /usr/local/bin/g-ir-scanner was