Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 1 Dec 2018 17:37:57 +0000 (UTC)
From:      Yuri Victorovich <yuri@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r486382 - in head/math/gambit: . files
Message-ID:  <201812011737.wB1HbvEA072530@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: yuri
Date: Sat Dec  1 17:37:57 2018
New Revision: 486382
URL: https://svnweb.freebsd.org/changeset/ports/486382

Log:
  math/gambit: Update 15.1.1 -> 16.0.1
  
  Reported by:	portscout

Added:
  head/math/gambit/files/patch-library_src_linalg_btableau.cc   (contents, props changed)
  head/math/gambit/files/patch-library_src_linalg_lemketab.cc   (contents, props changed)
  head/math/gambit/files/patch-library_src_linalg_lhtab.cc   (contents, props changed)
  head/math/gambit/files/patch-library_src_linalg_lptab.cc   (contents, props changed)
  head/math/gambit/files/patch-library_src_linalg_ludecomp.cc   (contents, props changed)
  head/math/gambit/files/patch-library_src_matrix.cc   (contents, props changed)
Deleted:
  head/math/gambit/files/patch-src-labenski-src_sheet.cpp
  head/math/gambit/files/patch-src_libgambit_matrix.cc
Modified:
  head/math/gambit/Makefile
  head/math/gambit/distinfo
  head/math/gambit/files/patch-src_tools_enumpoly_pelqhull.cc
  head/math/gambit/pkg-plist

Modified: head/math/gambit/Makefile
==============================================================================
--- head/math/gambit/Makefile	Sat Dec  1 16:47:53 2018	(r486381)
+++ head/math/gambit/Makefile	Sat Dec  1 17:37:57 2018	(r486382)
@@ -2,8 +2,7 @@
 # $FreeBSD$
 
 PORTNAME=	gambit
-DISTVERSION=	15.1.1
-PORTREVISION=	1
+DISTVERSION=	16.0.1
 CATEGORIES=	math
 MASTER_SITES=	SF/${PORTNAME}/${PORTNAME}${PORTVERSION:R:R}/${PORTVERSION}
 
@@ -13,7 +12,7 @@ COMMENT=	Library of tools for doing computation in gam
 LICENSE=	GPLv2
 LICENSE_FILE=	${WRKSRC}/COPYING
 
-USES=		compiler:c++11-lib
+USES=		compiler:c++11-lib gnome
 GNU_CONFIGURE=	yes
 USE_GNOME=	gtk20
 USE_WX=		3.0

Modified: head/math/gambit/distinfo
==============================================================================
--- head/math/gambit/distinfo	Sat Dec  1 16:47:53 2018	(r486381)
+++ head/math/gambit/distinfo	Sat Dec  1 17:37:57 2018	(r486382)
@@ -1,3 +1,3 @@
-TIMESTAMP = 1531253300
-SHA256 (gambit-15.1.1.tar.gz) = 7ede51739dc868242886815bb875307f5e11bb3789f22c546d3c83194fe75a1c
-SIZE (gambit-15.1.1.tar.gz) = 1777714
+TIMESTAMP = 1543682971
+SHA256 (gambit-16.0.1.tar.gz) = dbec0fc8c4cd3ad6b6a898a1330407fd7aa1bbac31ed94b6e96aa7e7196185f5
+SIZE (gambit-16.0.1.tar.gz) = 1802541

Added: head/math/gambit/files/patch-library_src_linalg_btableau.cc
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/math/gambit/files/patch-library_src_linalg_btableau.cc	Sat Dec  1 17:37:57 2018	(r486382)
@@ -0,0 +1,18 @@
+--- library/src/linalg/btableau.cc.orig	2018-12-01 17:24:33 UTC
++++ library/src/linalg/btableau.cc
+@@ -24,8 +24,7 @@
+ #include "gambit/matrix.imp"
+ #include "gambit/linalg/btableau.imp"
+ 
+-using namespace Gambit;
+-using namespace Gambit::linalg;
++namespace Gambit::linalg {
+ 
+ template class BaseTableau<double>;
+ template class BaseTableau<Rational>;
+@@ -33,4 +32,4 @@ template class BaseTableau<Rational>;
+ template class TableauInterface<double>;
+ template class TableauInterface<Rational>;
+ 
+-
++}

