From owner-svn-ports-head@freebsd.org Mon Aug 3 11:57:56 2020 Return-Path: Delivered-To: svn-ports-head@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 0FFE1378325; Mon, 3 Aug 2020 11:57:56 +0000 (UTC) (envelope-from mat@freebsd.org) Received: from smtp.freebsd.org (smtp.freebsd.org [96.47.72.83]) (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-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "smtp.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4BKxGW6hW6z3Sj1; Mon, 3 Aug 2020 11:57:55 +0000 (UTC) (envelope-from mat@freebsd.org) Received: from mail.j.mat.cc (owncloud.cube.mat.cc [IPv6:2a01:678:4:1::228]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.mat.cc", Issuer "Let's Encrypt Authority X3" (verified OK)) (Authenticated sender: mat/mail) by smtp.freebsd.org (Postfix) with ESMTPSA id AE74028D64; Mon, 3 Aug 2020 11:57:55 +0000 (UTC) (envelope-from mat@freebsd.org) Received: from aching.in.mat.cc (unknown [IPv6:2a01:678:ab:50:5e80:b6ff:fe2c:99e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange ECDHE (P-256) server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) (Authenticated sender: mat@mat.cc) by mail.j.mat.cc (Postfix) with ESMTPSA id 84CF0942D81; Mon, 3 Aug 2020 11:57:54 +0000 (UTC) Date: Mon, 3 Aug 2020 13:57:52 +0200 From: Mathieu Arnold To: Rodrigo Osorio Cc: Adam Weinberger , Cy Schubert , ports-committers , svn-ports-all , svn-ports-head Subject: Re: svn commit: r543580 - in head/net/rsync: . files Message-ID: <20200803115752.2gl6vgmgcf36taku@aching.in.mat.cc> References: <202007280659.06S6xa4M088583@repo.freebsd.org> <202007281441.06SEf15s070772@slippy.cwsent.com> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="3zze7tam3mk5oscv" Content-Disposition: inline In-Reply-To: X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 03 Aug 2020 11:57:56 -0000 --3zze7tam3mk5oscv Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Aug 03, 2020 at 01:24:58PM +0200, Rodrigo Osorio wrote: >=20 > On 7/28/20 10:27 PM, Adam Weinberger wrote: > > > > Past the fetch failure, this also doesn't configure. Is it possible > > > > that a patch didn't get added? > > > >=20 > > > > # Adam > > > >=20 > > > >=20 > > > > checking whether to enable xxhash checksum support... no > > > > configure.sh: error: Failed to find xxhash.h for xxhash checksum= support. > > > > Use --disable-xxhash to continue without it. > > > > =3D=3D=3D> Script "configure" failed unexpectedly. > > > > Please report the problem torodrigo@FreeBSD.org [maintainer] an= d attach th > > > > e > > > > "/wrkdirs/usr/ports/net/rsync/work/rsync-3.2.2/config.log" inclu= ding the > > > > output of the failure of your make command. Also, it might be a = good idea t > > > > o > > > > provide an overview of all packages installed on your system (e.= g. a > > > > /usr/local/sbin/pkg-static info -g -Ea). > > > > *** Error code 1 > > > >=20 > > > > Stop. > > > > make: stopped in /usr/ports/net/rsync > > > > =3D>> Cleaning up wrkdir > > > > =3D=3D=3D> Cleaning for rsync-3.2.2 > > > Looks like it's missing a DEPENDS. > > It depends on xxhash. I suspect it's missing a configure arg. > >=20 > > # Adam >=20 > Yes I didn't try to disable default options, sorry for that. > BTW, do we have a way to test options during build ? For the bind ports, I (ab)use flavors using a Makefile.local file: =E2=9D=AF cat dns/bind911/Makefile.local FLAVORS=3D normal small huge mysql pkcs11 ${OPTIONS_SINGLE_GSSAPI:NGSS= API_NONE:tl} =2Eif empty(FLAVOR) FLAVOR=3D normal =2Eendif =2Eif ${FLAVOR} !=3D normal PKGNAMESUFFIX:=3D ${PKGNAMESUFFIX}-${FLAVOR} =2Eendif =2Eif ${FLAVOR} =3D=3D mysql OPTIONS_SET_FORCE=3D DLZ_MYSQL OPTIONS_UNSET_FORCE=3D THREADS DNSTAP GEOIP =2Eelif ${FLAVOR} =3D=3D small OPTIONS_UNSET_FORCE=3D SSL ${OPTIONS_DEFINE} ${OPTIONS_GROUP_DLZ} =2Eelif ${FLAVOR} =3D=3D pkcs11 OPTIONS_SET_FORCE=3D NATIVE_PKCS11 OPTIONS_UNSET_FORCE=3D SSL =2Eelif ${FLAVOR} =3D=3D huge OPTIONS_SET_FORCE=3D ${OPTIONS_DEFINE} ${OPTIONS_GROUP_DLZ:NDLZ_MYSQL} =2Eelif ${FLAVOR:Mgssapi*} OPTIONS_UNSET_FORCE=3D GSSAPI_NONE OPTIONS_SET_FORCE=3D ${FLAVOR:tu} =2Eendif So when I run poudriere bulk -t dns/bind911@all, it will build all the flavors, and prevent most foot shooting. (Of course, it only works if the port has no flavors to begin with.) --=20 Mathieu Arnold --3zze7tam3mk5oscv Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQKTBAABCgB9FiEEVhwchfRfuV0unqO5KesJApEdfgIFAl8n+7xfFIAAAAAALgAo aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldDU2 MUMxQzg1RjQ1RkI5NUQyRTlFQTNCOTI5RUIwOTAyOTExRDdFMDIACgkQKesJApEd fgJ3JBAAvTK6mIx1l9yTASKxWFvaTZKR9fA06OyxclT2B2m8D451Cj+GQkJMa9ag IjhRZNvgpHtqbFMLntVTCkiCF8uzbEFAwco1h5bbrj+YKLlKUwtT7dmtA5rIHPTU +VkxZ/JU4QkUNWSRSXxZ14LWexBBSW5tdiQBpqEsV84dEVe6tJf2JjBRk4e4OBUJ SW3ljBh37VXHViMHEN8daGkBkRZBmb3iepdB60NcAr0XGJ2iIg+kZE46ZESutgOL PN4ymNJUDd9k9uU78/DAHBheH+Ey7E2sYNaRCp5E0lc3/Rrxu0sFw/bobIM55tOh nUi6S+KVqI3P+bFnWyohxJU7ZOgNzq4EDrQOWjlJ5Tg3zrAihp/jPF7wVYPKP2eK xZo/bZlBVffQcbbQ6zP9rT9bHhEb6lXXcQQOxeWJntDj5KojF0CUu8K5X7nMezcR hz4e1zWEhVRaqJWdb0HE75qBeUdOp1ydU79z8PlqagZ2PuvUANOxgs2B+T0MpFTC awvdPEdgq+opqAop315dez032wRSKnXSPVj38cSBEylL/nr6DWwzYk7RxvJjGXdV smZ+C/uW3A4CnwmaT3fzQTNYdNzb82rhpqZlKYbctxy34nryNpmqVtFfHSgQcFrn wSa0AWJNIEB6Ofj3fzUTKfZbUPOmT9OIFd8ceWJBIEVJa9/kAQc= =xcNO -----END PGP SIGNATURE----- --3zze7tam3mk5oscv--