From owner-svn-ports-all@freebsd.org Sun Dec 9 20:35:34 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C6D35132EAE0; Sun, 9 Dec 2018 20:35:34 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 6D8C77A887; Sun, 9 Dec 2018 20:35:34 +0000 (UTC) (envelope-from yuri@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 4E9741642F; Sun, 9 Dec 2018 20:35:34 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id wB9KZYqE095410; Sun, 9 Dec 2018 20:35:34 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id wB9KZX18095405; Sun, 9 Dec 2018 20:35:33 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201812092035.wB9KZX18095405@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Sun, 9 Dec 2018 20:35:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r487085 - in head/math: . lemon X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/math: . lemon X-SVN-Commit-Revision: 487085 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 6D8C77A887 X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.997,0]; NEURAL_HAM_SHORT(-0.98)[-0.975,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-0.99)[-0.991,0] X-Rspamd-Server: mx1.freebsd.org 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: Sun, 09 Dec 2018 20:35:35 -0000 Author: yuri Date: Sun Dec 9 20:35:33 2018 New Revision: 487085 URL: https://svnweb.freebsd.org/changeset/ports/487085 Log: New port: math/lemon: Library for Efficient Modeling and Optimization in Networks Added: head/math/lemon/ head/math/lemon/Makefile (contents, props changed) head/math/lemon/distinfo (contents, props changed) head/math/lemon/pkg-descr (contents, props changed) head/math/lemon/pkg-plist (contents, props changed) Modified: head/math/Makefile Modified: head/math/Makefile ============================================================================== --- head/math/Makefile Sun Dec 9 20:30:33 2018 (r487084) +++ head/math/Makefile Sun Dec 9 20:35:33 2018 (r487085) @@ -318,6 +318,7 @@ SUBDIR += laspack SUBDIR += ldouble SUBDIR += lean + SUBDIR += lemon SUBDIR += levmar SUBDIR += libRmath SUBDIR += libccd Added: head/math/lemon/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/lemon/Makefile Sun Dec 9 20:35:33 2018 (r487085) @@ -0,0 +1,32 @@ +# $FreeBSD$ + +PORTNAME= lemon +DISTVERSION= 1.3.1 +CATEGORIES= math +MASTER_SITES= https://lemon.cs.elte.hu/pub/sources/ +PKGNAMEPREFIX= coin-or- + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Library for Efficient Modeling and Optimization in Networks + +LICENSE= BSL +LICENSE_FILE= ${WRKSRC}/LICENSE + +LIB_DEPENDS= libCbc.so:math/coinmp \ + libglpk.so:math/glpk + +USES= cmake:outsource +USE_LDCONFIG= yes + +CMAKE_ON= BUILD_SHARED_LIBS + +CONFLICTS_BUILD= SoPlex # Incompatible with SoPlex-4.0.0 optional dependency: https://lemon.cs.elte.hu/trac/lemon/ticket/616 + +OPTIONS_DEFINE= DOCS + +PORTDOCS= * + +post-install: + @${RM} ${STAGEDIR}${PREFIX}/bin/${PORTNAME}-0.x-to-1.x.sh + +.include Added: head/math/lemon/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/lemon/distinfo Sun Dec 9 20:35:33 2018 (r487085) @@ -0,0 +1,3 @@ +TIMESTAMP = 1544384046 +SHA256 (lemon-1.3.1.tar.gz) = 71b7c725f4c0b4a8ccb92eb87b208701586cf7a96156ebd821ca3ed855bad3c8 +SIZE (lemon-1.3.1.tar.gz) = 5142826 Added: head/math/lemon/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/lemon/pkg-descr Sun Dec 9 20:35:33 2018 (r487085) @@ -0,0 +1,9 @@ +Lemon is a C++ template library providing efficient implementations of common +data structures and algorithms with focus on combinatorial optimization tasks +connected mainly with graphs and networks. + +LEMON is a member of the COIN-OR initiative, a collection of OR related open +source projects. You are free to use it in your commercial or non-commercial +applications under very permissive license terms. + +WWW: https://lemon.cs.elte.hu/trac/lemon/ Added: head/math/lemon/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/lemon/pkg-plist Sun Dec 9 20:35:33 2018 (r487085) @@ -0,0 +1,109 @@ +bin/dimacs-solver +bin/dimacs-to-lgf +bin/lgf-gen +include/lemon/adaptors.h +include/lemon/arg_parser.h +include/lemon/assert.h +include/lemon/bellman_ford.h +include/lemon/bfs.h +include/lemon/bin_heap.h +include/lemon/binomial_heap.h +include/lemon/bits/alteration_notifier.h +include/lemon/bits/array_map.h +include/lemon/bits/bezier.h +include/lemon/bits/default_map.h +include/lemon/bits/edge_set_extender.h +include/lemon/bits/enable_if.h +include/lemon/bits/graph_adaptor_extender.h +include/lemon/bits/graph_extender.h +include/lemon/bits/lock.h +include/lemon/bits/map_extender.h +include/lemon/bits/path_dump.h +include/lemon/bits/solver_bits.h +include/lemon/bits/traits.h +include/lemon/bits/variant.h +include/lemon/bits/vector_map.h +include/lemon/bits/windows.h +include/lemon/bucket_heap.h +include/lemon/capacity_scaling.h +include/lemon/cbc.h +include/lemon/christofides_tsp.h +include/lemon/circulation.h +include/lemon/clp.h +include/lemon/color.h +include/lemon/concept_check.h +include/lemon/concepts/bpgraph.h +include/lemon/concepts/digraph.h +include/lemon/concepts/graph.h +include/lemon/concepts/graph_components.h +include/lemon/concepts/heap.h +include/lemon/concepts/maps.h +include/lemon/concepts/path.h +include/lemon/config.h +include/lemon/connectivity.h +include/lemon/core.h +include/lemon/cost_scaling.h +include/lemon/counter.h +include/lemon/cplex.h +include/lemon/cycle_canceling.h +include/lemon/dfs.h +include/lemon/dheap.h +include/lemon/dijkstra.h +include/lemon/dim2.h +include/lemon/dimacs.h +include/lemon/edge_set.h +include/lemon/edmonds_karp.h +include/lemon/elevator.h +include/lemon/error.h +include/lemon/euler.h +include/lemon/fib_heap.h +include/lemon/fractional_matching.h +include/lemon/full_graph.h +include/lemon/glpk.h +include/lemon/gomory_hu.h +include/lemon/graph_to_eps.h +include/lemon/greedy_tsp.h +include/lemon/grid_graph.h +include/lemon/grosso_locatelli_pullan_mc.h +include/lemon/hao_orlin.h +include/lemon/hartmann_orlin_mmc.h +include/lemon/howard_mmc.h +include/lemon/hypercube_graph.h +include/lemon/insertion_tsp.h +include/lemon/karp_mmc.h +include/lemon/kruskal.h +include/lemon/lgf_reader.h +include/lemon/lgf_writer.h +include/lemon/list_graph.h +include/lemon/lp.h +include/lemon/lp_base.h +include/lemon/lp_skeleton.h +include/lemon/maps.h +include/lemon/matching.h +include/lemon/math.h +include/lemon/max_cardinality_search.h +include/lemon/min_cost_arborescence.h +include/lemon/nagamochi_ibaraki.h +include/lemon/nauty_reader.h +include/lemon/nearest_neighbor_tsp.h +include/lemon/network_simplex.h +include/lemon/opt2_tsp.h +include/lemon/pairing_heap.h +include/lemon/path.h +include/lemon/planarity.h +include/lemon/preflow.h +include/lemon/quad_heap.h +include/lemon/radix_heap.h +include/lemon/radix_sort.h +include/lemon/random.h +include/lemon/smart_graph.h +include/lemon/soplex.h +include/lemon/static_graph.h +include/lemon/suurballe.h +include/lemon/time_measure.h +include/lemon/tolerance.h +include/lemon/unionfind.h +lib/libemon.so +lib/libemon.so.1.3.1 +libdata/pkgconfig/lemon.pc +%%DATADIR%%/cmake/LEMONConfig.cmake