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 D484D139337 for ; Mon, 2 Aug 2021 09:16:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 204C3E0918; Mon, 2 Aug 2021 09:16:16 +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 02FA7E0918 for ; Mon, 2 Aug 2021 09:16:15 +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 D507C3434B4 for ; Mon, 2 Aug 2021 09:16:14 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 70ADC7B9 for ; Mon, 2 Aug 2021 09:16:13 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1627895762.7f11b742ca55d75d914a58735b9d2807b3f4c13a.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/diffutils/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/diffutils/diffutils-3.8.ebuild X-VCS-Directories: sys-apps/diffutils/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 7f11b742ca55d75d914a58735b9d2807b3f4c13a X-VCS-Branch: master Date: Mon, 2 Aug 2021 09:16:13 +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: cf83f0dc-ff91-4980-8e25-cc13674577f2 X-Archives-Hash: f6776eb03fca76826bbf4c60d57c1ca1 commit: 7f11b742ca55d75d914a58735b9d2807b3f4c13a Author: David Seifert gentoo org> AuthorDate: Mon Aug 2 09:16:02 2021 +0000 Commit: David Seifert gentoo org> CommitDate: Mon Aug 2 09:16:02 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7f11b742 sys-apps/diffutils: Remove modern EAPI defaults * `src_test` has been parallel since EAPI 5 * `DOCS` lists the standard einstalldocs ones Signed-off-by: David Seifert gentoo.org> sys-apps/diffutils/diffutils-3.8.ebuild | 7 ------- 1 file changed, 7 deletions(-) diff --git a/sys-apps/diffutils/diffutils-3.8.ebuild b/sys-apps/diffutils/diffutils-3.8.ebuild index 0a85ac0bf2e..48330a99311 100644 --- a/sys-apps/diffutils/diffutils-3.8.ebuild +++ b/sys-apps/diffutils/diffutils-3.8.ebuild @@ -17,8 +17,6 @@ IUSE="nls static" BDEPEND="nls? ( sys-devel/gettext )" -DOCS=( AUTHORS ChangeLog NEWS README THANKS TODO ) - src_configure() { use static && append-ldflags -static @@ -36,8 +34,3 @@ src_configure() { ) econf "${myeconfargs[@]}" } - -src_test() { - # explicitly allow parallel testing - emake check -}