From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 0C275158020 for ; Thu, 10 Nov 2022 13:23:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A16C1E09DB; Thu, 10 Nov 2022 13:23:18 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 80901E09DB for ; Thu, 10 Nov 2022 13:23:18 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 3DBA133BE39 for ; Thu, 10 Nov 2022 13:23:17 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 73DDA6D2 for ; Thu, 10 Nov 2022 13:23:15 +0000 (UTC) From: "Eray Aslan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Eray Aslan" Message-ID: <1668086554.a9b7c2773237d9dd44b366797a15ccec8dc51e8f.eras@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-mail/mailbase/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-mail/mailbase/mailbase-1.8.ebuild X-VCS-Directories: net-mail/mailbase/ X-VCS-Committer: eras X-VCS-Committer-Name: Eray Aslan X-VCS-Revision: a9b7c2773237d9dd44b366797a15ccec8dc51e8f X-VCS-Branch: master Date: Thu, 10 Nov 2022 13:23:15 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: ca80ddb9-e650-4b76-8661-81af4c59ef0b X-Archives-Hash: 3e929eacaf35e50ba245f8c16f9ea328 commit: a9b7c2773237d9dd44b366797a15ccec8dc51e8f Author: Eray Aslan gentoo org> AuthorDate: Thu Nov 10 13:22:34 2022 +0000 Commit: Eray Aslan gentoo org> CommitDate: Thu Nov 10 13:22:34 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a9b7c277 net-mail/mailbase: drop 1.8 Signed-off-by: Eray Aslan gentoo.org> net-mail/mailbase/mailbase-1.8.ebuild | 44 ----------------------------------- 1 file changed, 44 deletions(-) diff --git a/net-mail/mailbase/mailbase-1.8.ebuild b/net-mail/mailbase/mailbase-1.8.ebuild deleted file mode 100644 index 9fe729541140..000000000000 --- a/net-mail/mailbase/mailbase-1.8.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="7" - -inherit pam - -DESCRIPTION="MTA layout package" -HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage" -S=${WORKDIR} - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" -IUSE="pam" - -RDEPEND=" - acct-group/mail - acct-user/mail - acct-user/postmaster - pam? ( sys-libs/pam ) -" - -src_install() { - insinto /etc/mail - doins "${FILESDIR}"/aliases - insinto /etc - newins "${FILESDIR}"/mailcap-r3 mailcap - doman "${FILESDIR}"/mailcap.5 - - dosym spool/mail /var/mail - - if use pam ; then - newpamd "${FILESDIR}"/common-pamd-include pop - newpamd "${FILESDIR}"/common-pamd-include imap - local p - for p in pop3 pop3s pops ; do - dosym pop /etc/pam.d/${p} - done - for p in imap4 imap4s imaps ; do - dosym imap /etc/pam.d/${p} - done - fi -}