From owner-svn-ports-all@freebsd.org Thu Oct 31 15:10:47 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 E34AF15C3BC; Thu, 31 Oct 2019 15:10:47 +0000 (UTC) (envelope-from yuri@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 473pfv5jnLz4S0d; Thu, 31 Oct 2019 15:10:47 +0000 (UTC) (envelope-from yuri@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 A70D22471C; Thu, 31 Oct 2019 15:10:47 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x9VFAlmJ035492; Thu, 31 Oct 2019 15:10:47 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x9VFAlBh035489; Thu, 31 Oct 2019 15:10:47 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201910311510.x9VFAlBh035489@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Thu, 31 Oct 2019 15:10:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r516173 - in head: devel devel/bazel029 science/py-tensorflow X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head: devel devel/bazel029 science/py-tensorflow X-SVN-Commit-Revision: 516173 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: Thu, 31 Oct 2019 15:10:48 -0000 Author: yuri Date: Thu Oct 31 15:10:46 2019 New Revision: 516173 URL: https://svnweb.freebsd.org/changeset/ports/516173 Log: science/py-tensorflow: Fix build by using the version of devel/bazel (0.29.0) that is known to be able to build it One of the previous commits to devel/bazel broke tensorflow. Fun fact: the latest version of tensorflow-2.0.0 also fails to build with the latest version of bazel-1.1.0. Added: head/devel/bazel029/ - copied from r513871, head/devel/bazel/ Modified: head/devel/Makefile head/devel/bazel029/Makefile head/science/py-tensorflow/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Thu Oct 31 14:51:23 2019 (r516172) +++ head/devel/Makefile Thu Oct 31 15:10:46 2019 (r516173) @@ -213,6 +213,7 @@ SUBDIR += bashdb SUBDIR += bats-core SUBDIR += bazel + SUBDIR += bazel029 SUBDIR += bazel-buildtools SUBDIR += bbfreeze SUBDIR += bbfreeze-loader Modified: head/devel/bazel029/Makefile ============================================================================== --- head/devel/bazel/Makefile Sun Oct 6 06:47:52 2019 (r513871) +++ head/devel/bazel029/Makefile Thu Oct 31 15:10:46 2019 (r516173) @@ -6,6 +6,7 @@ DISTVERSION= 0.29.0 CATEGORIES= devel java MASTER_SITES= https://storage.googleapis.com/bazel/${PORTVERSION}/rc${FINALRC}/ DISTNAME= bazel-${PORTVERSION}rc${FINALRC}-dist +PKGNAMESUFFIX= 029 MAINTAINER= aehlig@linta.de COMMENT= Fast and correct build system Modified: head/science/py-tensorflow/Makefile ============================================================================== --- head/science/py-tensorflow/Makefile Thu Oct 31 14:51:23 2019 (r516172) +++ head/science/py-tensorflow/Makefile Thu Oct 31 15:10:46 2019 (r516173) @@ -15,7 +15,6 @@ COMMENT= Computation using data flow graphs for scalab LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE -BROKEN= fails to build ONLY_FOR_ARCHS= amd64 BUILD_DEPENDS= ${RUN_DEPENDS} \ @@ -23,7 +22,7 @@ BUILD_DEPENDS= ${RUN_DEPENDS} \ bash:shells/bash \ cython:lang/cython \ swig3.0:devel/swig30 \ - bazel:devel/bazel + bazel:devel/bazel029 LIB_DEPENDS= libsnappy.so:archivers/snappy \ liblmdb.so:databases/lmdb \ libsqlite3.so:databases/sqlite3 \