Added: head/math/gambit/files/patch-library_src_linalg_lemketab.cc
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/math/gambit/files/patch-library_src_linalg_lemketab.cc	Sat Dec  1 17:37:57 2018	(r486382)
@@ -0,0 +1,13 @@
+--- library/src/linalg/lemketab.cc.orig	2018-12-01 17:13:48 UTC
++++ library/src/linalg/lemketab.cc
+@@ -22,7 +22,9 @@
+ 
+ #include "gambit/linalg/lemketab.imp"
+ 
+-using namespace Gambit::linalg;
++namespace Gambit::linalg {
+ 
+ template class LemkeTableau<double>;
+ template class LemkeTableau<Gambit::Rational>;
++
++}

Added: head/math/gambit/files/patch-library_src_linalg_lhtab.cc
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/math/gambit/files/patch-library_src_linalg_lhtab.cc	Sat Dec  1 17:37:57 2018	(r486382)
@@ -0,0 +1,17 @@
+--- library/src/linalg/lhtab.cc.orig	2018-12-01 17:29:54 UTC
++++ library/src/linalg/lhtab.cc
+@@ -22,12 +22,11 @@
+ 
+ #include "gambit/linalg/lhtab.imp"
+ 
+-using namespace Gambit;
+-using namespace Gambit::linalg;
++namespace Gambit::linalg {
+ 
+ template class LHTableau<double>;
+ template class LHTableau<Rational>;
+ 
+-
++}
+ 
+ 

Added: head/math/gambit/files/patch-library_src_linalg_lptab.cc
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/math/gambit/files/patch-library_src_linalg_lptab.cc	Sat Dec  1 17:37:57 2018	(r486382)
@@ -0,0 +1,14 @@
+--- library/src/linalg/lptab.cc.orig	2017-05-12 11:07:26 UTC
++++ library/src/linalg/lptab.cc
+@@ -22,8 +22,9 @@
+ 
+ #include "gambit/linalg/lptab.imp"
+ 
+-using namespace Gambit;
+-using namespace Gambit::linalg;
++namespace Gambit::linalg {
+ 
+ template class LPTableau<double>;
+ template class LPTableau<Rational>;
++
++}

Added: head/math/gambit/files/patch-library_src_linalg_ludecomp.cc
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/math/gambit/files/patch-library_src_linalg_ludecomp.cc	Sat Dec  1 17:37:57 2018	(r486382)
@@ -0,0 +1,17 @@
+--- library/src/linalg/ludecomp.cc.orig	2017-05-12 11:07:26 UTC
++++ library/src/linalg/ludecomp.cc
+@@ -22,11 +22,12 @@
+ 
+ #include "gambit/linalg/ludecomp.imp"
+ 
+-using namespace Gambit;
+-using namespace Gambit::linalg;
++namespace Gambit::linalg {
+ 
+ template class EtaMatrix<double>;
+ template class LUdecomp<double>;
+ 
+ template class EtaMatrix<Rational>;
+ template class LUdecomp<Rational>;
++
++}

