From owner-svn-ports-head@freebsd.org Wed May 23 12:12:10 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 22DD0EFC328; Wed, 23 May 2018 12:12:10 +0000 (UTC) (envelope-from jmd@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id CC8EF6807A; Wed, 23 May 2018 12:12:09 +0000 (UTC) (envelope-from jmd@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 AF29E22A2E; Wed, 23 May 2018 12:12:09 +0000 (UTC) (envelope-from jmd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w4NCC9Tm004626; Wed, 23 May 2018 12:12:09 GMT (envelope-from jmd@FreeBSD.org) Received: (from jmd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w4NCC986004625; Wed, 23 May 2018 12:12:09 GMT (envelope-from jmd@FreeBSD.org) Message-Id: <201805231212.w4NCC986004625@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jmd set sender to jmd@FreeBSD.org using -f From: Johannes M Dieterich Date: Wed, 23 May 2018 12:12:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r470695 - head/math/blis X-SVN-Group: ports-head X-SVN-Commit-Author: jmd X-SVN-Commit-Paths: head/math/blis X-SVN-Commit-Revision: 470695 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.26 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: Wed, 23 May 2018 12:12:10 -0000 Author: jmd Date: Wed May 23 12:12:09 2018 New Revision: 470695 URL: https://svnweb.freebsd.org/changeset/ports/470695 Log: math/blis: fix compilation failure due to missing python Reported by: pkg-fallout Reviewed by: zeising (mentor) Approved by: zeising (mentor) Modified: head/math/blis/Makefile Modified: head/math/blis/Makefile ============================================================================== --- head/math/blis/Makefile Wed May 23 12:06:48 2018 (r470694) +++ head/math/blis/Makefile Wed May 23 12:12:09 2018 (r470695) @@ -4,6 +4,7 @@ PORTNAME= blis LIBVERSION= 0.3.2 PORTVERSION= ${LIBVERSION}g20180501 +PORTREVISION= 1 CATEGORIES= math MAINTAINER= jmd@FreeBSD.org @@ -27,8 +28,9 @@ USE_GITHUB= yes GH_ACCOUNT= flame GH_TAGNAME= 8adb2f9 -USES= gmake +USES= gmake python shebangfix USE_LDCONFIG= yes +SHEBANG_FILES= build/flatten-headers.py HAS_CONFIGURE= yes