From owner-svn-ports-head@freebsd.org Sun May 6 23:58:11 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 27255FCACBF; Sun, 6 May 2018 23:58:11 +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.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 D18D782E19; Sun, 6 May 2018 23:58:10 +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 C79A613A9E; Sun, 6 May 2018 23:58:10 +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 w46NwAa2079434; Sun, 6 May 2018 23:58:10 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w46NwACa079433; Sun, 6 May 2018 23:58:10 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201805062358.w46NwACa079433@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Sun, 6 May 2018 23:58:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r469258 - head/math/superlu X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: head/math/superlu X-SVN-Commit-Revision: 469258 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.25 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: Sun, 06 May 2018 23:58:11 -0000 Author: yuri Date: Sun May 6 23:58:10 2018 New Revision: 469258 URL: https://svnweb.freebsd.org/changeset/ports/469258 Log: math/superlu: robert.ayrapetyan@gmail.com takes maintainership Also removed the dysfunctional TEST option and added the do-test target that enables the 'make test'. PR: 228009 Submitted by: robert.ayrapetyan@gmail.com Modified: head/math/superlu/Makefile Modified: head/math/superlu/Makefile ============================================================================== --- head/math/superlu/Makefile Sun May 6 23:19:52 2018 (r469257) +++ head/math/superlu/Makefile Sun May 6 23:58:10 2018 (r469258) @@ -10,7 +10,7 @@ MASTER_SITES= http://crd-legacy.lbl.gov/~xiaoye/SuperL DISTNAME= ${PORTNAME}_${PORTVERSION} DIST_SUBDIR= ${PORTNAME} -MAINTAINER= ports@FreeBSD.org +MAINTAINER= robert.ayrapetyan@gmail.com COMMENT= Library of routines for performing sparse factorization LICENSE= BSD3CLAUSE @@ -27,7 +27,7 @@ CMAKE_ARGS= -DUSE_XSDK_DEFAULTS:BOOL=ON \ PORTDOCS= * -OPTIONS_DEFINE= DOCS TEST +OPTIONS_DEFINE= DOCS OPTIONS_SINGLE= BLAS OPTIONS_SINGLE_BLAS= ATLAS GOTOBLAS OPENBLAS REFERENCE OPTIONS_DEFAULT= REFERENCE @@ -46,7 +46,6 @@ OPENBLAS_CMAKE_ARGS= -DBLA_VENDOR:STRING="OpenBLAS" REFERENCE_DESC= Reference blas implementation REFERENCE_USES= blaslapack REFERENCE_CMAKE_ARGS= -DBLA_VENDOR:STRING="Generic" -TEST_CMAKE_ARGS= -Denable_tests:BOOL=ON SLU_DOCS= SLU_general.ps.gz simax-29176.pdf @@ -62,5 +61,11 @@ post-install-DOCS-on: ${STAGEDIR}${DOCSDIR}) (cd ${WRKSRC}/DOC && ${COPYTREE_SHARE} "html ug.pdf" \ ${STAGEDIR}${DOCSDIR}) + +do-test: + @cd ${BUILD_WRKSRC} && \ + ${SETENV} ${CONFIGURE_ENV} ${CMAKE_BIN} ${CMAKE_ARGS} -Denable_tests:BOOL=ON ${CMAKE_SOURCE_PATH} && \ + ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_ARGS} ${ALL_TARGET} && \ + ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_ARGS} test .include