Added: head/math/gambit/files/patch-library_src_matrix.cc
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/math/gambit/files/patch-library_src_matrix.cc	Sat Dec  1 17:37:57 2018	(r486382)
@@ -0,0 +1,18 @@
+--- library/src/matrix.cc.orig	2018-12-01 16:51:25 UTC
++++ library/src/matrix.cc
+@@ -25,11 +25,15 @@
+ 
+ using namespace Gambit;
+ 
++namespace Gambit {
++
+ template class Matrix<double>;
+ template class Matrix<Rational>;
+ template class Matrix<Integer>;
+ template class Matrix<int>;
+ 
++}
++
+ template Vector<double> Gambit::operator*(const Vector<double> &,
+ 					  const Matrix<double> &);
+ template Vector<Rational> Gambit::operator*(const Vector<Rational> &,

Modified: head/math/gambit/files/patch-src_tools_enumpoly_pelqhull.cc
==============================================================================
--- head/math/gambit/files/patch-src_tools_enumpoly_pelqhull.cc	Sat Dec  1 16:47:53 2018	(r486381)
+++ head/math/gambit/files/patch-src_tools_enumpoly_pelqhull.cc	Sat Dec  1 17:37:57 2018	(r486382)
@@ -1,6 +1,6 @@
---- src/tools/enumpoly/pelqhull.cc.orig	2014-05-27 12:07:04.000000000 +0400
-+++ src/tools/enumpoly/pelqhull.cc	2015-04-13 20:35:03.596285000 +0300
-@@ -2792,7 +2792,7 @@
+--- src/tools/enumpoly/pelqhull.cc.orig	2016-06-30 09:03:18 UTC
++++ src/tools/enumpoly/pelqhull.cc
+@@ -2792,7 +2792,7 @@ void qh_allstatA (void) {
    
     /* zdef_(type,name,doc,average) */
    zzdef_(zdoc, Zdoc2, "precision statistics", -1);
@@ -9,7 +9,7 @@
    zdef_(wadd, Wnewvertex, "ave. distance of a new vertex to a facet (not 0s)", Znewvertex);
    zdef_(wmax, Wnewvertexmax, "max. distance of a new vertex to a facet", -1);
    zdef_(wmax, Wvertexmax, "max. distance of an output vertex to a facet", -1);
-@@ -2831,7 +2831,7 @@
+@@ -2831,7 +2831,7 @@ void qh_allstatB (void) {
    zzdef_(zinc, Zsetplane, "facets created altogether", -1);
    zdef_(zinc, Ztotridges, "ridges created altogether", -1);
    zdef_(zinc, Zpostfacets, "facets before post merge", -1);
@@ -18,7 +18,7 @@
    zdef_(wadd, Wangle, "average angle (cosine) for all ridges", Zangle);
    zdef_(wmax, Wanglemax, "maximum angle (cosine) of a ridge", -1);
    zdef_(wmin, Wanglemin, "minimum angle (cosine) of a ridge", -1);
-@@ -2946,7 +2946,7 @@
+@@ -2946,7 +2946,7 @@ void qh_allstatF(void) {
    zdef_(zinc, Zintersect, "intersections found redundant vertices", -1);
    zdef_(zadd, Zintersecttot, "   ave. number found per vertex", Zintersect);
    zdef_(zmax, Zintersectmax, "   max. found for a vertex", -1);

Modified: head/math/gambit/pkg-plist
==============================================================================
--- head/math/gambit/pkg-plist	Sat Dec  1 16:47:53 2018	(r486381)
+++ head/math/gambit/pkg-plist	Sat Dec  1 17:37:57 2018	(r486382)
@@ -10,15 +10,14 @@ bin/gambit-liap
 bin/gambit-logit
 bin/gambit-lp
 bin/gambit-simpdiv
-include/libagg/GrayComposition.h
 include/libagg/agg.h
 include/libagg/bagg.h
 include/libagg/gameagg.h
 include/libagg/gamebagg.h
+include/libagg/gray.h
 include/libagg/proj_func.h
 include/libagg/trie_map.h
 include/libagg/trie_map.imp
-include/libgambit/GrayComposition.h
 include/libgambit/agg.h
 include/libgambit/array.h
 include/libgambit/bagg.h
@@ -29,11 +28,12 @@ include/libgambit/behavspt.h
 include/libgambit/dvector.h
 include/libgambit/dvector.imp
 include/libgambit/function.h
+include/libgambit/gambit.h
 include/libgambit/game.h
 include/libgambit/gameagg.h
 include/libgambit/gamebagg.h
+include/libgambit/gray.h
 include/libgambit/integer.h
-include/libgambit/libgambit.h
 include/libgambit/list.h
 include/libgambit/matrix.h
 include/libgambit/matrix.imp



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201812011737.wB1HbvEA072530>