aboutsummaryrefslogtreecommitdiff
path: root/biology
diff options
context:
space:
mode:
Diffstat (limited to 'biology')
-rw-r--r--biology/bifrost/Makefile2
-rw-r--r--biology/bifrost/distinfo6
-rw-r--r--biology/bifrost/files/patch-src_strict__fstream.hpp11
3 files changed, 4 insertions, 15 deletions
diff --git a/biology/bifrost/Makefile b/biology/bifrost/Makefile
index 35c43c9b7e5b..49a1a7b50d76 100644
--- a/biology/bifrost/Makefile
+++ b/biology/bifrost/Makefile
@@ -1,6 +1,6 @@
PORTNAME= bifrost
DISTVERSIONPREFIX= v
-DISTVERSION= 1.3.0
+DISTVERSION= 1.3.1
CATEGORIES= biology
MAINTAINER= jwb@FreeBSD.org
diff --git a/biology/bifrost/distinfo b/biology/bifrost/distinfo
index 0a993415bfa1..812d80cadbb2 100644
--- a/biology/bifrost/distinfo
+++ b/biology/bifrost/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1696948677
-SHA256 (pmelsted-bifrost-v1.3.0_GH0.tar.gz) = 621dd590a28dd61347d319ee5320718ebac3c9da356b058b8776677ce463c197
-SIZE (pmelsted-bifrost-v1.3.0_GH0.tar.gz) = 349405
+TIMESTAMP = 1700570628
+SHA256 (pmelsted-bifrost-v1.3.1_GH0.tar.gz) = d6a9baacddba8e9508336c5adff15a8a482774c724fc0710392fed7bb9ad1e8b
+SIZE (pmelsted-bifrost-v1.3.1_GH0.tar.gz) = 349856
diff --git a/biology/bifrost/files/patch-src_strict__fstream.hpp b/biology/bifrost/files/patch-src_strict__fstream.hpp
deleted file mode 100644
index e3b3caf35931..000000000000
--- a/biology/bifrost/files/patch-src_strict__fstream.hpp
+++ /dev/null
@@ -1,11 +0,0 @@
---- src/strict_fstream.hpp.orig 2023-07-03 15:14:36 UTC
-+++ src/strict_fstream.hpp
-@@ -64,7 +64,7 @@ static std::string strerror()
- } else {
- return "Unknown error (" + std::to_string(err_num) + ")";
- }
--#elif ((_POSIX_C_SOURCE >= 200112L || _XOPEN_SOURCE >= 600) && ! _GNU_SOURCE) || defined(__APPLE__) || defined(__MUSL__)
-+#elif ((_POSIX_C_SOURCE >= 200112L || _XOPEN_SOURCE >= 600) && ! _GNU_SOURCE) || defined(__APPLE__) || defined(__MUSL__) || defined(__FreeBSD__)
- // XSI-compliant strerror_r()
- const int err_num = errno; // See above
- if (strerror_r(err_num, buff.data(), buff.size()) == 0) {