git: 9f5c934cc543 - main - math/rankwidth: unbreak by upgrading to 0.10
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Tue, 23 Dec 2025 22:43:12 UTC
The branch main has been updated by thierry:
URL: https://cgit.FreeBSD.org/ports/commit/?id=9f5c934cc54344ea66de613d3ebd520ed801c667
commit 9f5c934cc54344ea66de613d3ebd520ed801c667
Author: Thierry Thomas <thierry@FreeBSD.org>
AuthorDate: 2025-12-23 22:40:19 +0000
Commit: Thierry Thomas <thierry@FreeBSD.org>
CommitDate: 2025-12-23 22:43:04 +0000
math/rankwidth: unbreak by upgrading to 0.10
Support igraph 0.10 and later, including current igraph 1.0.
Support current autoconf 2.72.
---
math/rankwidth/Makefile | 6 +-----
math/rankwidth/distinfo | 6 +++---
math/rankwidth/files/patch-simplerw.c | 11 -----------
3 files changed, 4 insertions(+), 19 deletions(-)
diff --git a/math/rankwidth/Makefile b/math/rankwidth/Makefile
index ff62a9457441..ae6cffda042f 100644
--- a/math/rankwidth/Makefile
+++ b/math/rankwidth/Makefile
@@ -1,6 +1,5 @@
PORTNAME= rankwidth # Also known as: rw
-PORTVERSION= 0.9
-PORTREVISION= 2
+PORTVERSION= 0.10
CATEGORIES= math
MASTER_SITES= SF/${PORTNAME}/
DISTNAME= rw-${PORTVERSION}
@@ -11,9 +10,6 @@ WWW= https://sourceforge.net/projects/rankwidth/
LICENSE= GPLv2
-# See https://sourceforge.net/p/rankwidth/tickets/4/
-BROKEN= does not support igraph>=1.0.0
-
LIB_DEPENDS= libigraph.so:math/igraph
USES= autoreconf libtool localbase pkgconfig
diff --git a/math/rankwidth/distinfo b/math/rankwidth/distinfo
index 3daf4398b347..d467ae1a2d40 100644
--- a/math/rankwidth/distinfo
+++ b/math/rankwidth/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1600113132
-SHA256 (rw-0.9.tar.gz) = c1e03506fe25cdfcb428c051fc56b2d2affb5b06fba3f2ce756631466befb441
-SIZE (rw-0.9.tar.gz) = 340385
+TIMESTAMP = 1766509750
+SHA256 (rw-0.10.tar.gz) = 89a8ed364893ac1b70ab70a152e3e7db3cf348bb69098aa6dbb969639df927db
+SIZE (rw-0.10.tar.gz) = 355838
diff --git a/math/rankwidth/files/patch-simplerw.c b/math/rankwidth/files/patch-simplerw.c
deleted file mode 100644
index 378f8e7c47a3..000000000000
--- a/math/rankwidth/files/patch-simplerw.c
+++ /dev/null
@@ -1,11 +0,0 @@
---- simplerw.c.orig 2023-02-26 14:01:13 UTC
-+++ simplerw.c
-@@ -134,7 +134,7 @@ int read_graph(const char *format, const char * filena
- igraph_destroy(&igraph);
- return(-1);
- }
-- igraph_get_adjacency(&igraph, &imatrix, IGRAPH_GET_ADJACENCY_BOTH, 0);
-+ igraph_get_adjacency(&igraph, &imatrix, IGRAPH_GET_ADJACENCY_BOTH, NULL, IGRAPH_LOOPS_ONCE);
- igraph_destroy(&igraph);
- if(igraph_matrix_nrow(&imatrix) > MAX_VERTICES)
- {