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 3D25C159C9B for ; Wed, 7 Aug 2024 19:34:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 503B72BC084; Wed, 7 Aug 2024 19:34:34 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 2A3292BC082 for ; Wed, 7 Aug 2024 19:34:34 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 707543430BD for ; Wed, 7 Aug 2024 19:34:33 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BB7531EC0 for ; Wed, 7 Aug 2024 19:34:30 +0000 (UTC) From: "Petr Vaněk" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Petr Vaněk" Message-ID: <1723059155.3cd1516d8c288157916ccfaabd9c16c9cde17b34.arkamar@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-mail/mailfront/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-mail/mailfront/mailfront-2.22.ebuild X-VCS-Directories: net-mail/mailfront/ X-VCS-Committer: arkamar X-VCS-Committer-Name: Petr Vaněk X-VCS-Revision: 3cd1516d8c288157916ccfaabd9c16c9cde17b34 X-VCS-Branch: master Date: Wed, 7 Aug 2024 19:34:30 +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: c9bd2ec1-5c65-4492-be1b-0ef00926913c X-Archives-Hash: c713201c59e5a22e4f68529b70849962 commit: 3cd1516d8c288157916ccfaabd9c16c9cde17b34 Author: Petr Vaněk gentoo org> AuthorDate: Wed Aug 7 11:02:00 2024 +0000 Commit: Petr Vaněk gentoo org> CommitDate: Wed Aug 7 19:32:35 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3cd1516d net-mail/mailfront: drop 2.22 Signed-off-by: Petr Vaněk gentoo.org> net-mail/mailfront/mailfront-2.22.ebuild | 61 -------------------------------- 1 file changed, 61 deletions(-) diff --git a/net-mail/mailfront/mailfront-2.22.ebuild b/net-mail/mailfront/mailfront-2.22.ebuild deleted file mode 100644 index 83c2bd634dde..000000000000 --- a/net-mail/mailfront/mailfront-2.22.ebuild +++ /dev/null @@ -1,61 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit toolchain-funcs - -DESCRIPTION="Mail server network protocol front-ends" -HOMEPAGE="https://untroubled.org/mailfront/" -SRC_URI="https://untroubled.org/mailfront/archive/${P}.tar.gz" - -LICENSE="GPL-2+" -SLOT="0" -KEYWORDS="~amd64 ~sparc ~x86" -IUSE="" - -DEPEND=">=dev-libs/bglibs-2.04 - >=net-libs/cvm-0.81" -RDEPEND="${DEPEND} - virtual/qmail - net-libs/cvm" - -src_configure() { - echo "${EPREFIX}/var/qmail" > conf-qmail || die - echo "/var/qmail/bin" > conf-bin || die - echo "/usr/$(get_libdir)/mailfront" > conf-modules || die - echo "/usr/include" > conf-include || die - echo "$(tc-getCC) ${CFLAGS}" > conf-cc || die - echo "$(tc-getCC) ${CFLAGS} -fPIC -shared" > conf-ccso || die - echo "$(tc-getCC) ${LDFLAGS}" > conf-ld || die -} - -src_install() { - emake install install_prefix="${ED}" - exeinto /var/qmail/supervise/qmail-smtpd - newexe "${FILESDIR}"/run-smtpfront run.mailfront - exeinto /var/qmail/supervise/qmail-pop3d - newexe "${FILESDIR}"/run-pop3front run.mailfront - - dodoc ANNOUNCEMENT ChangeLog NEWS README TODO VERSION - docinto html - dodoc *.html -} - -pkg_config() { - cd "${EROOT}"/var/qmail/supervise/qmail-smtpd/ || die - [[ -e run ]] && ( cp run run.qmail-smtpd.`date +%Y%m%d%H%M%S` || die ) - cp run.mailfront run || die - - cd "${EROOT}"/var/qmail/supervise/qmail-pop3d/ || die - [[ -e run ]] && ( cp run run.qmail-pop3d.`date +%Y%m%d%H%M%S` || die ) - cp run.mailfront run || die -} - -pkg_postinst() { - elog "Run" - elog "emerge --config '=${CATEGORY}/${PF}'" - elog "to update your run files (backups are created) in" - elog " /var/qmail/supervise/qmail-pop3d and" - elog " /var/qmail/supervise/qmail-smtpd" -}