From owner-freebsd-ports@freebsd.org Wed Jul 8 13:44:25 2020 Return-Path: Delivered-To: freebsd-ports@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 7344536351E for ; Wed, 8 Jul 2020 13:44:25 +0000 (UTC) (envelope-from cmt@burggraben.net) Received: from smtp.burggraben.net (smtp.burggraben.net [IPv6:2a01:4f8:140:510a::3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "smtp.burggraben.net", Issuer "Christoph Moench-Tegeder" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 4B20sN5B5cz45Xv for ; Wed, 8 Jul 2020 13:44:24 +0000 (UTC) (envelope-from cmt@burggraben.net) Received: from elch.exwg.net (elch.exwg.net [IPv6:2001:470:7120:1:127b:44ff:fe4f:148d]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "elch.exwg.net", Issuer "Christoph Moench-Tegeder" (not verified)) by smtp.burggraben.net (Postfix) with ESMTPS id 915F5C0030D for ; Wed, 8 Jul 2020 15:44:21 +0200 (CEST) Received: by elch.exwg.net (Postfix, from userid 1000) id 3D1E8139857; Wed, 8 Jul 2020 15:44:21 +0200 (CEST) Date: Wed, 8 Jul 2020 15:44:21 +0200 From: Christoph Moench-Tegeder To: FreeBSD Ports Subject: Re: net/qt5-network Message-ID: <20200708134421.GA64200@elch.exwg.net> References: MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.14.5 (2020-06-23) X-Rspamd-Queue-Id: 4B20sN5B5cz45Xv X-Spamd-Bar: - Authentication-Results: mx1.freebsd.org; dkim=none; dmarc=none; spf=pass (mx1.freebsd.org: domain of cmt@burggraben.net designates 2a01:4f8:140:510a::3 as permitted sender) smtp.mailfrom=cmt@burggraben.net X-Spamd-Result: default: False [-1.71 / 15.00]; ARC_NA(0.00)[]; NEURAL_HAM_MEDIUM(-0.08)[-0.084]; FROM_HAS_DN(0.00)[]; TO_MATCH_ENVRCPT_ALL(0.00)[]; R_SPF_ALLOW(-0.20)[+ip6:2a01:4f8:140:510a::3]; MIME_GOOD(-0.10)[text/plain]; PREVIOUSLY_DELIVERED(0.00)[freebsd-ports@freebsd.org]; DMARC_NA(0.00)[burggraben.net]; RCPT_COUNT_ONE(0.00)[1]; NEURAL_HAM_LONG(-0.94)[-0.945]; TO_DN_ALL(0.00)[]; RCVD_IN_DNSWL_MED(-0.20)[2a01:4f8:140:510a::3:from]; NEURAL_HAM_SHORT(-0.18)[-0.179]; FROM_EQ_ENVFROM(0.00)[]; R_DKIM_NA(0.00)[]; MIME_TRACE(0.00)[0:+]; ASN(0.00)[asn:24940, ipnet:2a01:4f8::/29, country:DE]; RCVD_COUNT_TWO(0.00)[2]; RCVD_TLS_ALL(0.00)[] X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 08 Jul 2020 13:44:25 -0000 ## Carmel NY (carmel_ny@outlook.com): > The entire build log, what there is of it, is available here: > https://seibercom.net/logs/qt5-network_build.log And there's your problem: : #### /usr/local/etc/poudriere.d/make.conf #### : : LICENSES_ACCEPTED+= PDFlib : DEFAULT_VERSIONS=samba=4.11 : DEFAULT_VERSIONS+=ssl=openssl : DEFAULT_VERSIONS=mysql=8.0 : DEFAULT_VERSIONS=python=3.7 : DEFAULT_VERSIONS=python3=3.7 You are setting DEFAULT_VERSIONS multiple times, always writing over the previous assignment (except for that one line for "ssl=openssl", but that's overwritten with the next line again). Either use DEFAULT_VERSIONS=samba=4.11 ssl=openssl mysql=8.0 [...] or DEFAULT_VERSIONS+=samba=4.11 DEFAULT_VERSIONS+=ssl=openssl DEFAULT_VERSIONS+=mysql=8.0 [...] If you use the multiline version, use "+=" consistenly - it's way too easy to copy the first line and accidently use "=" (assignment, not addition). See make(1), section "VARIABLE ASSIGNMENTS" for details on that syntax. BTW, the same goes for WITH_DEBUG_PORTS. Didn't you notice that you got wrong mysql and samba versions? Also, you can use "make -V DEFAULT_VERSIONS" in any port directory to check your settings (as far as they're in /etc/make.conf). Regards, Christoph -- Spare Space