Date: Fri, 27 Mar 2020 13:54:59 +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: r529249 - in head/math: . cliquer Message-ID: <202003271354.02RDsx1a046228@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: thierry Date: Fri Mar 27 13:54:58 2020 New Revision: 529249 URL: https://svnweb.freebsd.org/changeset/ports/529249 Log: Adding Cliquer, a set of C routines for finding cliques in an arbitrary weighted graph. To be used by SageMath. Added: head/math/cliquer/ head/math/cliquer/Makefile (contents, props changed) head/math/cliquer/distinfo (contents, props changed) head/math/cliquer/pkg-descr (contents, props changed) head/math/cliquer/pkg-plist (contents, props changed) Modified: head/math/Makefile Modified: head/math/Makefile ============================================================================== --- head/math/Makefile Fri Mar 27 13:48:12 2020 (r529248) +++ head/math/Makefile Fri Mar 27 13:54:58 2020 (r529249) @@ -180,6 +180,7 @@ SUBDIR += clblast SUBDIR += clfft SUBDIR += clingo + SUBDIR += cliquer SUBDIR += cln SUBDIR += cloog SUBDIR += clp Added: head/math/cliquer/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/cliquer/Makefile Fri Mar 27 13:54:58 2020 (r529249) @@ -0,0 +1,26 @@ +# Created by: thierry@pompo.net +# $FreeBSD$ + +PORTNAME= cliquer +PORTVERSION= 1.21 +DISTVERSIONPREFIX= v +CATEGORIES= math +#MASTER_SITES= http://users.aalto.fi/~pat/cliquer/ + +MAINTAINER= thierry@FreeBSD.org +COMMENT= Routines for clique searching + +LICENSE= GPLv2 + +USE_GITHUB= yes +GH_ACCOUNT= dimpase +GH_PROJECT= autocliquer + +USES= autoreconf libtool + +GNU_CONFIGURE= yes +USE_LDCONFIG= yes + +TEST_TARGET= check + +.include <bsd.port.mk> Added: head/math/cliquer/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/cliquer/distinfo Fri Mar 27 13:54:58 2020 (r529249) @@ -0,0 +1,3 @@ +TIMESTAMP = 1585306838 +SHA256 (dimpase-autocliquer-v1.21_GH0.tar.gz) = 297de57628cf0d89093ef6d3b366a1594b180970e5ffee1395b2b305859584e6 +SIZE (dimpase-autocliquer-v1.21_GH0.tar.gz) = 78863 Added: head/math/cliquer/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/cliquer/pkg-descr Fri Mar 27 13:54:58 2020 (r529249) @@ -0,0 +1,10 @@ +Cliquer is a set of C routines for finding cliques in an arbitrary weighted +graph. It uses an exact branch-and-bound algorithm developed by Patric +Ostergard. It is designed with the aim of being efficient while still being +flexible and easy to use. + +Note: this port do not use the upstream version, but the version autotoolized +by Dima Pasechnik. + +WWW: https://users.aalto.fi/~pat/cliquer.html +WWW: https://github.com/dimpase/autocliquer Added: head/math/cliquer/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/cliquer/pkg-plist Fri Mar 27 13:54:58 2020 (r529249) @@ -0,0 +1,14 @@ +bin/cl +include/cliquer/cliquer.h +include/cliquer/cliquerconf.h +include/cliquer/graph.h +include/cliquer/misc.h +include/cliquer/reorder.h +include/cliquer/set.h +lib/libcliquer.a +lib/libcliquer.so +lib/libcliquer.so.1 +lib/libcliquer.so.1.0.21 +%%DATADIR%%/testcase-large-w.b +%%DATADIR%%/testcase-large.b +%%DATADIR%%/testcase-small.a
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202003271354.02RDsx1a046228>