From owner-svn-ports-all@freebsd.org Sun Oct 6 06:47:53 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 AEDAF12EAA2; Sun, 6 Oct 2019 06:47:53 +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 46mDh94DL3z3FD0; Sun, 6 Oct 2019 06:47:53 +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 6FF27214AB; Sun, 6 Oct 2019 06:47:53 +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 x966lrs3036261; Sun, 6 Oct 2019 06:47:53 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x966lqnZ036258; Sun, 6 Oct 2019 06:47:52 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201910060647.x966lqnZ036258@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Sun, 6 Oct 2019 06:47:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r513871 - head/science/py-tensorflow X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: head/science/py-tensorflow X-SVN-Commit-Revision: 513871 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: Sun, 06 Oct 2019 06:47:53 -0000 Author: yuri Date: Sun Oct 6 06:47:52 2019 New Revision: 513871 URL: https://svnweb.freebsd.org/changeset/ports/513871 Log: science/py-tensorflow: Unbreak by fixing dependencies PR: 240578 Submitted by: amzo1337@gmail.com (maintainer) Modified: head/science/py-tensorflow/Makefile head/science/py-tensorflow/Makefile.MASTER_SITES head/science/py-tensorflow/distinfo Modified: head/science/py-tensorflow/Makefile ============================================================================== --- head/science/py-tensorflow/Makefile Sun Oct 6 05:52:58 2019 (r513870) +++ head/science/py-tensorflow/Makefile Sun Oct 6 06:47:52 2019 (r513871) @@ -3,7 +3,7 @@ PORTNAME= tensorflow DISTVERSIONPREFIX= v DISTVERSION= 1.14.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= science python PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} DIST_SUBDIR= ${PORTNAME} @@ -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} \ Modified: head/science/py-tensorflow/Makefile.MASTER_SITES ============================================================================== --- head/science/py-tensorflow/Makefile.MASTER_SITES Sun Oct 6 05:52:58 2019 (r513870) +++ head/science/py-tensorflow/Makefile.MASTER_SITES Sun Oct 6 06:47:52 2019 (r513871) @@ -14,7 +14,8 @@ DISTFILES+= v0.18.tar.gz:mkldnn \ 1200fe90bb174a6224a525ee60148671a786a71f.tar.gz:neon \ fd3d9af80465e4383162e4a7c5e2f406e82dd968.tar.gz:highway \ license.rst.txt:license \ - backports.weakref-1.0rc1.tar.gz:weakref + backports.weakref-1.0rc1.tar.gz:weakref \ + 0d5f3f2768c6ca2faca0079a997a97ce22997a0c.zip:rulescc MASTER_SITES+= https://github.com/intel/mkl-dnn/archive/:mkldnn \ @@ -31,4 +32,5 @@ MASTER_SITES+= https://github.com/intel/mkl-dnn/archiv http://mirror.tensorflow.org/github.com/intel/ARM_NEON_2_x86_SSE/archive/:neon \ http://mirror.tensorflow.org/github.com/google/highwayhash/archive/:highway \ http://mirror.tensorflow.org/docs.python.org/2.7/_sources/:license \ - https://pypi.python.org/packages/bc/cc/3cdb0a02e7e96f6c70bd971bc8a90b8463fda83e264fa9c5c1c98ceabd81/:weakref + https://pypi.python.org/packages/bc/cc/3cdb0a02e7e96f6c70bd971bc8a90b8463fda83e264fa9c5c1c98ceabd81/:weakref \ + https://mirror.bazel.build/github.com/bazelbuild/rules_cc/archive/:rulescc Modified: head/science/py-tensorflow/distinfo ============================================================================== --- head/science/py-tensorflow/distinfo Sun Oct 6 05:52:58 2019 (r513870) +++ head/science/py-tensorflow/distinfo Sun Oct 6 06:47:52 2019 (r513871) @@ -1,4 +1,4 @@ -TIMESTAMP = 1564939361 +TIMESTAMP = 1570325271 SHA256 (tensorflow/v0.18.tar.gz) = 38a1c02104ee9f630c1ad68164119cd58ad0aaf59e04ccbe7bd5781add7bfbea SIZE (tensorflow/v0.18.tar.gz) = 1497239 SHA256 (tensorflow/daf381e8535a1f1f1b8a75966a74e7cca63dee89.tar.gz) = 56cd3fbbbd94468a5fff58f5df2b6f9de7a0272870c61f6ca05b869934f4802a @@ -29,5 +29,7 @@ SHA256 (tensorflow/license.rst.txt) = e76cacdf0bdd265f SIZE (tensorflow/license.rst.txt) = 45132 SHA256 (tensorflow/backports.weakref-1.0rc1.tar.gz) = 8813bf712a66b3d8b85dc289e1104ed220f1878cf981e2fe756dfaabe9a82892 SIZE (tensorflow/backports.weakref-1.0rc1.tar.gz) = 7761 +SHA256 (tensorflow/0d5f3f2768c6ca2faca0079a997a97ce22997a0c.zip) = 36fa66d4d49debd71d05fba55c1353b522e8caef4a20f8080a3d17cdda001d89 +SIZE (tensorflow/0d5f3f2768c6ca2faca0079a997a97ce22997a0c.zip) = 72534 SHA256 (tensorflow/tensorflow-tensorflow-v1.14.0_GH0.tar.gz) = aa2a6a1daafa3af66807cfe0bc77bfe1144a9a53df9a96bab52e3e575b3047ed SIZE (tensorflow/tensorflow-tensorflow-v1.14.0_GH0.tar.gz) = 41335204