svn commit: r531448 - in head/math: . libbraiding

Thierry Thomas thierry at FreeBSD.org
Sat Apr 11 18:14:41 UTC 2020


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 at pompo.net
+# $FreeBSD$
+
+PORTNAME=	libbraiding
+PORTVERSION=	1.0
+CATEGORIES=	math
+
+MAINTAINER=	thierry at 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


More information about the svn-ports-all mailing list