Re: problem with poudriere && port ftp/curl
Date: Fri, 11 Aug 2023 21:59:45 UTC
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.