ports-mgmt/pkg: pkg query -e %#r condition doesn't match properly

2022-08-03 Thread Tatsuki Makino
Hello. query command in pkg-1.18.3 doesn't seem to properly match evaluations containing %#r. For example, pkg query -e "%#r != 1" "%n-%v:%#r" | grep :1\$ At this time, it is likely that flavor is involved in all of the entries that appear even though they should not match. However, I am goin

Re: 14 current + pkg problem

2022-08-03 Thread Ronald Klop
Hi, Firefox and Thunderbird had a build failure on 14-current. So they are missing from the pkg catalog. http://www.ipv6proxy.net/go.php?u=http%3A%2F%2Fbeefy18.nyi.freebsd.org%2Fdata%2Fmain-amd64-default%2Fp005f54920fb7_s150486f6a9%2Flogs%2Ferrors%2Fthunderbird-91.12.0.log&b=0&f=norefer http:/

poudriere overlay: passing down git ENV variables (problem: self signed certificates)

2022-08-03 Thread FreeBSD User
Hello, I try to acconplish tasks in maintaining ports via poudriere-devel's OVERLAY option. First of all: it is a pain in the a... not having ANY suitable hint how to perform this, a single line like that I found after a couple of hours searching here: https://github.com/decke/ports would have

Re: poudriere overlay: passing down git ENV variables (problem: self signed certificates)

2022-08-03 Thread Michael Gmelin
On Wed, 3 Aug 2022 12:38:26 +0200 FreeBSD User wrote: > Hello, > > I try to acconplish tasks in maintaining ports via poudriere-devel's > OVERLAY option. First of all: > > it is a pain in the a... not having ANY suitable hint how to perform > this, a single line like that I found after a cou

Re: poudriere overlay: passing down git ENV variables (problem: self signed certificates)

2022-08-03 Thread FreeBSD User
Am Wed, 3 Aug 2022 14:27:04 +0200 Michael Gmelin schrieb: > On Wed, 3 Aug 2022 12:38:26 +0200 > FreeBSD User wrote: > > > Hello, > > > > I try to acconplish tasks in maintaining ports via poudriere-devel's > > OVERLAY option. First of all: > > > > it is a pain in the a... not having ANY suita

Re: FreeBSD Port: wx31-gtk3-3.1.5_2

2022-08-03 Thread Ewout1 (Excite/BlueTie)
> Op 3 aug. 2022, om 06:24 heeft Loïc Bartoletti > het volgende geschreven: > > Hi, > > Le 02/08/2022 à 10:57, Fernando Apesteguía a écrit : >> Op 2 aug. 2022, om 00:16 heeft Space Cadet >> het volgende geschreven: >>> Yes, I can do it. Have never done it

Re: poudriere overlay: passing down git ENV variables (problem: self signed certificates)

2022-08-03 Thread Zachary Crownover
Choosing to not verify a certificate defeats the entire point of using the certificate and you may as well not use it at all. The better thing to do is trust it. Rather than try to take credit for someone else’s work in compiling a walk through, I’ll simply link a blog post that will give an exa

Re: poudriere overlay: passing down git ENV variables (problem: self signed certificates)

2022-08-03 Thread FreeBSD User
Am Wed, 3 Aug 2022 07:50:35 -0700 Zachary Crownover schrieb: > Choosing to not verify a certificate defeats the entire point of using the > certificate and > you may as well not use it at all. The better thing to do is trust it. Rather > than try to > take credit for someone else’s work in comp

Re: 14 current + pkg problem

2022-08-03 Thread Russell L. Carter
On 8/3/22 02:35, Ronald Klop wrote: Hi, Firefox and Thunderbird had a build failure on 14-current. So they are missing from the pkg catalog. http://www.ipv6proxy.net/go.php?u=http%3A%2F%2Fbeefy18.nyi.freebsd.org%2Fdata%2Fmain-amd64-default%2Fp005f54920fb7_s150486f6a9%2Flogs%2Ferrors%2Fthunder

Unmaintained FreeBSD ports which are out of date

2022-08-03 Thread portscout
Dear port maintainers, The portscout new distfile checker has detected that one or more unmaintained 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. Please consider also adopting this po

Re: poudriere overlay: passing down git ENV variables (problem: self signed certificates)

2022-08-03 Thread Tatsuki Makino
Hello. In git-2.37.1/http.c...    ︙ if (!curl_ssl_verify) { curl_easy_setopt(result, CURLOPT_SSL_VERIFYPEER, 0); curl_easy_setopt(result, CURLOPT_SSL_VERIFYHOST, 0); } else {    ︙ if (getenv("GIT_SSL_NO_VERIFY")) curl

Re: poudriere overlay: passing down git ENV variables (problem: self signed certificates)

2022-08-03 Thread Michael Gmelin
> On 4. Aug 2022, at 00:38, Tatsuki Makino wrote: > Hello. > > In git-2.37.1/http.c... > >    ︙ >if (!curl_ssl_verify) { >curl_easy_setopt(result, CURLOPT_SSL_VERIFYPEER, 0); >curl_easy_setopt(result, CURLOPT_SSL_VERIFYHOST, 0); >} else { >

Re: poudriere overlay: passing down git ENV variables (problem: self signed certificates)

2022-08-03 Thread Michael Gmelin
> On 4. Aug 2022, at 00:55, Michael Gmelin wrote: > >  > >> On 4. Aug 2022, at 00:38, Tatsuki Makino wrote: >> Hello. >> >> In git-2.37.1/http.c... >> >>    ︙ >> if (!curl_ssl_verify) { >> curl_easy_setopt(result, CURLOPT_SSL_VERIFYPEER, 0); >> curl_

Re: ports-mgmt/pkg: pkg query -e %#r condition doesn't match properly

2022-08-03 Thread Tatsuki Makino
Helge Oldach wrote on 2022/08/03 23:20: > Maybe a port with multiple flavors just counts as a single dependency > %#r? Just a wild guess though. > This is probably because they only check origin matches. I see such SQL when I run it with pkg - query. DBG(4)[70361]> Pkgdb:

Re: poudriere overlay: passing down git ENV variables (problem: self signed certificates)

2022-08-03 Thread Tatsuki Makino
I looked into this wondering why the poudriere is not blocking the propagation of the value, but the poudriere is not being affected by the value. Then, I think that is the reason why we are not getting the results we need :) Of course, a better solution would be to set up the verification so tha

Re: poudriere overlay: passing down git ENV variables (problem: self signed certificates)

2022-08-03 Thread Michael Gmelin
> On 4. Aug 2022, at 01:32, Tatsuki Makino wrote: > > I looked into this wondering why the poudriere is not blocking the > propagation of the value, but the poudriere is not being affected by the > value. > Then, I think that is the reason why we are not getting the results we need :) > >

Re: 14 current + pkg problem

2022-08-03 Thread Mark Millard
Russell L. Carter wrote on Date: Wed, 03 Aug 2022 17:46:12 UTC : > . . . > I also couldn't figure out how to use pkg-status.freebsd.org. > > How does one, for instance, query about the status of > thunderbird on current? (A pointer would be great) Not direct, but explorable. An example sequenc

Re: 14 current + pkg problem

2022-08-03 Thread Patrick M. Hausen
Hi all, > Am 04.08.2022 um 04:10 schrieb Mark Millard : > > Russell L. Carter wrote on > Date: Wed, 03 Aug 2022 17:46:12 UTC : > >> . . . >> I also couldn't figure out how to use pkg-status.freebsd.org. >> >> How does one, for instance, query about the status of >> thunderbird on current? (A