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 3DCCB138334 for ; Sat, 5 Oct 2019 07:24:09 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 996A9E0845; Sat, 5 Oct 2019 07:24:07 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 6D402E0845 for ; Sat, 5 Oct 2019 07:24:07 +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 ABAE434B986 for ; Sat, 5 Oct 2019 07:24:05 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 41E2F7FD for ; Sat, 5 Oct 2019 07:24:03 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1570259147.50899afd46e7ce5c27391010ade97765d97c4aa2.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: mail-client/mailx-support/ X-VCS-Repository: repo/gentoo X-VCS-Files: mail-client/mailx-support/mailx-support-20060102-r1.ebuild X-VCS-Directories: mail-client/mailx-support/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 50899afd46e7ce5c27391010ade97765d97c4aa2 X-VCS-Branch: master Date: Sat, 5 Oct 2019 07:24:03 +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: 0ecca243-9a37-4d06-a69f-620bb1234307 X-Archives-Hash: 377b95e4d137ee6bb9e6abe8d64d7469 commit: 50899afd46e7ce5c27391010ade97765d97c4aa2 Author: Michał Górny gentoo org> AuthorDate: Sat Oct 5 07:05:47 2019 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat Oct 5 07:05:47 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=50899afd mail-client/mailx-support: Drop old (EAPI=0) Signed-off-by: Michał Górny gentoo.org> .../mailx-support/mailx-support-20060102-r1.ebuild | 39 ---------------------- 1 file changed, 39 deletions(-) diff --git a/mail-client/mailx-support/mailx-support-20060102-r1.ebuild b/mail-client/mailx-support/mailx-support-20060102-r1.ebuild deleted file mode 100644 index 7959ee7eaf9..00000000000 --- a/mail-client/mailx-support/mailx-support-20060102-r1.ebuild +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=0 - -inherit eutils toolchain-funcs - -DESCRIPTION="Provides lockspool utility" -HOMEPAGE="http://www.openbsd.org/" -SRC_URI="mirror://gentoo/${P}.tar.bz2" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos" -IUSE="" - -RDEPEND="" -DEPEND="" - -src_unpack() { - unpack ${A} - cd "${S}" - epatch "${FILESDIR}"/${P}-respect-ldflags.patch - - # This code should only be ran with Gentoo Prefix profiles - if use prefix; then - ebegin "Allowing unprivileged install" - sed -i -e "s|-g 0 -o 0||g" Makefile - eend $? - fi -} - -src_compile() { - emake CC="$(tc-getCC)" BINDNOW_FLAGS="" || die "emake failed" -} - -src_install() { - einstall || die "einstall failed" -}