From owner-svn-ports-all@freebsd.org Sat Apr 4 17:52:32 2020 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 51FB427B9C7; Sat, 4 Apr 2020 17:52:32 +0000 (UTC) (envelope-from thierry@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 48vksV3tnbz3JnP; Sat, 4 Apr 2020 17:52:30 +0000 (UTC) (envelope-from thierry@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 142772537F; Sat, 4 Apr 2020 17:50:41 +0000 (UTC) (envelope-from thierry@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 034Hoek5033167; Sat, 4 Apr 2020 17:50:40 GMT (envelope-from thierry@FreeBSD.org) Received: (from thierry@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 034HoeuB033162; Sat, 4 Apr 2020 17:50:40 GMT (envelope-from thierry@FreeBSD.org) Message-Id: <202004041750.034HoeuB033162@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: thierry set sender to thierry@FreeBSD.org using -f From: Thierry Thomas Date: Sat, 4 Apr 2020 17:50:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r530697 - in head/math: . m4rie X-SVN-Group: ports-head X-SVN-Commit-Author: thierry X-SVN-Commit-Paths: in head/math: . m4rie X-SVN-Commit-Revision: 530697 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: Sat, 04 Apr 2020 17:52:32 -0000 Author: thierry Date: Sat Apr 4 17:50:39 2020 New Revision: 530697 URL: https://svnweb.freebsd.org/changeset/ports/530697 Log: Adding M4RIE, a library for fast arithmetic with dense matrices over GF(2^e) for 2 <= e <= 16. To be used by SageMath. Added: head/math/m4rie/ head/math/m4rie/Makefile (contents, props changed) head/math/m4rie/distinfo (contents, props changed) head/math/m4rie/pkg-descr (contents, props changed) head/math/m4rie/pkg-plist (contents, props changed) Modified: head/math/Makefile Modified: head/math/Makefile ============================================================================== --- head/math/Makefile Sat Apr 4 17:47:56 2020 (r530696) +++ head/math/Makefile Sat Apr 4 17:50:39 2020 (r530697) @@ -379,6 +379,7 @@ SUBDIR += ltl SUBDIR += ltl2ba SUBDIR += m4ri + SUBDIR += m4rie SUBDIR += mate-calc SUBDIR += math77 SUBDIR += mathgl Added: head/math/m4rie/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/m4rie/Makefile Sat Apr 4 17:50:39 2020 (r530697) @@ -0,0 +1,27 @@ +# Created by: thierry@pompo.net +# $FreeBSD$ + +PORTNAME= M4RIE +PORTVERSION= 20200115 +DISTVERSIONPREFIX= release- +CATEGORIES= math + +MAINTAINER= thierry@FreeBSD.org +COMMENT= Library for fast arithmetic with dense matrices over GF(2^e) + +LICENSE= GPLv2+ + +LIB_DEPENDS= libm4ri.so:math/m4ri + +USE_GITHUB= yes +GH_ACCOUNT= malb +GH_PROJECT= ${PORTNAME:tl} + +USES= autoreconf libtool localbase pkgconfig + +GNU_CONFIGURE= yes +USE_LDCONFIG= yes + +TEST_TARGET= check + +.include Added: head/math/m4rie/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/m4rie/distinfo Sat Apr 4 17:50:39 2020 (r530697) @@ -0,0 +1,3 @@ +TIMESTAMP = 1586021030 +SHA256 (malb-m4rie-release-20200115_GH0.tar.gz) = 2d38af6afe01cd1b21baa746cb108fb262d775cc5180883592a3971fb970f357 +SIZE (malb-m4rie-release-20200115_GH0.tar.gz) = 167356 Added: head/math/m4rie/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/m4rie/pkg-descr Sat Apr 4 17:50:39 2020 (r530697) @@ -0,0 +1,5 @@ +M4RIE is a library for fast arithmetic with dense matrices over GF(2^e) for +2<=e<=16. The name stems from the fact that is relies heavily on M4RI. + +WWW: https://bitbucket.org/malb/m4rie/src/master/ +WWW: https://github.com/malb/m4rie Added: head/math/m4rie/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/m4rie/pkg-plist Sat Apr 4 17:50:39 2020 (r530697) @@ -0,0 +1,20 @@ +include/m4rie/blm.h +include/m4rie/conversion.h +include/m4rie/echelonform.h +include/m4rie/gf2e.h +include/m4rie/gf2x.h +include/m4rie/m4ri_functions.h +include/m4rie/m4rie.h +include/m4rie/mzd_poly.h +include/m4rie/mzd_ptr.h +include/m4rie/mzd_slice.h +include/m4rie/mzed.h +include/m4rie/newton_john.h +include/m4rie/permutation.h +include/m4rie/ple.h +include/m4rie/strassen.h +include/m4rie/trsm.h +lib/libm4rie-0.0.20200115.so +lib/libm4rie.a +lib/libm4rie.so +libdata/pkgconfig/m4rie.pc