commit:     e04ed7fe586045431b0ad657c217d5b69b7cc42b
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Oct  6 01:49:46 2025 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Oct  6 01:49:46 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e04ed7fe

net-mail/mlmmj: drop 1.3.0-r1, 1.4.7

Signed-off-by: Sam James <sam <AT> gentoo.org>

 net-mail/mlmmj/Manifest                            |  2 -
 .../mlmmj-1.2.19.0-listcontrol-customheaders.patch | 30 ----------
 net-mail/mlmmj/files/mlmmj-1.3.0-gcc-10.patch      | 20 -------
 net-mail/mlmmj/mlmmj-1.3.0-r1.ebuild               | 57 ------------------
 net-mail/mlmmj/mlmmj-1.4.7.ebuild                  | 70 ----------------------
 5 files changed, 179 deletions(-)

diff --git a/net-mail/mlmmj/Manifest b/net-mail/mlmmj/Manifest
index c1295a3f79da..9fd1397dc57e 100644
--- a/net-mail/mlmmj/Manifest
+++ b/net-mail/mlmmj/Manifest
@@ -1,4 +1,2 @@
-DIST mlmmj-1.3.0.tar.bz2 292519 BLAKE2B 
abaf5c7ad53034d2201a2d3ba6d7f99ca83f47ec83df59e12a90a7118fbbde941d5ed2d14864a4af1568f67e74ea082fbc70fc9e44390673b76377bb3679c817
 SHA512 
c704d89f8a96c0ffc751a744ffdefb5e4304ab74be89292f06ce0c337b8ff1cc5a91737c8b1bd96fe3e993338986fa42bf360cfefc508e1eac74ab88ffda2494
-DIST mlmmj-1.4.7.tar.xz 308224 BLAKE2B 
edf9caa10643374a02dfea633348ab8da1af33961f5d1496615863aec1c4d1b8366b88ac30f34a4fa704bf719e07357a78e6bf4eb95ab793b5c37f66d2ab20c1
 SHA512 
db26c5135469bc826d148175bf7f9abc6336a8fb09b0628734d2b50747781c418ec51e4dae5ffd2c4a5b8c62a45fcfb80ddb0fd5539146925852db6fb56d9bfb
 DIST mlmmj-1.5.2.tar.xz 278016 BLAKE2B 
905782fbbbc82993124cd0ebd6f99b5683c743e6053ddfcf6bdab7f601a7a2737a2dad2c7ad2b36a7a31201a8a4bd4066a57b7feceac739b5bec9b8840a13a49
 SHA512 
618deb15868bc3f38cf0111517baf116a3b6b171b942779337aa398ddfba7405a0a68e60ee18ddf3226b0aeedb5ff370ead3756c2bc604189b8926032089735e
 DIST mlmmj-1.6.0.tar.xz 279544 BLAKE2B 
247018d16ef82c96ead6d381e5dfc7bac18daf4286f567a37715ab6beeff7f8587f740438228f25012952af18ccd30d6b03884849cce92116d380bac5f000f67
 SHA512 
9d0452608faf4bb5fa4f29868cd5cd8c742c2a6b821581ad2d7cbf4077f71d6dc1233984367785bf680e96ca808eb6e3814b939c0e879e8f82de5b3b3d0e9cff

