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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 304FC158009 for ; Wed, 28 Jun 2023 09:21:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7AEA7E08F2; Wed, 28 Jun 2023 09:21:21 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 2FDA5E07B3 for ; Wed, 28 Jun 2023 09:21:21 +0000 (UTC) From: Ulrich Mueller To: Florian Schmaus Cc: gentoo-dev@lists.gentoo.org Subject: Re: [gentoo-dev] [PATCH 1/2] gradle.eclass: add new eclass In-Reply-To: <20230628075245.892402-2-flow@gentoo.org> (Florian Schmaus's message of "Wed, 28 Jun 2023 09:52:44 +0200") References: <20230106172051.274199-1-flow@gentoo.org> <20230628075245.892402-1-flow@gentoo.org> <20230628075245.892402-2-flow@gentoo.org> Date: Wed, 28 Jun 2023 11:21:16 +0200 Message-ID: User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.2 (gnu/linux) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-dev@lists.gentoo.org Reply-to: gentoo-dev@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply MIME-Version: 1.0 Content-Type: text/plain X-Archives-Salt: 24169825-92f1-4cd9-877e-20961629da1c X-Archives-Hash: c54e1d52c591bfc57a00cb9c5a0ffc19 >>>>> On Wed, 28 Jun 2023, Florian Schmaus wrote: > +# @FUNCTION: gradle-src_uri > +# @DESCRIPTION: > +# Generate SRC_URI data from EGRADLE_BUNDLED_VER. > +gradle-src_uri() { This is named gradle_src_uri (with two underscores) in the main eclass documentation. > +# @FUNCTION: gradle-src_unpack > +# @DESCRIPTION: > +# Unpack the "bundled" gradle version. You must have > +# EGRADLE_BUNDLED_VER set when calling this function. > +gradle-src_unpack() { Even if this isn't exported, is there any good reason for deviating from the normal naming convention for eclass phase functions? Ulrich