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 59537138334 for ; Wed, 24 Oct 2018 17:50:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EEEA9E09D1; Wed, 24 Oct 2018 17:49:58 +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 C8203E09D1 for ; Wed, 24 Oct 2018 17:49:56 +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 BED3A335C8D for ; Wed, 24 Oct 2018 17:49:54 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9FB2742A for ; Wed, 24 Oct 2018 17:49:52 +0000 (UTC) From: "Brian Evans" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Brian Evans" Message-ID: <1540403366.caf420c807bd52e6f0bdbf12845cf7f72a87c55f.grknight@gentoo> Subject: [gentoo-commits] proj/devmanual:master commit in: quickstart/ X-VCS-Repository: proj/devmanual X-VCS-Files: quickstart/text.xml X-VCS-Directories: quickstart/ X-VCS-Committer: grknight X-VCS-Committer-Name: Brian Evans X-VCS-Revision: caf420c807bd52e6f0bdbf12845cf7f72a87c55f X-VCS-Branch: master Date: Wed, 24 Oct 2018 17:49:52 +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-Archives-Salt: 9fa0e4df-d0c2-49b1-8554-17d2742dcf1c X-Archives-Hash: d6f15a92d1ea6614e3bbf2886c8011e8 commit: caf420c807bd52e6f0bdbf12845cf7f72a87c55f Author: Brian Evans gentoo org> AuthorDate: Wed Oct 24 17:49:26 2018 +0000 Commit: Brian Evans gentoo org> CommitDate: Wed Oct 24 17:49:26 2018 +0000 URL: https://gitweb.gentoo.org/proj/devmanual.git/commit/?id=caf420c8 Change eutils in quickstart to epatch and desktop where necessary Signed-off-by: Brian Evans gentoo.org> quickstart/text.xml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/quickstart/text.xml b/quickstart/text.xml index b82185d..19a2b9e 100644 --- a/quickstart/text.xml +++ b/quickstart/text.xml @@ -260,9 +260,9 @@ compile-time dependencies, and the RDEPEND lists runtime dependencies. Se

Often we need to apply patches. This is done in the src_prepare function using the epatch helper function. To use epatch -one must first tell Portage that the eutils eclass (an eclass is +one must first tell Portage that the epatch eclass (an eclass is like a library) is required -this is done via inherit eutils at the top of the ebuild. Here's +this is done via inherit epatch at the top of the ebuild. Here's app-misc/detox/detox-1.1.0.ebuild:

@@ -272,7 +272,7 @@ this is done via inherit eutils at the top of the ebuild. Here's EAPI=5 -inherit eutils +inherit epatch DESCRIPTION="detox safely removes spaces and strange characters from filenames" HOMEPAGE="http://detox.sourceforge.net/" @@ -372,7 +372,7 @@ Another more complicated example, this time based upon EAPI=5 -inherit eutils +inherit epatch desktop DESCRIPTION="A lightweight email client and newsreader" HOMEPAGE="https://sylpheed.good-day.net/"