diff --git 
a/net-mail/mlmmj/files/mlmmj-1.2.19.0-listcontrol-customheaders.patch 
b/net-mail/mlmmj/files/mlmmj-1.2.19.0-listcontrol-customheaders.patch
deleted file mode 100644
index c5ee9b3d9b64..000000000000
--- a/net-mail/mlmmj/files/mlmmj-1.2.19.0-listcontrol-customheaders.patch
+++ /dev/null
@@ -1,30 +0,0 @@
-List control emails do not include customheaders, and can lead to RBL issues
-for forged senders.
-
-Signed-off-by: Robin H. Johnson <[email protected]>
-
-diff -Nuar --exclude '*~' mlmmj-1.2.19.0.orig/src/mlmmj-process.c 
mlmmj-1.2.19.0/src/mlmmj-process.c
---- mlmmj-1.2.19.0.orig/src/mlmmj-process.c    2014-03-23 17:57:24.000000000 
-0700
-+++ mlmmj-1.2.19.0/src/mlmmj-process.c 2016-05-04 13:50:26.034174788 -0700
-@@ -702,8 +702,19 @@
-                                                   "output mail file");
-                               exit(EXIT_FAILURE);
-                       }
--                      if(do_all_the_voodoo_here(rawmailfd, donemailfd, -1,
--                                      -1, delheaders,
-+                      /* hdrfd is checked in do_all_the_voodoo_here(), 
because the
-+                       * customheaders file might not exist */
-+                      headerfilename = concatstr(2, listdir, 
"/control/customheaders");
-+                      hdrfd = open(headerfilename, O_RDONLY);
-+                      myfree(headerfilename);
-+
-+                      /* footfd is checked in do_all_the_voodoo_here(), see 
above */
-+                      footerfilename = concatstr(2, listdir, 
"/control/footer");
-+                      footfd = open(footerfilename, O_RDONLY);
-+                      myfree(footerfilename);
-+
-+                      if(do_all_the_voodoo_here(rawmailfd, donemailfd, hdrfd,
-+                                      footfd, delheaders,
-                                       NULL, &allheaders, NULL) < 0) {
-                               log_error(LOG_ARGS, "do_all_the_voodoo_here");
-                               exit(EXIT_FAILURE);

diff --git a/net-mail/mlmmj/files/mlmmj-1.3.0-gcc-10.patch 
b/net-mail/mlmmj/files/mlmmj-1.3.0-gcc-10.patch
deleted file mode 100644
index 83217241e1db..000000000000
--- a/net-mail/mlmmj/files/mlmmj-1.3.0-gcc-10.patch
+++ /dev/null
@@ -1,20 +0,0 @@
---- a/include/mlmmj.h
-+++ b/include/mlmmj.h
-@@ -81,7 +81,7 @@ enum subtype {
-       SUB_NONE /* For when an address is not subscribed at all */
- };
- 
--char *subtype_strs[7]; /* count matches enum above; defined in 
subscriberfuncs.c */
-+extern char *subtype_strs[7]; /* count matches enum above; defined in 
subscriberfuncs.c */
- 
- enum subreason {
-       SUB_REQUEST,
-@@ -92,7 +92,7 @@ enum subreason {
-       SUB_SWITCH
- };
- 
--char * subreason_strs[6]; /* count matches enum above; defined in 
subscriberfuncs.c */
-+extern char * subreason_strs[6]; /* count matches enum above; defined in 
subscriberfuncs.c */
- 
- void print_version(const char *prg);
- 

diff --git a/net-mail/mlmmj/mlmmj-1.3.0-r1.ebuild 
b/net-mail/mlmmj/mlmmj-1.3.0-r1.ebuild
deleted file mode 100644
index 388d0fce798c..000000000000
--- a/net-mail/mlmmj/mlmmj-1.3.0-r1.ebuild
+++ /dev/null
@@ -1,57 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-MY_PV="${PV/_rc/-RC}"
-MY_P="${PN}-${MY_PV}"
-DESCRIPTION="Mailing list managing made joyful"
-HOMEPAGE="http://mlmmj.org/";
-SRC_URI="http://mlmmj.org/releases/${MY_P}.tar.bz2";
-S="${WORKDIR}/${MY_P}"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 ppc x86 ~amd64-linux ~x86-linux ~ppc-macos"
-
-DEPEND="virtual/mta"
-
-DOCS=( AUTHORS ChangeLog FAQ TODO TUNABLES UPGRADE )
-
-PATCHES=(
-       "${FILESDIR}"/mlmmj-1.2.19.0-listcontrol-customheaders.patch
-       "${FILESDIR}"/mlmmj-1.3.0-gcc-10.patch
-)
-
-src_prepare() {
-       default
-
-       # bug #259962
-       for file in $(find . -iname "*.cgi") ; do
-               sed -i -e "s:/usr/local/bin/:${EPREFIX}/usr/bin/:" "${file}" || 
die
-       done
-}
-
-src_configure() {
-       econf --enable-receive-strip
-}
-
-src_install() {
-       default
-
-       insinto /usr/share/mlmmj/texts
-       doins listtexts/*
-
-       insinto /usr/share/mlmmj
-       doins -r contrib/web/*
-
-       dodoc README.*
-}
-
-pkg_postinst() {
-       elog "mlmmj comes with serveral webinterfaces:"
-       elog "- One for user subscribing/unsubscribing"
-       elog "- One for admin tasks"
-       elog "both available in a php and perl module."
-       elog "For more info have a look in ${EROOT}/usr/share/mlmmj"
-}

diff --git a/net-mail/mlmmj/mlmmj-1.4.7.ebuild 
b/net-mail/mlmmj/mlmmj-1.4.7.ebuild
deleted file mode 100644
index 93efa393e387..000000000000
--- a/net-mail/mlmmj/mlmmj-1.4.7.ebuild
+++ /dev/null
@@ -1,70 +0,0 @@
-# Copyright 1999-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit autotools
-
-DESCRIPTION="Mailing list managing made joyful"
-HOMEPAGE="https://codeberg.org/mlmmj/mlmmj";
-SRC_URI="https://codeberg.org/${PN}/${PN}/releases/download/RELEASE_$(ver_rs 
1- _)/${P}.tar.xz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 ppc x86 ~amd64-linux ~x86-linux ~ppc-macos"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-COMMON_DEPEND="virtual/libiconv"
-DEPEND="
-       ${COMMON_DEPEND}
-       test? (
-               dev-libs/atf
-               dev-util/kyua
-       )
-"
-RDEPEND="
-       ${COMMON_DEPEND}
-       virtual/mta
-"
-BDEPEND="test? ( virtual/pkgconfig )"
-
-DOCS=( AUTHORS ChangeLog FAQ TODO TUNABLES.md UPGRADE )
-
-PATCHES=(
-       "${FILESDIR}"/mlmmj-1.4.7-cflags.patch
-)
-
-src_prepare() {
-       default
-       eautoreconf
-
-       # bug #259962
-       sed -i contrib/web/perl-admin/htdocs/subscribers.cgi \
-               -e "s:/usr/local/bin/:${EPREFIX}/usr/bin/:g" || die
-}
-
-src_configure() {
-       local myeconfargs=(
-               $(use_enable test tests)
-               --enable-receive-strip
-       )
-       econf "${myeconfargs[@]}"
-}
-
-src_install() {
-       default
-
-       insinto /usr/share/mlmmj
-       doins -r contrib/web/*
-
-       dodoc README.*
-}
-
-pkg_postinst() {
-       elog "mlmmj comes with serveral webinterfaces:"
-       elog "- One for user subscribing/unsubscribing"
-       elog "- One for admin tasks"
-       elog "both available in a php and perl module."
-       elog "For more info have a look in ${EROOT}/usr/share/mlmmj"
-}

Reply via email to