From owner-dev-commits-ports-all@freebsd.org Tue May 25 10:13:43 2021 Return-Path: Delivered-To: dev-commits-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 E60C7649857; Tue, 25 May 2021 10:13:43 +0000 (UTC) (envelope-from git@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) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4Fq9074dmQz4YyJ; Tue, 25 May 2021 10:13:43 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org (gitrepo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:5]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 32B431BE25; Tue, 25 May 2021 10:13:43 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org ([127.0.1.44]) by gitrepo.freebsd.org (8.16.1/8.16.1) with ESMTP id 14PADhqO001124; Tue, 25 May 2021 10:13:43 GMT (envelope-from git@gitrepo.freebsd.org) Received: (from git@localhost) by gitrepo.freebsd.org (8.16.1/8.16.1/Submit) id 14PADhFD001123; Tue, 25 May 2021 10:13:43 GMT (envelope-from git) Date: Tue, 25 May 2021 10:13:43 GMT Message-Id: <202105251013.14PADhFD001123@gitrepo.freebsd.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org From: Thierry Thomas Subject: git: f78b8c777f64 - main - suitesparse-cxsparse: new port for the module CXSparse of SuiteSparse MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Git-Committer: thierry X-Git-Repository: ports X-Git-Refname: refs/heads/main X-Git-Reftype: branch X-Git-Commit: f78b8c777f64eca01c547af5b0b23e58067a14e1 Auto-Submitted: auto-generated X-BeenThere: dev-commits-ports-all@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: Commit messages for all branches of the ports repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 May 2021 10:13:44 -0000 The branch main has been updated by thierry: URL: https://cgit.FreeBSD.org/ports/commit/?id=f78b8c777f64eca01c547af5b0b23e58067a14e1 commit f78b8c777f64eca01c547af5b0b23e58067a14e1 Author: Thierry Thomas AuthorDate: 2021-05-24 16:41:50 +0000 Commit: Thierry Thomas CommitDate: 2021-05-25 10:00:06 +0000 suitesparse-cxsparse: new port for the module CXSparse of SuiteSparse --- math/suitesparse-cxsparse/Makefile | 18 ++++++++++++++++++ .../suitesparse-cxsparse/files/patch-CXSparse_Makefile | 11 +++++++++++ math/suitesparse-cxsparse/pkg-descr | 6 ++++++ math/suitesparse-cxsparse/pkg-plist | 5 +++++ 4 files changed, 40 insertions(+) diff --git a/math/suitesparse-cxsparse/Makefile b/math/suitesparse-cxsparse/Makefile new file mode 100644 index 000000000000..8b3c347a8ae3 --- /dev/null +++ b/math/suitesparse-cxsparse/Makefile @@ -0,0 +1,18 @@ +# Created by: Thierry Thomas () + +PORTNAME= CXSparse +PORTVERSION= 3.2.0 +CATEGORIES= math + +COMMENT= Extended version of CSparse + +LICENSE= LGPL21+ + +USES= localbase:ldflags +OMP_NEEDED= yes + +BUILD_WRKSRC= ${WRKSRC}/${PORTNAME} +USE_LDCONFIG= yes + +.include "${.CURDIR}/../../math/suitesparse/bsd.suitesparse.mk" +.include diff --git a/math/suitesparse-cxsparse/files/patch-CXSparse_Makefile b/math/suitesparse-cxsparse/files/patch-CXSparse_Makefile new file mode 100644 index 000000000000..e055d6e9f970 --- /dev/null +++ b/math/suitesparse-cxsparse/files/patch-CXSparse_Makefile @@ -0,0 +1,11 @@ +--- CXSparse/Makefile.orig 2021-05-17 01:04:52 UTC ++++ CXSparse/Makefile +@@ -13,7 +13,7 @@ C: + ( cd Lib ; $(MAKE) ) + ( cd Demo ; $(MAKE) ) + +-all: C cov ++all: C + + library: + ( cd Lib ; $(MAKE) ) diff --git a/math/suitesparse-cxsparse/pkg-descr b/math/suitesparse-cxsparse/pkg-descr new file mode 100644 index 000000000000..c1fbd7f657e7 --- /dev/null +++ b/math/suitesparse-cxsparse/pkg-descr @@ -0,0 +1,6 @@ +This port installs the module CXSparse of SuiteSparse. + +CXSparse is a version of CSparse that operates on both real and complex +matrices, using either int or SuiteSparse_long integers. + +WWW: http://faculty.cse.tamu.edu/davis/suitesparse.html diff --git a/math/suitesparse-cxsparse/pkg-plist b/math/suitesparse-cxsparse/pkg-plist new file mode 100644 index 000000000000..781f50f0c689 --- /dev/null +++ b/math/suitesparse-cxsparse/pkg-plist @@ -0,0 +1,5 @@ +include/suitesparse/cs.h +lib/libcxsparse.so +lib/libcxsparse.so.3 +lib/libcxsparse.so.3.2.0 +%%PORTDOCS%%%%DOCSDIR%%/CXSPARSE_README.txt