summaryrefslogtreecommitdiff
path: root/math
diff options
context:
space:
mode:
Diffstat (limited to 'math')
-rw-r--r--math/octave-forge-miscellaneous/Makefile14
-rw-r--r--math/octave-forge-miscellaneous/distinfo6
-rw-r--r--math/rankwidth/Makefile6
-rw-r--r--math/rankwidth/distinfo6
-rw-r--r--math/rankwidth/files/patch-simplerw.c11
5 files changed, 16 insertions, 27 deletions
diff --git a/math/octave-forge-miscellaneous/Makefile b/math/octave-forge-miscellaneous/Makefile
index b8a9f25cd23d..95ad1345861b 100644
--- a/math/octave-forge-miscellaneous/Makefile
+++ b/math/octave-forge-miscellaneous/Makefile
@@ -1,8 +1,7 @@
PORTNAME= octave-forge-miscellaneous
-PORTVERSION= 1.3.1
+DISTVERSIONPREFIX= release-
+DISTVERSION= 1.3.2
CATEGORIES= math
-MASTER_SITES= SF/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases
-DISTNAME= ${OCTAVE_PKGNAME}-${DISTVERSIONFULL}
MAINTAINER= stephen@FreeBSD.org
COMMENT= Octave-forge package ${OCTAVE_PKGNAME}
@@ -11,10 +10,15 @@ WWW= https://packages.octave.org/
LICENSE= GPLv3
LICENSE_FILE= ${WRKDIR}/${OCTAVE_SRC}/COPYING
-USES= octave
+USES= octave autoreconf
+USE_GITHUB= yes
+GH_ACCOUNT= gnu-octave
+GH_PROJECT= octave-miscellaneous
+
+OCTAVE_SRC= ${GH_PROJECT}-release-${DISTVERSION}
GNU_CONFIGURE= yes
-MAKE_ENV+= MKOCTFILE=mkoctfile
+#MAKE_ENV+= MKOCTFILE=mkoctfile
.include <bsd.port.mk>
diff --git a/math/octave-forge-miscellaneous/distinfo b/math/octave-forge-miscellaneous/distinfo
index cb3156880014..77bd50f5db36 100644
--- a/math/octave-forge-miscellaneous/distinfo
+++ b/math/octave-forge-miscellaneous/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1721866298
-SHA256 (octave-forge/miscellaneous-1.3.1.tar.gz) = 5712117a25d31d1266003646a40e81e7d7427433c26366e426dffa9ab8abd648
-SIZE (octave-forge/miscellaneous-1.3.1.tar.gz) = 110344
+TIMESTAMP = 1766525993
+SHA256 (octave-forge/gnu-octave-octave-miscellaneous-release-1.3.2_GH0.tar.gz) = eae1e78f486690db6dd74c6b150be37685934ea490e49ead015bd6c13bc46a5f
+SIZE (octave-forge/gnu-octave-octave-miscellaneous-release-1.3.2_GH0.tar.gz) = 75711
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)
- {