Date: Sat, 11 Apr 2020 18:14:39 +0000 (UTC) From: Thierry Thomas <thierry@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r531448 - in head/math: . libbraiding Message-ID: <202004111814.03BIEdOr060990@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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 <bsd.port.mk> 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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202004111814.03BIEdOr060990>