From nobody Sun Dec 3 09:23:46 2023 X-Original-To: dev-commits-ports-all@mlmmj.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mlmmj.nyi.freebsd.org (Postfix) with ESMTP id 4SjhF06GZ2z52b5M; Sun, 3 Dec 2023 09:23:48 +0000 (UTC) (envelope-from joneum@FreeBSD.org) Received: from mail.xn--zhlsdorff-q9a.eu (mail.xn--zhlsdorff-q9a.eu [IPv6:2a01:4f8:261:3bc6::151]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4SjhF05Pqfz3Tn4; Sun, 3 Dec 2023 09:23:48 +0000 (UTC) (envelope-from joneum@FreeBSD.org) Authentication-Results: mx1.freebsd.org; none Received: from [192.168.188.37] (p579931d3.dip0.t-ipconnect.de [87.153.49.211]) (using TLSv1.3 with cipher TLS_AES_128_GCM_SHA256 (128/128 bits) key-exchange X25519 server-signature ECDSA (prime256v1) server-digest SHA256) (No client certificate requested) (Authenticated sender: jochen@toco-domains.de) by mail.xn--zhlsdorff-q9a.eu (Postfix) with ESMTPSA id 0FB6F7DA0D; Sun, 3 Dec 2023 09:23:47 +0000 (UTC) Message-ID: <1c1b367b-09e5-4685-a5fc-d90fe2ed9d46@FreeBSD.org> Date: Sun, 3 Dec 2023 10:23:46 +0100 List-Id: Commit messages for all branches of the ports repository List-Archive: https://lists.freebsd.org/archives/dev-commits-ports-all List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-dev-commits-ports-all@freebsd.org X-BeenThere: dev-commits-ports-all@freebsd.org MIME-Version: 1.0 User-Agent: Mozilla Thunderbird Subject: Re: git: aa8f9390170e - main - www/nginx-full: fix package build Content-Language: de-DE To: Koichiro Iwao , ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org, "portmgr@FreeBSD.org" References: <202312030903.3B393WYT052830@gitrepo.freebsd.org> From: Jochen Neumeister In-Reply-To: <202312030903.3B393WYT052830@gitrepo.freebsd.org> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Score: -0.10 X-Rspamd-Action: no action X-Spam-Status: No, score=-0.10 X-Rspamd-Server: mail.xn--zhlsdorff-q9a.eu X-Rspamd-Pre-Result: action=no action; module=multimap; Matched map: WHITELIST_SENDER_DOMAIN X-Spamd-Bar: ---- X-Rspamd-Pre-Result: action=no action; module=replies; Message is reply to one we originated X-Spamd-Result: default: False [-4.00 / 15.00]; REPLY(-4.00)[]; ASN(0.00)[asn:24940, ipnet:2a01:4f8::/32, country:DE] X-Rspamd-Queue-Id: 4SjhF05Pqfz3Tn4 Am 03.12.23 um 10:03 schrieb Koichiro Iwao: > The branch main has been updated by meta: > > URL: https://cgit.FreeBSD.org/ports/commit/?id=aa8f9390170e1e4f8470ccd7f03e54ab0ba77e61 > > commit aa8f9390170e1e4f8470ccd7f03e54ab0ba77e61 > Author: Koichiro Iwao > AuthorDate: 2023-11-22 14:26:25 +0000 > Commit: Koichiro Iwao > CommitDate: 2023-12-03 09:03:15 +0000 > > www/nginx-full: fix package build > > nginx-full requires either to enable GSSAPI_MIT or GSSAPI_HEIMDAL but > none is enabled. As a result, fails to build bibary package on package > build cluster. > > PR: 275262 > Approved by: maintainer timeout I don't see a "maintainer timeout" here. The PR was opened on 22.11.2023. So it has not yet exceeded the 2 weeks. That would be 06.12.2023 at the earliest. You can find the policies here: https://www.freebsd.org/portmgr/policies_contributors/ Please refrain from publishing something as a "maintainer timeout" that is not correct, thank you. Cheers Jochen > --- > www/nginx-full/Makefile | 6 ++++++ > 1 file changed, 6 insertions(+) > > diff --git a/www/nginx-full/Makefile b/www/nginx-full/Makefile > index 1aa50bba4d76..439f80968324 100644 > --- a/www/nginx-full/Makefile > +++ b/www/nginx-full/Makefile > @@ -35,4 +35,10 @@ OPTIONS_DEFAULT=DSO DEBUG DEBUGLOG FILE_AIO GOOGLE_PERFTOOLS \ > RTMP SET_MISC SFLOW SHIBBOLETH SLOWFS_CACHE SMALL_LIGHT \ > SRCACHE STATSD VOD VTS UDPLOG X11 XSS WEBSOCKIFY > > +.if defined(PACKAGE_BUILDING) || defined(BATCH) > +# Either GSSAPI_MIT or GSSAPI_HEIMDAL must be enabled to build binary package. > +# There's no chance to choose GSSAPI_RADIO via dialog while package building. > +OPTIONS_DEFAULT+= GSSAPI_MIT > +.endif > + > .include "${MASTERDIR}/Makefile"