From owner-svn-ports-head@freebsd.org Sun Mar 14 11:01:50 2021 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 25FD957B4FA; Sun, 14 Mar 2021 11:01:50 +0000 (UTC) (envelope-from kai@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 "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4DyxSt0MLQz3NpM; Sun, 14 Mar 2021 11:01:50 +0000 (UTC) (envelope-from kai@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 F35BB1C782; Sun, 14 Mar 2021 11:01:49 +0000 (UTC) (envelope-from kai@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 12EB1nxu010998; Sun, 14 Mar 2021 11:01:49 GMT (envelope-from kai@FreeBSD.org) Received: (from kai@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 12EB1niQ010997; Sun, 14 Mar 2021 11:01:49 GMT (envelope-from kai@FreeBSD.org) Message-Id: <202103141101.12EB1niQ010997@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kai set sender to kai@FreeBSD.org using -f From: Kai Knoblich Date: Sun, 14 Mar 2021 11:01:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r568378 - head/math/py-piranha X-SVN-Group: ports-head X-SVN-Commit-Author: kai X-SVN-Commit-Paths: head/math/py-piranha X-SVN-Commit-Revision: 568378 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.34 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: Sun, 14 Mar 2021 11:01:50 -0000 Author: kai Date: Sun Mar 14 11:01:49 2021 New Revision: 568378 URL: https://svnweb.freebsd.org/changeset/ports/568378 Log: math/py-piranha: Fix build with Python 3.8 and 3.9 * Adjust regexp pattern to make builds with Python 3.8/3.9 possible and remove Python 2 support from it while I'm here because the port is Python 3 only since r559531. Excerpt from the log: ninja: error: '/usr/local/lib/libpython3.8m.so', needed by 'pyranha/_core.so', missing and no known rule to make it PR: 253815 Approved by: portmgr (build fix) Modified: head/math/py-piranha/Makefile Modified: head/math/py-piranha/Makefile ============================================================================== --- head/math/py-piranha/Makefile Sun Mar 14 10:53:04 2021 (r568377) +++ head/math/py-piranha/Makefile Sun Mar 14 11:01:49 2021 (r568378) @@ -26,7 +26,7 @@ USE_GITHUB= yes GH_ACCOUNT= bluescarni USE_PYTHON= flavors -PYTHON_SUFFIX_LETTER= ${PYTHON_VER:C/^2.*//:C/^3.*/m/} +PYTHON_SUFFIX_LETTER= ${PYTHON_VER:C/^3.[67]/m/:C/^3.[89]//} CMAKE_ON= BUILD_PYRANHA CMAKE_OFF= PIRANHA_INSTALL_HEADERS