From owner-svn-ports-head@freebsd.org Sat Apr 11 18:14:41 2020 Return-Path: Delivered-To: svn-ports-head@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 197202BF2B0; Sat, 11 Apr 2020 18:14:41 +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 49031r71Qnz3xZZ; Sat, 11 Apr 2020 18:14:40 +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 CDA871C31F; Sat, 11 Apr 2020 18:14:40 +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 03BIEepL060994; Sat, 11 Apr 2020 18:14:40 GMT (envelope-from thierry@FreeBSD.org) Received: (from thierry@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 03BIEdOr060990; Sat, 11 Apr 2020 18:14:39 GMT (envelope-from thierry@FreeBSD.org) Message-Id: <202004111814.03BIEdOr060990@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: thierry set sender to thierry@FreeBSD.org using -f From: Thierry Thomas Date: Sat, 11 Apr 2020 18:14:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r531448 - in head/math: . libbraiding X-SVN-Group: ports-head X-SVN-Commit-Author: thierry X-SVN-Commit-Paths: in head/math: . libbraiding X-SVN-Commit-Revision: 531448 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.29 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: Sat, 11 Apr 2020 18:14:41 -0000 Author: thierry Date: Sat Apr 11 18:14:39 2020 New Revision: 531448 URL: https://svnweb.freebsd.org/changeset/ports/531448 Log: Adding libbraiding, a C++ library for computations on braid groups. To be used by SageMath. Added: head/math/libbraiding/ head/math/libbraiding/Makefile (contents, props changed) head/math/libbraiding/distinfo (contents, props changed) head/math/libbraiding/pkg-descr (contents, props changed) head/math/libbraiding/pkg-plist (contents, props changed) Modified: head/math/Makefile Modified: head/math/Makefile ============================================================================== --- head/math/Makefile Sat Apr 11 18:11:30 2020 (r531447) +++ head/math/Makefile Sat Apr 11 18:14:39 2020 (r531448) @@ -353,6 +353,7 @@ SUBDIR += lemon SUBDIR += levmar SUBDIR += libRmath + SUBDIR += libbraiding SUBDIR += libccd SUBDIR += libflame SUBDIR += liblbfgs Added: head/math/libbraiding/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/libbraiding/Makefile Sat Apr 11 18:14:39 2020 (r531448) @@ -0,0 +1,21 @@ +# Created by: thierry@pompo.net +# $FreeBSD$ + +PORTNAME= libbraiding +PORTVERSION= 1.0 +CATEGORIES= math + +MAINTAINER= thierry@FreeBSD.org +COMMENT= C++ library for computations on braid groups + +LICENSE= GPLv3 + +USE_GITHUB= yes +GH_ACCOUNT= miguelmarco + +USES= autoreconf libtool + +GNU_CONFIGURE= yes +USE_LDCONFIG= yes + +.include Added: head/math/libbraiding/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/libbraiding/distinfo Sat Apr 11 18:14:39 2020 (r531448) @@ -0,0 +1,3 @@ +TIMESTAMP = 1586616485 +SHA256 (miguelmarco-libbraiding-1.0_GH0.tar.gz) = db713898a94f4515ec97021f8971f0c392366e675a53863ff4f170700fa386de +SIZE (miguelmarco-libbraiding-1.0_GH0.tar.gz) = 42976 Added: head/math/libbraiding/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/libbraiding/pkg-descr Sat Apr 11 18:14:39 2020 (r531448) @@ -0,0 +1,8 @@ +This is a project to expose the functionalitis of the Braiding program as a +shared library. The original goal is to include it as a component of SageMath, +but it can be used in any other c++ program. + +It allows various computations on braid groups, such as normal forms. + +WWW: https://github.com/miguelmarco/libbraiding +WWW: https://github.com/jeanluct/braidlab Added: head/math/libbraiding/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/libbraiding/pkg-plist Sat Apr 11 18:14:39 2020 (r531448) @@ -0,0 +1,8 @@ +include/braiding.h +include/cbraid.h +include/cbraid_implementation.h +include/cbraid_interface.h +lib/libbraiding.a +lib/libbraiding.so +lib/libbraiding.so.0 +lib/libbraiding.so.0.0.0