Date: Fri, 11 Aug 2023 23:59:45 +0200 From: Jan Beich <jbeich@FreeBSD.org> To: freebsd-current@freebsd.org Subject: Re: problem with poudriere && port ftp/curl Message-ID: <fs4p-qlym-wny@FreeBSD.org> In-Reply-To: <ZNaGE1yNIdQgfdCn@c720-r368166> (Matthias Apitz's message of "Fri, 11 Aug 2023 21:03:47 %2B0200") References: <ZNaGE1yNIdQgfdCn@c720-r368166>
next in thread | previous in thread | raw e-mail | index | archive | help
Matthias Apitz <guru@unixarea.de> writes:
> I have the following problem with poudriere on 14-CURRENT and ports from
> git head: every time when I start poudriere-bulk it removes a port
> already compile fine (and all its dependent ports) with the message:
>
> ...
> [00:00:40] Sanity checking the repository
> [00:00:40] Checking packages for incremental rebuild needs
> [00:00:43] Deleting curl-8.2.1.pkg: changed options
> [00:00:43] Pkg: +ALTSVC -BROTLI -CARES +CA_BUNDLE +COOKIES -CURL_DEBUG
> -DEBUG +DICT +DOCS +EXAMPLES +FTP -GNUTLS +GOPHER -GSSAPI_BASE
> -GSSAPI_HEIMDAL -GSSAPI_MIT +GSSAPI_NONE +HTTP +HTTP2 -IDN +IMAP +IPV6
> -LDAP -LDAPS -LIBSSH +LIBSSH2 -MQTT +NTLM +OPENSSL +POP3 +PROXY +PSL
> -RTMP +RTSP -SMB +SMTP +STATIC +TELNET +TFTP +THREADED_RESOLVER
> +TLS_SRP -WEBSOCKET -WOLFSSL -ZSTD
> [00:00:43] New: +ALTSVC -BROTLI -CARES +CA_BUNDLE +COOKIES -CURL_DEBUG
> -DEBUG +DICT +DOCS +EXAMPLES +FTP -GNUTLS +GOPHER +GSSAPI_BASE
> -GSSAPI_HEIMDAL -GSSAPI_MIT -GSSAPI_NONE +HTTP +HTTP2 -IDN +IMAP +IPV6
> -LDAP -LDAPS -LIBSSH +LIBSSH2 -MQTT +NTLM +OPENSSL +POP3 +PROXY +PSL
> -RTMP +RTSP -SMB +SMTP +STATIC +TELNET +TFTP +THREADED_RESOLVER
> +TLS_SRP -WEBSOCKET -WOLFSSL -ZSTD
>
> The difference seems to be +/-GSSAPI_BASE and +/-GSSAPI_NONE.
> I have not set anything about
> this in the port's options or jail's make.conf.
>
> What can I do to fix this?
Maybe poudriere is confused by GSSAPI_${${SSL_DEFAULT} == base :?BASE :NONE}
in OPTIONS_DEFAULT due ssl!=base in DEFAULT_VERSIONS via make.conf(5).
Try filing a bug against ftp/curl.
$ env -i __MAKE_CONF= PORT_DBDIR=/var/empty make -V '${OPTIONS_DEFAULT:M*GSS*}'
GSSAPI_BASE
$ env -i __MAKE_CONF= PORT_DBDIR=/var/empty DEFAULT_VERSIONS=ssl=openssl make -V '${OPTIONS_DEFAULT:M*GSS*}'
GSSAPI_NONE
See also https://cgit.freebsd.org/ports/diff/ftp/curl/Makefile?id=6d324c1f70c9
I can't reproduce on -CURRENT when only using base OpenSSL 3.0.
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?fs4p-qlym-wny>
