From owner-svn-ports-head@freebsd.org Thu Dec 24 13:33:23 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 E940B4C4816; Thu, 24 Dec 2020 13:33:23 +0000 (UTC) (envelope-from fluffy@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 4D1rcg6FJ3z4Qvl; Thu, 24 Dec 2020 13:33:23 +0000 (UTC) (envelope-from fluffy@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 C96E6116B1; Thu, 24 Dec 2020 13:33:23 +0000 (UTC) (envelope-from fluffy@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 0BODXNpq017787; Thu, 24 Dec 2020 13:33:23 GMT (envelope-from fluffy@FreeBSD.org) Received: (from fluffy@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 0BODXN6Z017784; Thu, 24 Dec 2020 13:33:23 GMT (envelope-from fluffy@FreeBSD.org) Message-Id: <202012241333.0BODXN6Z017784@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: fluffy set sender to fluffy@FreeBSD.org using -f From: Dima Panov Date: Thu, 24 Dec 2020 13:33:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r559086 - in head/net/ceph14: . files X-SVN-Group: ports-head X-SVN-Commit-Author: fluffy X-SVN-Commit-Paths: in head/net/ceph14: . files X-SVN-Commit-Revision: 559086 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: Thu, 24 Dec 2020 13:33:24 -0000 Author: fluffy Date: Thu Dec 24 13:33:22 2020 New Revision: 559086 URL: https://svnweb.freebsd.org/changeset/ports/559086 Log: net/ceph14: switch to PYTHON_EXT_SUFFIX Allow to build with python39 Use binary_alias for sphinx-build Modified: head/net/ceph14/Makefile head/net/ceph14/files/patch-cmake_modules_FindPython3Interp.cmake head/net/ceph14/files/patch-cmake_modules_FindPython3Libs.cmake Modified: head/net/ceph14/Makefile ============================================================================== --- head/net/ceph14/Makefile Thu Dec 24 13:30:35 2020 (r559085) +++ head/net/ceph14/Makefile Thu Dec 24 13:33:22 2020 (r559086) @@ -4,7 +4,7 @@ PORTNAME= ceph DISTVERSIONPREFIX= v DISTVERSION= 14.2.11 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= net PKGNAMESUFFIX= 14 @@ -62,7 +62,7 @@ RUN_DEPENDS= \ ${PYTHON_PKGNAMEPREFIX}requests>=0:www/py-requests@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}routes>=0:www/py-routes@${PY_FLAVOR} -USES= cmake:noninja dos2unix fuse gettext-runtime gmake ncurses \ +USES= cmake:noninja compiler:c++17-lang dos2unix fuse gettext-runtime gmake ncurses \ pkgconfig python:3.7+ shebangfix ssl USE_PYTHON= cython py3kplist USE_OPENLDAP= yes @@ -106,6 +106,8 @@ USE_LDCONFIG= yes USERS= ceph GROUPS= ceph + +BINARY_ALIAS= sphinx-build=sphinx-build-${PYTHON_VER} # PLIST_SUB=CMAKE_BUILD_TYPE_regex="\bdebug\b" Modified: head/net/ceph14/files/patch-cmake_modules_FindPython3Interp.cmake ============================================================================== --- head/net/ceph14/files/patch-cmake_modules_FindPython3Interp.cmake Thu Dec 24 13:30:35 2020 (r559085) +++ head/net/ceph14/files/patch-cmake_modules_FindPython3Interp.cmake Thu Dec 24 13:33:22 2020 (r559086) @@ -5,7 +5,7 @@ unset(_Python3_NAMES) -set(_PYTHON3_VERSIONS 3.6 3.5 3.4 3.3 3.2 3.1 3.0) -+set(_PYTHON3_VERSIONS 3.8 3.7 3.6 3.5 3.4 3.3 3.2 3.1 3.0) ++set(_PYTHON3_VERSIONS 3.9 3.8 3.7 3.6 3.5 3.4 3.3 3.2 3.1 3.0) if(Python3Interp_FIND_VERSION) if(Python3Interp_FIND_VERSION_COUNT GREATER 1) Modified: head/net/ceph14/files/patch-cmake_modules_FindPython3Libs.cmake ============================================================================== --- head/net/ceph14/files/patch-cmake_modules_FindPython3Libs.cmake Thu Dec 24 13:30:35 2020 (r559085) +++ head/net/ceph14/files/patch-cmake_modules_FindPython3Libs.cmake Thu Dec 24 13:33:22 2020 (r559086) @@ -5,7 +5,7 @@ set(CMAKE_FIND_FRAMEWORK LAST) -set(_PYTHON3_VERSIONS 3.6 3.5 3.4 3.3 3.2 3.1 3.0) -+set(_PYTHON3_VERSIONS 3.8 3.7 3.6 3.5 3.4 3.3 3.2 3.1 3.0) ++set(_PYTHON3_VERSIONS 3.9 3.8 3.7 3.6 3.5 3.4 3.3 3.2 3.1 3.0) if(Python3Libs_FIND_VERSION) if(Python3Libs_FIND_VERSION_COUNT GREATER 1)