git: 83bdc5277ed2 - main - mail/maildrop: Update to 4.0.2

From: Guido Falsi <madpilot_at_FreeBSD.org>
Date: Sun, 28 Jun 2026 16:51:43 UTC
The branch main has been updated by madpilot:

URL: https://cgit.FreeBSD.org/ports/commit/?id=83bdc5277ed251377c07fc72cb62f8aca76f6fe1

commit 83bdc5277ed251377c07fc72cb62f8aca76f6fe1
Author:     Guido Falsi <madpilot@FreeBSD.org>
AuthorDate: 2026-06-28 16:50:26 +0000
Commit:     Guido Falsi <madpilot@FreeBSD.org>
CommitDate: 2026-06-28 16:51:34 +0000

    mail/maildrop: Update to 4.0.2
---
 mail/maildrop/Makefile                             |  2 +-
 mail/maildrop/distinfo                             |  6 ++---
 .../files/patch-libs_rfc822_rfc822__fdstreambuf.C  | 29 ----------------------
 3 files changed, 4 insertions(+), 33 deletions(-)

diff --git a/mail/maildrop/Makefile b/mail/maildrop/Makefile
index 211a8986ca28..d941a939add0 100644
--- a/mail/maildrop/Makefile
+++ b/mail/maildrop/Makefile
@@ -13,7 +13,7 @@
 # MAILDROP_MBOX_DIR=<dir>	Specify DEFAULT mailbox location
 
 PORTNAME=	maildrop
-PORTVERSION=	4.0.1
+PORTVERSION=	4.0.2
 CATEGORIES=	mail
 MASTER_SITES=	SF/courier/${PORTNAME}/${PORTVERSION}
 
diff --git a/mail/maildrop/distinfo b/mail/maildrop/distinfo
index 4d9097d22a3a..35a3e575d02c 100644
--- a/mail/maildrop/distinfo
+++ b/mail/maildrop/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1782109207
-SHA256 (maildrop-4.0.1.tar.bz2) = f12c8f7b0c7f9474bac37b136b8def9287a9b3419da5cc2e47d9ffd05297e22f
-SIZE (maildrop-4.0.1.tar.bz2) = 2407555
+TIMESTAMP = 1782637491
+SHA256 (maildrop-4.0.2.tar.bz2) = 3827e03437a5b90ca777f7bb9380f8f575370481bd768aadf59f106ec1bd85f7
+SIZE (maildrop-4.0.2.tar.bz2) = 2407963
diff --git a/mail/maildrop/files/patch-libs_rfc822_rfc822__fdstreambuf.C b/mail/maildrop/files/patch-libs_rfc822_rfc822__fdstreambuf.C
deleted file mode 100644
index 43184f7a0073..000000000000
--- a/mail/maildrop/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
- {