From owner-svn-ports-all@freebsd.org Tue Mar 31 17:25:43 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 AE2B02644CB; Tue, 31 Mar 2020 17:25:43 +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 48sGSP6mvGz3DYJ; Tue, 31 Mar 2020 17:25:41 +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 16298D9E4; Tue, 31 Mar 2020 17:25:33 +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 02VHPWUB051518; Tue, 31 Mar 2020 17:25:32 GMT (envelope-from thierry@FreeBSD.org) Received: (from thierry@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 02VHPW4T051512; Tue, 31 Mar 2020 17:25:32 GMT (envelope-from thierry@FreeBSD.org) Message-Id: <202003311725.02VHPW4T051512@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: thierry set sender to thierry@FreeBSD.org using -f From: Thierry Thomas Date: Tue, 31 Mar 2020 17:25:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r529989 - in head/math: . rankwidth X-SVN-Group: ports-head X-SVN-Commit-Author: thierry X-SVN-Commit-Paths: in head/math: . rankwidth X-SVN-Commit-Revision: 529989 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: Tue, 31 Mar 2020 17:25:43 -0000 Author: thierry Date: Tue Mar 31 17:25:31 2020 New Revision: 529989 URL: https://svnweb.freebsd.org/changeset/ports/529989 Log: Adding rankwidth / rw, a program to calculate rank-width and rank- decompositions. To be used by SageMath. Added: head/math/rankwidth/ head/math/rankwidth/Makefile (contents, props changed) head/math/rankwidth/distinfo (contents, props changed) head/math/rankwidth/pkg-descr (contents, props changed) head/math/rankwidth/pkg-plist (contents, props changed) Modified: head/math/Makefile Modified: head/math/Makefile ============================================================================== --- head/math/Makefile Tue Mar 31 16:27:30 2020 (r529988) +++ head/math/Makefile Tue Mar 31 17:25:31 2020 (r529989) @@ -840,6 +840,7 @@ SUBDIR += qtiplot-doc SUBDIR += qwtplot3d SUBDIR += randlib + SUBDIR += rankwidth SUBDIR += rapid SUBDIR += reduce SUBDIR += reduce-psl Added: head/math/rankwidth/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/rankwidth/Makefile Tue Mar 31 17:25:31 2020 (r529989) @@ -0,0 +1,23 @@ +# Created by: thierry@pompo.net +# $FreeBSD$ + +PORTNAME= rw +PORTVERSION= 0.8 +CATEGORIES= math +MASTER_SITES= SF/rankwidth/ + +MAINTAINER= thierry@FreeBSD.org +COMMENT= Calculation of rank-width and rank-decompositions + +LICENSE= GPLv2 + +LIB_DEPENDS= libigraph.so:math/igraph + +USES= autoreconf libtool localbase pkgconfig + +OPTIONS_DEFINE= DOCS + +GNU_CONFIGURE= yes +USE_LDCONFIG= yes + +.include Added: head/math/rankwidth/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/rankwidth/distinfo Tue Mar 31 17:25:31 2020 (r529989) @@ -0,0 +1,3 @@ +TIMESTAMP = 1585644841 +SHA256 (rw-0.8.tar.gz) = 60fd5320bef28a5156284fc224534376405f2655c6777a12a05fcacc0576d700 +SIZE (rw-0.8.tar.gz) = 217215 Added: head/math/rankwidth/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/rankwidth/pkg-descr Tue Mar 31 17:25:31 2020 (r529989) @@ -0,0 +1,7 @@ +rw calculates rank-width and rank-decompositions. It is based on ideas from +"Computing rank-width exactly" by Sang-il Oum, "Sopra una formula numerica" by +Ernesto Pascal, "Generation of a Vector from the Lexicographical Index" by B.P. +Buckles and M. Lybanon and "Fast additions on masked integers" by Michael D. +Adams and David S. Wise. + +WWW: https://sourceforge.net/projects/rankwidth/ Added: head/math/rankwidth/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/rankwidth/pkg-plist Tue Mar 31 17:25:31 2020 (r529989) @@ -0,0 +1,10 @@ +bin/rw +include/rw.h +lib/librw.a +lib/librw.so +lib/librw.so.0 +lib/librw.so.0.0.0 +%%PORTDOCS%%%%DOCSDIR%%/Hängematte +%%PORTDOCS%%%%DOCSDIR%%/README +%%PORTDOCS%%%%DOCSDIR%%/grid +%%PORTDOCS%%%%DOCSDIR%%/igrid