From owner-svn-ports-all@freebsd.org Sun Oct 4 18:12:52 2020 Return-Path: Delivered-To: svn-ports-all@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 1CD1142EE8A; Sun, 4 Oct 2020 18:12:52 +0000 (UTC) (envelope-from thierry@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (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 "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4C4BfW72C2z42mG; Sun, 4 Oct 2020 18:12:51 +0000 (UTC) (envelope-from thierry@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id D5E178744; Sun, 4 Oct 2020 18:12:51 +0000 (UTC) (envelope-from thierry@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 094ICpuU006120; Sun, 4 Oct 2020 18:12:51 GMT (envelope-from thierry@FreeBSD.org) Received: (from thierry@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 094ICpxa006119; Sun, 4 Oct 2020 18:12:51 GMT (envelope-from thierry@FreeBSD.org) Message-Id: <202010041812.094ICpxa006119@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: thierry set sender to thierry@FreeBSD.org using -f From: Thierry Thomas Date: Sun, 4 Oct 2020 18:12:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r551437 - head/math/py-pplpy X-SVN-Group: ports-head X-SVN-Commit-Author: thierry X-SVN-Commit-Paths: head/math/py-pplpy X-SVN-Commit-Revision: 551437 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 04 Oct 2020 18:12:52 -0000 Author: thierry Date: Sun Oct 4 18:12:51 2020 New Revision: 551437 URL: https://svnweb.freebsd.org/changeset/ports/551437 Log: - Add a missing dependency on math/pari - It is broken with clang11, use clang10 if needed. Modified: head/math/py-pplpy/Makefile Modified: head/math/py-pplpy/Makefile ============================================================================== --- head/math/py-pplpy/Makefile Sun Oct 4 18:11:03 2020 (r551436) +++ head/math/py-pplpy/Makefile Sun Oct 4 18:12:51 2020 (r551437) @@ -2,7 +2,8 @@ # $FreeBSD$ PORTNAME= pplpy -DISTVERSION= 0.8.4 +PORTVERSION= 0.8.4 +PORTREVISION= 1 CATEGORIES= math python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -17,6 +18,7 @@ BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}gmpy2-devel>0:ma LIB_DEPENDS= libgmp.so:math/gmp \ libmpfr.so:math/mpfr \ libmpc.so:math/mpc \ + libpari.so:math/pari \ libppl.so:devel/ppl RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}gmpy2-devel>0:math/py-gmpy2-devel@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}cysignals>0:devel/py-cysignals@${PY_FLAVOR} @@ -29,6 +31,16 @@ DOCS_BUILD_DEPENDS= ${PY_SPHINX} DOCS_USES= gmake PORTDOCS= * +.include + +.if ${COMPILER_TYPE} == "clang" && ${COMPILER_VERSION} >= 110 +# error: cannot initialize a parameter of type 'bool' with an rvalue of type 'nullptr_t' +BUILD_DEPENDS+= ${LOCALBASE}/bin/clang10:devel/llvm10 +CPP= ${LOCALBASE}/bin/clang-cpp10 +CC= ${LOCALBASE}/bin/clang10 +CXX= ${LOCALBASE}/bin/clang++10 +.endif + do-build-DOCS-on: (cd ${WRKSRC}/docs && ${GMAKE} html) @@ -36,4 +48,4 @@ post-build-DOCS-on: ${MKDIR} ${STAGEDIR}${DOCSDIR} ${CP} -R ${WRKSRC}/docs/build/html/* ${STAGEDIR}${DOCSDIR} -.include +.include