summaryrefslogtreecommitdiff
path: root/math/octave-forge-quaternion
diff options
context:
space:
mode:
Diffstat (limited to 'math/octave-forge-quaternion')
-rw-r--r--math/octave-forge-quaternion/Makefile7
-rw-r--r--math/octave-forge-quaternion/distinfo5
-rw-r--r--math/octave-forge-quaternion/files/patch-is__real__array.cc13
3 files changed, 7 insertions, 18 deletions
diff --git a/math/octave-forge-quaternion/Makefile b/math/octave-forge-quaternion/Makefile
index 115514edb48e..d592d74acd46 100644
--- a/math/octave-forge-quaternion/Makefile
+++ b/math/octave-forge-quaternion/Makefile
@@ -1,6 +1,5 @@
PORTNAME= octave-forge-quaternion
-PORTVERSION= 2.4.0
-PORTREVISION= 20
+PORTVERSION= 2.4.2
CATEGORIES= math
MASTER_SITES= SF/octave/Octave%20Forge%20Packages/Individual%20Package%20Releases
DISTNAME= ${OCTAVE_PKGNAME}-${DISTVERSIONFULL}
@@ -13,7 +12,9 @@ LICENSE= GPLv3
LICENSE_FILE= ${WRKDIR}/${OCTAVE_SRC}/COPYING
USES= octave
+NO_BUILD= yes
+NO_ARCH= yes
-OCTAVE_SRC= ${OCTAVE_PKGNAME}
+OCTAVE_SRC= ${OCTAVE_PKGNAME}-${PORTVERSION}
.include <bsd.port.mk>
diff --git a/math/octave-forge-quaternion/distinfo b/math/octave-forge-quaternion/distinfo
index c70b821119a3..1e7dbfa468fd 100644
--- a/math/octave-forge-quaternion/distinfo
+++ b/math/octave-forge-quaternion/distinfo
@@ -1,2 +1,3 @@
-SHA256 (octave-forge/quaternion-2.4.0.tar.gz) = 4c2d4dd8f1d213f080519c6f9dfbbdca068087ee0411122b16e377e0f4641610
-SIZE (octave-forge/quaternion-2.4.0.tar.gz) = 236821
+TIMESTAMP = 1765401922
+SHA256 (octave-forge/quaternion-2.4.2.tar.gz) = 4bcb64743972693f04ed6d2fea4906b38a9353f1b80c6e6f2d0bc0f6f8cf3a07
+SIZE (octave-forge/quaternion-2.4.2.tar.gz) = 47838
diff --git a/math/octave-forge-quaternion/files/patch-is__real__array.cc b/math/octave-forge-quaternion/files/patch-is__real__array.cc
deleted file mode 100644
index e39f8fa46d0a..000000000000
--- a/math/octave-forge-quaternion/files/patch-is__real__array.cc
+++ /dev/null
@@ -1,13 +0,0 @@
---- is_real_array.cc.orig 2021-02-21 22:03:11 UTC
-+++ is_real_array.cc
-@@ -46,8 +46,8 @@ Avoid nasty stuff like @code{true = isreal (\"a\")}.\n
- {
- // args(i).ndims () should be always >= 2
- if (args(i).ndims () < 2
-- || ! ((args(i).is_numeric_type () && args(i).is_real_type ())
-- || args(i).is_bool_type ()))
-+ || ! ((args(i).isnumeric () && args(i).isreal ())
-+ || args(i).islogical ()))
- {
- retval = false;
- break;