public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Conrad Kostecki" <conikost@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: mail-mta/nullmailer/
Date: Fri,  9 Jul 2021 22:36:55 +0000 (UTC)	[thread overview]
Message-ID: <1625870193.b6c1a3d03861a20f38ce9b1de16f80e0ce3c6b30.conikost@gentoo> (raw)

commit:     b6c1a3d03861a20f38ce9b1de16f80e0ce3c6b30
Author:     Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Fri Jul  9 22:06:40 2021 +0000
Commit:     Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Fri Jul  9 22:36:33 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b6c1a3d0

mail-mta/nullmailer: drop old version

Closes: https://bugs.gentoo.org/781320
Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>

 mail-mta/nullmailer/nullmailer-2.2-r1.ebuild | 156 ---------------------------
 1 file changed, 156 deletions(-)

diff --git a/mail-mta/nullmailer/nullmailer-2.2-r1.ebuild b/mail-mta/nullmailer/nullmailer-2.2-r1.ebuild
deleted file mode 100644
index 53c1cabc06f..00000000000
--- a/mail-mta/nullmailer/nullmailer-2.2-r1.ebuild
+++ /dev/null
@@ -1,156 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit autotools flag-o-matic multilib systemd user
-
-DESCRIPTION="Simple relay-only local mail transport agent"
-HOMEPAGE="http://untroubled.org/nullmailer/ https://github.com/bruceg/nullmailer"
-SRC_URI="http://untroubled.org/${PN}/archive/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ppc x86 ~x64-cygwin"
-IUSE="ssl test"
-RESTRICT="!test? ( test )"
-
-DEPEND="
-	ssl? ( net-libs/gnutls:0= )
-	test? ( sys-apps/ucspi-tcp[ipv6] sys-process/daemontools )
-"
-RDEPEND="
-	virtual/logger
-	sys-apps/shadow
-	ssl? ( net-libs/gnutls:0= )
-	!mail-mta/courier
-	!mail-mta/esmtp
-	!mail-mta/exim
-	!mail-mta/mini-qmail
-	!mail-mta/msmtp[mta(+)]
-	!mail-mta/netqmail
-	!mail-mta/opensmtpd[mta(+)]
-	!mail-mta/postfix
-	!mail-mta/qmail-ldap
-	!mail-mta/sendmail
-	!mail-mta/ssmtp[mta(+)]
-"
-
-PATCHES=(
-	"${FILESDIR}/${P}-fix-test-racecondition.patch"
-	"${FILESDIR}/${P}-disable-dns-using-test.patch"
-	"${FILESDIR}/${P}-disable-smtp-auth-tests.patch"
-	"${FILESDIR}/${P}-c++11.patch"
-)
-
-pkg_setup() {
-	enewgroup nullmail 88
-	enewuser nullmail 88 -1 /var/spool/nullmailer nullmail
-}
-
-src_prepare() {
-	default
-	sed -i.orig \
-		-e '/\$(localstatedir)\/trigger/d' \
-		"${S}"/Makefile.am || die
-	sed \
-		-e "s:^AC_PROG_RANLIB:AC_CHECK_TOOL(AR, ar, false)\nAC_PROG_RANLIB:g" \
-		-i configure.ac || die
-	sed -e "s/AM_CONFIG_HEADER/AC_CONFIG_HEADERS/" -i configure.ac || die
-	sed \
-		-e "s#/usr/local#/usr#" \
-		-e 's:/usr/etc/:/etc/:g' \
-		-i doc/nullmailer-send.8 || die
-	eautoreconf
-}
-
-src_configure() {
-	# https://github.com/bruceg/nullmailer/pull/31/commits
-	append-lfs-flags #471102
-	econf \
-		--localstatedir="${EPREFIX}"/var \
-		$(use_enable ssl tls)
-}
-
-src_install() {
-	default
-
-	# A small bit of sample config
-	insinto /etc/nullmailer
-	newins "${FILESDIR}"/remotes.sample-2.0 remotes
-
-	# This contains passwords, so should be secure
-	fperms 0640 /etc/nullmailer/remotes
-	fowners root:nullmail /etc/nullmailer/remotes
-
-	# daemontools stuff
-	dodir /var/spool/nullmailer/service{,/log}
-
-	insinto /var/spool/nullmailer/service
-	newins scripts/nullmailer.run run
-	fperms 700 /var/spool/nullmailer/service/run
-
-	insinto /var/spool/nullmailer/service/log
-	newins scripts/nullmailer-log.run run
-	fperms 700 /var/spool/nullmailer/service/log/run
-
-	# usability
-	dosym ../sbin/sendmail usr/$(get_libdir)/sendmail
-
-	# permissions stuff
-	keepdir /var/log/nullmailer /var/spool/nullmailer/{tmp,queue,failed}
-	fperms 770 /var/log/nullmailer
-	fowners nullmail:nullmail /usr/sbin/nullmailer-queue /usr/bin/mailq
-	fperms 4711 /usr/sbin/nullmailer-queue /usr/bin/mailq
-
-	newinitd "${FILESDIR}"/init.d-nullmailer-r6 nullmailer
-	systemd_dounit scripts/${PN}.service
-}
-
-pkg_postinst() {
-	if [[ ! -e ${EROOT}/var/spool/nullmailer/trigger ]]; then
-		mkfifo --mode=0660 "${EROOT}/var/spool/nullmailer/trigger" || die
-	fi
-	chown nullmail:nullmail \
-		"${EROOT}"/var/log/nullmailer \
-		"${EROOT}"/var/spool/nullmailer/{tmp,queue,failed,trigger} || die
-	chmod 770 \
-		"${EROOT}"/var/log/nullmailer \
-		"${EROOT}"/var/spool/nullmailer/{tmp,queue,failed} || die
-	chmod 660 "${EROOT}"/var/spool/nullmailer/trigger || die
-
-	# This contains passwords, so should be secure
-	chmod 0640 "${EROOT}"/etc/nullmailer/remotes || die
-	chown root:nullmail "${EROOT}"/etc/nullmailer/remotes || die
-
-	if [[ -z ${REPLACING_VERSIONS} ]]; then
-		elog "To create an initial setup, please do:"
-		elog "emerge --config =${CATEGORY}/${PF}"
-	fi
-}
-
-pkg_postrm() {
-	if [[ -e ${EROOT}/var/spool/nullmailer/trigger ]]; then
-		rm "${EROOT}/var/spool/nullmailer/trigger" || die
-	fi
-}
-
-pkg_config() {
-	if [[ ! -s ${EROOT}/etc/nullmailer/me ]]; then
-		einfo "Setting /etc/nullmailer/me"
-		hostname --fqdn > "${EROOT}/etc/nullmailer/me"
-		if [[ ! -s ${EROOT}/etc/nullmailer/me ]]; then
-			eerror "Got no output from 'hostname --fqdn'"
-		fi
-	fi
-	if [[ ! -s ${EROOT}/etc/nullmailer/defaultdomain ]]; then
-		einfo "Setting /etc/nullmailer/defaultdomain"
-		hostname --domain > "${EROOT}/etc/nullmailer/defaultdomain"
-		if [[ ! -s ${EROOT}/etc/nullmailer/me ]]; then
-			eerror "Got no output from 'hostname --domain'"
-		fi
-	fi
-	if ! grep -q '^[ \t]*[^# \t]' "${EROOT}/etc/nullmailer/remotes"; then
-		ewarn "Remember to tweak ${EROOT}/etc/nullmailer/remotes yourself!"
-	fi
-}


             reply	other threads:[~2021-07-09 22:37 UTC|newest]

