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 EFAC6159C9B for ; Thu, 1 Aug 2024 16:24:02 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 762642BC093; Thu, 1 Aug 2024 16:24:00 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 1E0222BC094 for ; Thu, 1 Aug 2024 16:24:00 +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 41C95340C76 for ; Thu, 1 Aug 2024 16:23:59 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DB5FA1EA7 for ; Thu, 1 Aug 2024 16:23:55 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1722528416.c894a5a65ed967a4d1e77832e33ec1533b0122a3.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-mail/dot-forward/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-mail/dot-forward/dot-forward-0.71-r4.ebuild X-VCS-Directories: net-mail/dot-forward/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: c894a5a65ed967a4d1e77832e33ec1533b0122a3 X-VCS-Branch: master Date: Thu, 1 Aug 2024 16:23:55 +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: 4a662840-70a3-46eb-a56f-0a0600c40027 X-Archives-Hash: de0d30d5e799ec5ae556be69e9dcb49a commit: c894a5a65ed967a4d1e77832e33ec1533b0122a3 Author: Filip Kobierski pm me> AuthorDate: Wed Jul 31 12:42:18 2024 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Thu Aug 1 16:06:56 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c894a5a6 net-mail/dot-forward: remove 0.71-r4 Signed-off-by: Filip Kobierski pm.me> Closes: https://github.com/gentoo/gentoo/pull/37862 Signed-off-by: Andreas Sturmlechner gentoo.org> net-mail/dot-forward/dot-forward-0.71-r4.ebuild | 63 ------------------------- 1 file changed, 63 deletions(-) diff --git a/net-mail/dot-forward/dot-forward-0.71-r4.ebuild b/net-mail/dot-forward/dot-forward-0.71-r4.ebuild deleted file mode 100644 index 6fd424102749..000000000000 --- a/net-mail/dot-forward/dot-forward-0.71-r4.ebuild +++ /dev/null @@ -1,63 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit fixheadtails qmail - -DESCRIPTION="reads sendmail's .forward files under qmail" -HOMEPAGE="http://cr.yp.to/dot-forward.html" -SRC_URI="http://cr.yp.to/software/${P}.tar.gz" - -LICENSE="public-domain" -SLOT="0" -KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 sparc x86" -IUSE="" - -# See bug 97850 -RESTRICT="test" - -DEPEND=" - acct-group/nofiles - acct-group/qmail -" - -RDEPEND="${DEPEND}" - -PATCHES=( - "${FILESDIR}"/${PV}-errno.patch -) - -DOCS=( - BLURB - CHANGES - FILES - INSTALL - README - TARGETS - THANKS - TODO -) - -src_prepare() { - default - - ht_fix_file Makefile -} - -src_configure() { - qmail_set_cc -} - -src_compile() { - emake prog -} - -src_install() { - einstalldocs - doman *.1 - - insopts -o root -g qmail -m 755 - insinto "${QMAIL_HOME}"/bin - doins dot-forward -}