From owner-svn-ports-all@freebsd.org Tue Oct 15 13:41:59 2019 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 814EF15F646; Tue, 15 Oct 2019 13:41:59 +0000 (UTC) (envelope-from swills@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) server-signature RSA-PSS (4096 bits) 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 46sxRq2wKbz4DKC; Tue, 15 Oct 2019 13:41:59 +0000 (UTC) (envelope-from swills@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 44D751F56C; Tue, 15 Oct 2019 13:41:59 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x9FDfxsr082100; Tue, 15 Oct 2019 13:41:59 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x9FDfwoh082097; Tue, 15 Oct 2019 13:41:58 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201910151341.x9FDfwoh082097@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Tue, 15 Oct 2019 13:41:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r514525 - head/lang/pocl X-SVN-Group: ports-head X-SVN-Commit-Author: swills X-SVN-Commit-Paths: head/lang/pocl X-SVN-Commit-Revision: 514525 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.29 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: Tue, 15 Oct 2019 13:41:59 -0000 Author: swills Date: Tue Oct 15 13:41:58 2019 New Revision: 514525 URL: https://svnweb.freebsd.org/changeset/ports/514525 Log: lang/pocl: Update to POCL 1.4 PR: 241243 Submitted by: O. Hartmann (maintainer) Modified: head/lang/pocl/Makefile (contents, props changed) head/lang/pocl/distinfo (contents, props changed) head/lang/pocl/pkg-message (contents, props changed) head/lang/pocl/pkg-plist (contents, props changed) Modified: head/lang/pocl/Makefile ============================================================================== --- head/lang/pocl/Makefile Tue Oct 15 13:39:44 2019 (r514524) +++ head/lang/pocl/Makefile Tue Oct 15 13:41:58 2019 (r514525) @@ -1,46 +1,48 @@ # $FreeBSD$ -PORTNAME= pocl -PORTVERSION= 1.3 +PORTNAME= pocl +PORTVERSION= 1.4 DISTVERSIONPREFIX= v -CATEGORIES= lang +CATEGORIES= lang -MAINTAINER= ohartmann@walstatt.org -COMMENT= POrtable Computing Language (POCL) +MAINTAINER= ohartmann@walstatt.org +COMMENT= POrtable Computing Language (POCL) -LICENSE= MIT -LICENSE_FILE= ${WRKSRC}/LICENSE +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE ONLY_FOR_ARCHS= amd64 i386 ONLY_FOR_ARCHS_REASON= only tested on x86 +BROKEN_FreeBSD_10= pocl is not supported on 10.x + BUILD_DEPENDS= llvm${LLVM_VERSION}>=0:devel/llvm${LLVM_VERSION} \ - opencl>=2.1:devel/opencl + opencl>=2.1:devel/opencl LIB_DEPENDS= libhwloc.so:devel/hwloc \ - libOpenCL.so:devel/ocl-icd \ - libltdl.so:devel/libltdl + libOpenCL.so:devel/ocl-icd \ + libltdl.so:devel/libltdl RUN_DEPENDS= ${BUILD_DEPENDS} -LLVM_VERSION= ${MESA_LLVM_VER:U80} +LLVM_VERSION= ${MESA_LLVM_VER:U90} -USES= cmake localbase:ldflags ncurses pkgconfig +USES= cmake localbase:ldflags ncurses pkgconfig -USE_GITHUB= yes +USE_GITHUB= yes USE_LDCONFIG= yes -CMAKE_ARGS= -DWITH_LLVM_CONFIG="${LOCALBASE}/llvm${LLVM_VERSION}/bin/llvm-config" \ - -DPOCL_INSTALL_PKGCONFIG_DIR="${PREFIX}/libdata/pkgconfig" \ - -DKERNELLIB_HOST_CPU_VARIANTS="distro" \ - -DSINGLE_LLVM_LIB=OFF +CMAKE_ARGS= -DWITH_LLVM_CONFIG="${LOCALBASE}/llvm${LLVM_VERSION}/bin/llvm-config" \ + -DPOCL_INSTALL_PKGCONFIG_DIR="${PREFIX}/libdata/pkgconfig" \ + -DKERNELLIB_HOST_CPU_VARIANTS="distro" \ + -DSINGLE_LLVM_LIB=OFF -PLIST_SUB= CONFIGURE_TARGET=${CONFIGURE_TARGET:S/amd64/x86_64/} +PLIST_SUB= CONFIGURE_TARGET=${CONFIGURE_TARGET:S/amd64/x86_64/} OPTIONS_DEFINE= DOCS -DOCS_DESC= Build documentation (needs sphinx) +DOCS_DESC= Build documentation (needs sphinx) DOCS_CMAKE_OFF= -DENABLE_DOCS=OFF DOCS_CMAKE_ON= -DENABLE_DOCS=ON -DOCS_USES= python +DOCS_USES= python DOCS_BUILD_DEPENDS= ${PY_FLAVOR}-sphinx>0:textproc/py-sphinx@${PY_FLAVOR} .include Modified: head/lang/pocl/distinfo ============================================================================== --- head/lang/pocl/distinfo Tue Oct 15 13:39:44 2019 (r514524) +++ head/lang/pocl/distinfo Tue Oct 15 13:41:58 2019 (r514525) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555268767 -SHA256 (pocl-pocl-v1.3_GH0.tar.gz) = 6527e3f47fab7c21e96bc757c4ae3303901f35e23f64642d6da5cc4c4fcc915a -SIZE (pocl-pocl-v1.3_GH0.tar.gz) = 1414807 +TIMESTAMP = 1571058139 +SHA256 (pocl-pocl-v1.4_GH0.tar.gz) = ec237faa83bb1c803fbdf7c6e83d8a2ad68b6f0ed1879c3aa16c0e1dcc478742 +SIZE (pocl-pocl-v1.4_GH0.tar.gz) = 1560972 Modified: head/lang/pocl/pkg-message ============================================================================== --- head/lang/pocl/pkg-message Tue Oct 15 13:39:44 2019 (r514524) +++ head/lang/pocl/pkg-message Tue Oct 15 13:41:58 2019 (r514525) @@ -1,6 +1,4 @@ -[ -{ type: install - message: <