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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id CF084138359 for ; Wed, 16 Sep 2020 22:40:41 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D4F11E0885; Wed, 16 Sep 2020 22:40:40 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B9368E0884 for ; Wed, 16 Sep 2020 22:40:40 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 8E758340A35 for ; Wed, 16 Sep 2020 22:40:39 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1E96E365 for ; Wed, 16 Sep 2020 22:40:38 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1600296032.93aff0a56b4359a00be84937e86e5faeba3ef505.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-mail/serialmail/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-mail/serialmail/serialmail-0.75-r4.ebuild X-VCS-Directories: net-mail/serialmail/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 93aff0a56b4359a00be84937e86e5faeba3ef505 X-VCS-Branch: master Date: Wed, 16 Sep 2020 22:40:38 +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: 79bb8401-c79e-48bd-b8c2-75ce87a39081 X-Archives-Hash: 90a75c8f1d4188051dea1a62a026c45a commit: 93aff0a56b4359a00be84937e86e5faeba3ef505 Author: Sam James gentoo org> AuthorDate: Wed Sep 16 22:40:26 2020 +0000 Commit: Sam James gentoo org> CommitDate: Wed Sep 16 22:40:32 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=93aff0a5 net-mail/serialmail: cleanup old EAPI 4 Closes: https://bugs.gentoo.org/742239 Package-Manager: Portage-3.0.4, Repoman-3.0.1 Signed-off-by: Sam James gentoo.org> net-mail/serialmail/serialmail-0.75-r4.ebuild | 49 --------------------------- 1 file changed, 49 deletions(-) diff --git a/net-mail/serialmail/serialmail-0.75-r4.ebuild b/net-mail/serialmail/serialmail-0.75-r4.ebuild deleted file mode 100644 index 78801715a18..00000000000 --- a/net-mail/serialmail/serialmail-0.75-r4.ebuild +++ /dev/null @@ -1,49 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=4 - -inherit eutils - -DESCRIPTION="A serialmail is a collection of tools for passing mail across serial links" -HOMEPAGE="http://cr.yp.to/serialmail.html" -SRC_URI="http://cr.yp.to/software/${P}.tar.gz - mirror://gentoo/${P}-patch.tar.bz2" - -LICENSE="all-rights-reserved" -SLOT="0" -KEYWORDS="~amd64 ppc x86" -IUSE="static" -RESTRICT="mirror bindist" - -DEPEND="sys-apps/groff - >=sys-apps/ucspi-tcp-0.88" - -RDEPEND="sys-apps/groff - >=sys-apps/ucspi-tcp-0.88 - virtual/daemontools" - -src_prepare() { - epatch "${WORKDIR}"/${P}-gentoo.patch - epatch "${WORKDIR}"/${P}-smtpauth.patch - epatch "${WORKDIR}"/${P}-smtpauth_comp.patch - sed -i "s|@CFLAGS@|${CFLAGS}|" conf-cc - use static && LDFLAGS="${LDFLAGS} -static" - sed -i "s|@LDFLAGS@|${LDFLAGS}|" conf-ld - epatch "${FILESDIR}"/${P}-implicit.patch -} - -src_compile() { - grep -v man hier.c | grep -v doc > hier.c.tmp ; mv hier.c.tmp hier.c - emake it man -} - -src_install() { - dobin serialsmtp serialqmtp maildirsmtp maildirserial maildirqmtp - - dodoc AUTOTURN CHANGES FROMISP SYSDEPS THANKS TOISP \ - BLURB FILES INSTALL README TARGETS TODO VERSION - - doman maildirqmtp.1 maildirserial.1 maildirsmtp.1 \ - serialqmtp.1 serialsmtp.1 -}