Thread overview: 27+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-07-09 22:36 Conrad Kostecki [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-03-06  3:37 [gentoo-commits] repo/gentoo:master commit in: mail-mta/nullmailer/ Sam James
2022-05-05  2:40 WANG Xuerui
2022-03-23  1:08 Sam James
2022-03-10 21:12 Sam James
2022-01-24 19:19 Sam James
2021-08-04 14:26 Yixun Lan
2021-07-24 15:22 Sam James
2021-07-16 21:44 Sam James
2021-07-15 21:42 Sam James
2021-07-09 22:36 Conrad Kostecki
2021-04-23  6:53 Michael Haubenwallner
2020-03-07 15:59 Mikle Kolyada
2020-03-07 15:58 Mikle Kolyada
2019-11-28 10:55 Agostino Sarubbo
2019-11-27 13:30 Thomas Deutschmann
2019-11-27 12:56 Agostino Sarubbo
2019-04-01  8:36 Michael Haubenwallner
2019-04-01  8:30 Michael Haubenwallner
2017-05-27 18:41 Robin H. Johnson
2017-05-27 18:41 Robin H. Johnson
2017-05-27 16:16 Robin H. Johnson
2017-05-25 10:44 Agostino Sarubbo
2016-11-12 14:21 Justin Lecher
2016-07-07  4:09 Benda XU
2016-03-07 21:40 Mike Frysinger
2016-03-07 21:40 Mike Frysinger

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1625870193.b6c1a3d03861a20f38ce9b1de16f80e0ce3c6b30.conikost@gentoo \
    --to=conikost@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox