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 5F0551382C5 for ; Sun, 3 Jan 2021 23:20:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9FFC6E0874; Sun, 3 Jan 2021 23:20:33 +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 88609E0874 for ; Sun, 3 Jan 2021 23:20:33 +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 0B3D2340B35 for ; Sun, 3 Jan 2021 23:20:32 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8D93CCC for ; Sun, 3 Jan 2021 23:20:30 +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: <1609716025.c944b43aba94a4de73d3ca6c582fe40c5998cf6a.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/moreutils/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/moreutils/moreutils-0.65.ebuild X-VCS-Directories: sys-apps/moreutils/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: c944b43aba94a4de73d3ca6c582fe40c5998cf6a X-VCS-Branch: master Date: Sun, 3 Jan 2021 23:20: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: 9d45ebe8-33b8-4739-a408-83f43bf70afc X-Archives-Hash: 396b48bd3ac6c46b9ce60dfab92ceeb2 commit: c944b43aba94a4de73d3ca6c582fe40c5998cf6a Author: Sam James gentoo org> AuthorDate: Sun Jan 3 23:20:25 2021 +0000 Commit: Sam James gentoo org> CommitDate: Sun Jan 3 23:20:25 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c944b43a sys-apps/moreutils: minor style + dep fixups * PMS says that in pkg_*inst, we can only rely on RDEPEND => eselect is an RDEPEND. * Style changes in DESCRIPTION and layout. Package-Manager: Portage-3.0.12, Repoman-3.0.2 Signed-off-by: Sam James gentoo.org> sys-apps/moreutils/moreutils-0.65.ebuild | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/sys-apps/moreutils/moreutils-0.65.ebuild b/sys-apps/moreutils/moreutils-0.65.ebuild index d998cee9476..2a560831194 100644 --- a/sys-apps/moreutils/moreutils-0.65.ebuild +++ b/sys-apps/moreutils/moreutils-0.65.ebuild @@ -5,7 +5,7 @@ EAPI=7 inherit toolchain-funcs -DESCRIPTION="a collection of tools that nobody thought to write when Unix was young" +DESCRIPTION="A collection of tools that nobody thought to write when Unix was young" HOMEPAGE="https://joeyh.name/code/moreutils/ https://git.joeyh.name/index.cgi/moreutils.git/" # Not available at time of release #SRC_URI="mirror://debian/pool/main/${PN:0:1}/${PN}/${PN}_${PV}.orig.tar.xz" @@ -17,19 +17,21 @@ KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~x86-linux ~x64-macos IUSE="+doc +perl" RDEPEND=" + app-admin/eselect perl? ( dev-lang/perl dev-perl/IPC-Run dev-perl/Time-Duration dev-perl/TimeDate - )" + ) +" DEPEND=" - app-admin/eselect doc? ( - dev-lang/perl >=app-text/docbook2X-0.8.8-r2 app-text/docbook-xml-dtd:4.4 - )" + dev-lang/perl + ) +" PATCHES=( "${FILESDIR}/${PN}-0.64-respect-env.patch" @@ -66,6 +68,6 @@ src_install() { } pkg_postinst() { - # try to make sure $EDITOR is valid for vipe (bug #604630) + # Try to make sure $EDITOR is valid for vipe (bug #604630) eselect editor update }