Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 8 Dec 2020 23:45:22 +0000 (UTC)
From:      Diane Bruce <db@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r557315 - head/math/py-triangle
Message-ID:  <202012082345.0B8NjMOa010313@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: db
Date: Tue Dec  8 23:45:21 2020
New Revision: 557315
URL: https://svnweb.freebsd.org/changeset/ports/557315

Log:
  Update to 20200424 to fix python 3.9 compatibility
  
  The current version fails to build with Python 3.9:
  triangle/core.c:20740:77: error: no member named 'tp_print' in 'struct _typeobject'
    __pyx_type_8triangle_4core___pyx_scope_struct____pyx_f_8triangle_4core_ii.tp_print = 0;
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ^
  triangle/core.c:20746:78: error: no member named 'tp_print' in 'struct _typeobject'
    __pyx_type_8triangle_4core___pyx_scope_struct_1___pyx_f_8triangle_4core_dd.tp_print = 0;
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ^
  
  etc.
  
  The latest version has been regenerated with newer Cython which supports 3.9.
  
  PR:		ports/251469
  Reported by:	Greg V <greg@unrelenting.technology>

Modified:
  head/math/py-triangle/Makefile
  head/math/py-triangle/distinfo   (contents, props changed)

Modified: head/math/py-triangle/Makefile
==============================================================================
--- head/math/py-triangle/Makefile	Tue Dec  8 23:30:46 2020	(r557314)
+++ head/math/py-triangle/Makefile	Tue Dec  8 23:45:21 2020	(r557315)
@@ -1,7 +1,7 @@
 # $FreeBSD$
 
 PORTNAME=	triangle
-PORTVERSION=	20190115.3
+PORTVERSION=	20200424
 CATEGORIES=	math
 MASTER_SITES=	CHEESESHOP
 PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}

Modified: head/math/py-triangle/distinfo
==============================================================================
--- head/math/py-triangle/distinfo	Tue Dec  8 23:30:46 2020	(r557314)
+++ head/math/py-triangle/distinfo	Tue Dec  8 23:45:21 2020	(r557315)
@@ -1,3 +1,3 @@
-TIMESTAMP = 1584620539
-SHA256 (triangle-20190115.3.tar.gz) = 69442062a1705f75b64166b161ade8a32a26b9323e09f5fa43079dbb6bf04bcc
-SIZE (triangle-20190115.3.tar.gz) = 1554400
+TIMESTAMP = 1606687316
+SHA256 (triangle-20200424.tar.gz) = fc207641f8f39986f7d2bee1b91688a588cd235d2e67777422f94e61fece27e9
+SIZE (triangle-20200424.tar.gz) = 1559222



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