aboutsummaryrefslogtreecommitdiff
path: root/biology
diff options
context:
space:
mode:
authorJason W. Bacon <jwb@FreeBSD.org>2023-11-21 12:58:06 +0000
committerJason W. Bacon <jwb@FreeBSD.org>2023-11-21 12:58:39 +0000
commitd1bf49e314068c044c048bf4ecd450d9220b33bd (patch)
tree7cde9d37d983b956ae625149d45e02d14be26e32 /biology
parent61e59d4cab9f4d6b85f90fda45f18c1e34e7016e (diff)
downloadports-d1bf49e314068c044c048bf4ecd450d9220b33bd.tar.gz
ports-d1bf49e314068c044c048bf4ecd450d9220b33bd.zip
biology/bifrost: Update to 1.3.1
Minor bugfix release Changes: https://github.com/pmelsted/bifrost/releases Reported by: portscout
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) {