git: 2b28056a6820 - main - mail/courier-imap: Update to 6.0.1
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sun, 28 Jun 2026 16:51:42 UTC
The branch main has been updated by madpilot:
URL: https://cgit.FreeBSD.org/ports/commit/?id=2b28056a682032d47c68a27b4bc1f22cd30071fd
commit 2b28056a682032d47c68a27b4bc1f22cd30071fd
Author: Guido Falsi <madpilot@FreeBSD.org>
AuthorDate: 2026-06-28 16:50:09 +0000
Commit: Guido Falsi <madpilot@FreeBSD.org>
CommitDate: 2026-06-28 16:51:34 +0000
mail/courier-imap: Update to 6.0.1
---
mail/courier-imap/Makefile | 2 +-
mail/courier-imap/distinfo | 6 ++---
.../files/patch-libs_rfc822_rfc822__fdstreambuf.C | 29 ----------------------
3 files changed, 4 insertions(+), 33 deletions(-)
diff --git a/mail/courier-imap/Makefile b/mail/courier-imap/Makefile
index 8c9a929f0216..e9a27fa8d3ed 100644
--- a/mail/courier-imap/Makefile
+++ b/mail/courier-imap/Makefile
@@ -1,5 +1,5 @@
PORTNAME= courier-imap
-PORTVERSION= 6.0.0
+PORTVERSION= 6.0.1
PORTEPOCH= 2
CATEGORIES= mail
MASTER_SITES= SF/courier/imap/${PORTVERSION}
diff --git a/mail/courier-imap/distinfo b/mail/courier-imap/distinfo
index 2452c708616c..c3a20d03b7f0 100644
--- a/mail/courier-imap/distinfo
+++ b/mail/courier-imap/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1782032158
-SHA256 (courier-imap-6.0.0.tar.bz2) = a0a28759c254d3deccb7a7b4ea5ac1f9d8c4182ae11781eb3f3076767c113061
-SIZE (courier-imap-6.0.0.tar.bz2) = 3747611
+TIMESTAMP = 1782637323
+SHA256 (courier-imap-6.0.1.tar.bz2) = 3f422328e2ad6e9ad5bcabcc8034810630be0001820111ec5a4af045874a9de2
+SIZE (courier-imap-6.0.1.tar.bz2) = 3747961
diff --git a/mail/courier-imap/files/patch-libs_rfc822_rfc822__fdstreambuf.C b/mail/courier-imap/files/patch-libs_rfc822_rfc822__fdstreambuf.C
deleted file mode 100644
index 43184f7a0073..000000000000
--- a/mail/courier-imap/files/patch-libs_rfc822_rfc822__fdstreambuf.C
+++ /dev/null
@@ -1,29 +0,0 @@
---- libs/rfc822/rfc822_fdstreambuf.C.orig 2026-05-18 09:00:04 UTC
-+++ libs/rfc822/rfc822_fdstreambuf.C
-@@ -32,12 +32,26 @@ rfc822::fdstreambuf rfc822::fdstreambuf::tmpfile()
- return tmpfilebuf;
- }
-
-+#ifdef __FreeBSD__
- rfc822::fdstreambuf rfc822::fdstreambuf::tmpfile(const char *tmpdir)
- {
-+ char *tmpname = tempnam(tmpdir, NULL);
-+
-+ rfc822::fdstreambuf tmpfilebuf{
-+ open(tmpname, O_RDWR|O_EXCL, 0600)
-+ };
-+
-+ free(tmpname);
-+ return tmpfilebuf;
-+}
-+#else
-+rfc822::fdstreambuf rfc822::fdstreambuf::tmpfile(const char *tmpdir)
-+{
- return rfc822::fdstreambuf{
- open(tmpdir, O_TMPFILE|O_RDWR|O_EXCL, 0600)
- };
- }
-+#endif
-
- rfc822::fdstreambuf &rfc822::fdstreambuf::operator=(fdstreambuf &&o) noexcept
- {