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 8C49F15808B for ; Fri, 18 Mar 2022 18:10:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D0F3BE081A; Fri, 18 Mar 2022 18:10:38 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B6936E081A for ; Fri, 18 Mar 2022 18:10:38 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A632C3433DF for ; Fri, 18 Mar 2022 18:10:37 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 22F74320 for ; Fri, 18 Mar 2022 18:10:36 +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: <1647627019.d26cb56cf88ca73b321ffa7f601d86ab682cc206.sam@gentoo> Subject: [gentoo-commits] proj/devmanual:master commit in: eclass-writing/ X-VCS-Repository: proj/devmanual X-VCS-Files: eclass-writing/text.xml X-VCS-Directories: eclass-writing/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: d26cb56cf88ca73b321ffa7f601d86ab682cc206 X-VCS-Branch: master Date: Fri, 18 Mar 2022 18:10:36 +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: 40b9b552-b4c7-4ad9-a2d2-f84feaf3e2e1 X-Archives-Hash: d6dc1d9886b6d922867d1e86425cb8ee commit: d26cb56cf88ca73b321ffa7f601d86ab682cc206 Author: Thomas Bracht Laumann Jespersen laumann xyz> AuthorDate: Fri Mar 18 05:38:58 2022 +0000 Commit: Sam James gentoo org> CommitDate: Fri Mar 18 18:10:19 2022 +0000 URL: https://gitweb.gentoo.org/proj/devmanual.git/commit/?id=d26cb56c eclass-writing: Rework intro paragraph for jmake example Signed-off-by: Thomas Bracht Laumann Jespersen laumann.xyz> Closes: https://github.com/gentoo/devmanual/pull/278 Signed-off-by: Sam James gentoo.org> eclass-writing/text.xml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/eclass-writing/text.xml b/eclass-writing/text.xml index f5bb88b..0e6ca99 100644 --- a/eclass-writing/text.xml +++ b/eclass-writing/text.xml @@ -667,9 +667,10 @@ src_compile() {

-A simple eclass which defines a number of functions and default src_confgure and -src_compile for the (hypothetical) jmake build system might look -something like the following: +Here is an example of how a simple eclass for a hypothetical jmake build +system might look. The eclass defines a few functions, along with default +implementations for the src_configure and src_compile phase +functions.