From owner-svn-ports-all@freebsd.org Fri Mar 27 13:55:10 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 1DB7027696D; Fri, 27 Mar 2020 13:55:10 +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 48pjzK3n36z3D1V; Fri, 27 Mar 2020 13:55:09 +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 569502220E; Fri, 27 Mar 2020 13:55:00 +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 02RDt06I046271; Fri, 27 Mar 2020 13:55:00 GMT (envelope-from thierry@FreeBSD.org) Received: (from thierry@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 02RDsx1a046228; Fri, 27 Mar 2020 13:54:59 GMT (envelope-from thierry@FreeBSD.org) Message-Id: <202003271354.02RDsx1a046228@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: thierry set sender to thierry@FreeBSD.org using -f From: Thierry Thomas Date: Fri, 27 Mar 2020 13:54:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r529249 - in head/math: . cliquer X-SVN-Group: ports-head X-SVN-Commit-Author: thierry X-SVN-Commit-Paths: in head/math: . cliquer X-SVN-Commit-Revision: 529249 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: Fri, 27 Mar 2020 13:55:10 -0000 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 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