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 50C9C15808E for ; Sat, 30 Apr 2022 17:01:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5ACB4E0998; Sat, 30 Apr 2022 17:01:20 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 3D681E0998 for ; Sat, 30 Apr 2022 17:01:19 +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 C317B341549 for ; Sat, 30 Apr 2022 17:01:18 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EA2C3344 for ; Sat, 30 Apr 2022 17:01:16 +0000 (UTC) From: "Ulrich Müller" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ulrich Müller" Message-ID: <1651337924.b99e3d57965f00401a37041564a029d96ec788b2.ulm@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: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: b99e3d57965f00401a37041564a029d96ec788b2 X-VCS-Branch: master Date: Sat, 30 Apr 2022 17:01:16 +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: 44bf3797-d59e-43c1-b888-ebc3cba8fe47 X-Archives-Hash: 7da2510ea8fb874c51bc100cd595c779 commit: b99e3d57965f00401a37041564a029d96ec788b2 Author: Thomas Bracht Laumann Jespersen laumann xyz> AuthorDate: Sat Apr 30 11:32:28 2022 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Sat Apr 30 16:58:44 2022 +0000 URL: https://gitweb.gentoo.org/proj/devmanual.git/commit/?id=b99e3d57 eclass-writing: minor edits to jmake example Double space after full stop. Add full stop to sentence. Signed-off-by: Thomas Bracht Laumann Jespersen laumann.xyz> [Wrap paragraph at column 72.] Signed-off-by: Ulrich Müller gentoo.org> eclass-writing/text.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/eclass-writing/text.xml b/eclass-writing/text.xml index 8c83dc2..9f5fbdf 100644 --- a/eclass-writing/text.xml +++ b/eclass-writing/text.xml @@ -801,7 +801,7 @@ functions. # @DESCRIPTION: # Demonstrates EXPORT_FUNCTIONS and defines simple wrappers for the # (hypothetical) jmake build system along with default src_configure and -# src_compile phase functions +# src_compile phase functions. case ${EAPI} in 7|8) ;; @@ -825,8 +825,8 @@ jmake-configure() { # @FUNCTION: jmake_src_configure # @USAGE: [additional-args] # @DESCRIPTION: -# Calls jmake-configure() to configure a jmake project. Passes all arguments -# through to the appropriate "jmake configure" command. +# Calls jmake-configure() to configure a jmake project. Passes all +# arguments through to the appropriate "jmake configure" command. jmake_src_configure() { jmake-configure "$@" || die "configure failed" }