From owner-svn-ports-head@freebsd.org Sat Jul 13 06:13:50 2019 Return-Path: <owner-svn-ports-head@freebsd.org> Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E19A815E107D; Sat, 13 Jul 2019 06:13:49 +0000 (UTC) (envelope-from jbeich@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2610:1c1:1:6074::16:84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "freefall.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 80CB26FE98; Sat, 13 Jul 2019 06:13:49 +0000 (UTC) (envelope-from jbeich@freebsd.org) Received: by freefall.freebsd.org (Postfix, from userid 1354) id 712DB15530; Sat, 13 Jul 2019 06:13:49 +0000 (UTC) From: Jan Beich <jbeich@FreeBSD.org> To: Mark Linimon <linimon@FreeBSD.org> Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r506498 - in head: devel/py-lxml editors/encryptpad games/lpairs graphics/comical lang/harbour mail/archiveopteryx mail/archiveopteryx-devel multimedia/oscam news/nget References: <201907130007.x6D07Z4Z010235@repo.freebsd.org> <8st2-ea3p-wny@FreeBSD.org> Date: Sat, 13 Jul 2019 08:13:44 +0200 In-Reply-To: <8st2-ea3p-wny@FreeBSD.org> (Jan Beich's message of "Sat, 13 Jul 2019 08:12:42 +0200") Message-ID: <36ja-ea1z-wny@FreeBSD.org> MIME-Version: 1.0 Content-Type: text/plain X-Rspamd-Queue-Id: 80CB26FE98 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[freebsd.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.997,0]; NEURAL_HAM_SHORT(-0.98)[-0.984,0]; NEURAL_HAM_LONG(-1.00)[-0.999,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree for head <svn-ports-head.freebsd.org> List-Unsubscribe: <https://lists.freebsd.org/mailman/options/svn-ports-head>, <mailto:svn-ports-head-request@freebsd.org?subject=unsubscribe> List-Archive: <http://lists.freebsd.org/pipermail/svn-ports-head/> List-Post: <mailto:svn-ports-head@freebsd.org> List-Help: <mailto:svn-ports-head-request@freebsd.org?subject=help> List-Subscribe: <https://lists.freebsd.org/mailman/listinfo/svn-ports-head>, <mailto:svn-ports-head-request@freebsd.org?subject=subscribe> X-List-Received-Date: Sat, 13 Jul 2019 06:13:50 -0000 Jan Beich <jbeich@FreeBSD.org> writes: > Mark Linimon <linimon@FreeBSD.org> writes: > >> Modified: head/devel/py-lxml/Makefile >> ============================================================================== >> --- head/devel/py-lxml/Makefile Fri Jul 12 23:58:22 2019 (r506497) >> +++ head/devel/py-lxml/Makefile Sat Jul 13 00:07:35 2019 (r506498) >> @@ -13,7 +13,7 @@ COMMENT= Pythonic binding for the libxml2 and libxslt >> LICENSE= BSD3CLAUSE >> LICENSE_FILE= ${WRKSRC}/doc/licenses/BSD.txt >> >> -USES= gnome python uniquefiles:dirs >> +USES= compiler gnome python uniquefiles:dirs >> USE_GNOME= libxml2 libxslt >> USE_PYTHON= autoplist concurrent distutils >> >> @@ -35,8 +35,8 @@ post-install-DOCS-on: >> >> .include <bsd.port.pre.mk> >> >> -# on gcc-based architectures, use modern GCC due to use of #pragma >> -.if ${ARCH} == mips || ${ARCH} == mips64 || ${ARCH} == powerpc || >> ${ARCH} == powerpc64 || ${ARCH} == powerpcspe || ${ARCH} == sparc64 >> +# if using gcc, force modern GCC due to use of #pragma >> +.if ${CHOSEN_COMPILER_TYPE} == gcc >> USE_GCC= yes >> .endif > > Why not simplify to USES=compiler:c11 ? Sorry, I haven't read other replies before doing mine. ;\