git: e2edf55427cd - main - security/courier-authlib: Update to 0.73.1
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sun, 28 Jun 2026 16:51:41 UTC
The branch main has been updated by madpilot:
URL: https://cgit.FreeBSD.org/ports/commit/?id=e2edf55427cd65444ff9a26be81bbbd04cb292ed
commit e2edf55427cd65444ff9a26be81bbbd04cb292ed
Author: Guido Falsi <madpilot@FreeBSD.org>
AuthorDate: 2026-06-28 16:49:45 +0000
Commit: Guido Falsi <madpilot@FreeBSD.org>
CommitDate: 2026-06-28 16:51:33 +0000
security/courier-authlib: Update to 0.73.1
---
security/courier-authlib/Makefile | 2 +-
security/courier-authlib/distinfo | 6 ++---
.../files/patch-libs_rfc822_rfc822__fdstreambuf.C | 29 ----------------------
3 files changed, 4 insertions(+), 33 deletions(-)
diff --git a/security/courier-authlib/Makefile b/security/courier-authlib/Makefile
index 871a5b8ed1d7..1e9b72f2d11f 100644
--- a/security/courier-authlib/Makefile
+++ b/security/courier-authlib/Makefile
@@ -1,5 +1,5 @@
PORTNAME= courier-authlib
-PORTVERSION= 0.73.0
+PORTVERSION= 0.73.1
CATEGORIES?= security mail
.if defined(PKGNAMESUFFIX)
MASTER_SITES= SF/courier/authlib/${PORTVERSION}
diff --git a/security/courier-authlib/distinfo b/security/courier-authlib/distinfo
index 058b2e98809d..aa8e0ba94d01 100644
--- a/security/courier-authlib/distinfo
+++ b/security/courier-authlib/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1782031859
-SHA256 (courier-authlib-0.73.0.tar.bz2) = 885a70b1069f186663777bb1b8fd2eda084479625a63a4b0a2dbc33d075a3735
-SIZE (courier-authlib-0.73.0.tar.bz2) = 2769017
+TIMESTAMP = 1782636284
+SHA256 (courier-authlib-0.73.1.tar.bz2) = 2b65b6ef20de0ff0d8318bc3de7ccb4f77f8bf43e4f9adeacc7cad97fff3b297
+SIZE (courier-authlib-0.73.1.tar.bz2) = 2768636
diff --git a/security/courier-authlib/files/patch-libs_rfc822_rfc822__fdstreambuf.C b/security/courier-authlib/files/patch-libs_rfc822_rfc822__fdstreambuf.C
deleted file mode 100644
index 43184f7a0073..000000000000
--- a/security/courier-authlib/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
- {