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 53546158089 for ; Thu, 5 Oct 2023 13:10:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 96F432BC01B; Thu, 5 Oct 2023 13:10:32 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 80DE02BC01B for ; Thu, 5 Oct 2023 13:10:32 +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 6B9B4335CE9 for ; Thu, 5 Oct 2023 13:10:31 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B4F2892F for ; Thu, 5 Oct 2023 13:10:29 +0000 (UTC) From: "David Roman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Roman" Message-ID: <1696511398.b7fb055a13af12299ecab8ba34b451ee2a0bd8b7.davidroman@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: eclass/ X-VCS-Repository: repo/proj/guru X-VCS-Files: eclass/mix.eclass eclass/octaveforge.eclass X-VCS-Directories: eclass/ X-VCS-Committer: davidroman X-VCS-Committer-Name: David Roman X-VCS-Revision: b7fb055a13af12299ecab8ba34b451ee2a0bd8b7 X-VCS-Branch: dev Date: Thu, 5 Oct 2023 13:10:29 +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: 4d0fc0c0-753d-4731-830c-74976ae07702 X-Archives-Hash: 0cbb6ab9a1fe54f4f05b9900be0debd6 commit: b7fb055a13af12299ecab8ba34b451ee2a0bd8b7 Author: David Roman gmail com> AuthorDate: Thu Oct 5 13:09:58 2023 +0000 Commit: David Roman gmail com> CommitDate: Thu Oct 5 13:09:58 2023 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=b7fb055a eclass: rename deprecated ECLASS-VARIABLE to ECLASS_VARIABLE Signed-off-by: David Roman gmail.com> eclass/mix.eclass | 10 +++++----- eclass/octaveforge.eclass | 8 ++++---- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/eclass/mix.eclass b/eclass/mix.eclass index b5071e94d8..a1f079f77f 100644 --- a/eclass/mix.eclass +++ b/eclass/mix.eclass @@ -36,13 +36,13 @@ DEPEND="${RDEPEND}" # differences is present BDEPEND="!<${CATEGORY}/${P} !>${CATEGORY}/${PF}" -# @ECLASS-VARIABLE: HEX_OFFLINE +# @ECLASS_VARIABLE: HEX_OFFLINE HEX_OFFLINE=1 -# @ECLASS-VARIABLE: MIX_ENV +# @ECLASS_VARIABLE: MIX_ENV MIX_ENV="prod" -# @ECLASS-VARIABLE: MIX_NO_DEPS +# @ECLASS_VARIABLE: MIX_NO_DEPS MIX_NO_DEPS=1 # @FUNCTION: emix @@ -57,10 +57,10 @@ emix() { MIX_ENV="${MIX_ENV}" mix "$@" || die -n "mix $@ failed" } -# @ECLASS-VARIABLE: MIX_REWRITE +# @ECLASS_VARIABLE: MIX_REWRITE MIX_REWRITE="" -# @ECLASS-VARIABLE: MIX_BUILD_NAME +# @ECLASS_VARIABLE: MIX_BUILD_NAME MIX_BUILD_NAME="${MIX_ENV}" # @FUNCTION: mix_src_prepare diff --git a/eclass/octaveforge.eclass b/eclass/octaveforge.eclass index 0e2c166046..0528d2d907 100644 --- a/eclass/octaveforge.eclass +++ b/eclass/octaveforge.eclass @@ -19,24 +19,24 @@ esac EXPORT_FUNCTIONS src_unpack src_prepare src_compile src_install src_test pkg_postinst pkg_prerm pkg_postrm -# @ECLASS-VARIABLE: REPO_URI +# @ECLASS_VARIABLE: REPO_URI # @DESCRIPTION: # URI to the sourceforge octave-forge repository REPO_URI="http://svn.code.sf.net/p/octave/code/trunk/octave-forge" # defining some paths -# @ECLASS-VARIABLE: OCT_ROOT +# @ECLASS_VARIABLE: OCT_ROOT # @DESCRIPTION: # full path to octave share OCT_ROOT="/usr/share/octave" -# @ECLASS-VARIABLE: OCT_PKGDIR +# @ECLASS_VARIABLE: OCT_PKGDIR # @DESCRIPTION: # path to octave pkgdir OCT_PKGDIR="${OCT_ROOT}/packages" -# @ECLASS-VARIABLE: OCT_BIN +# @ECLASS_VARIABLE: OCT_BIN # @DESCRIPTION: # octave binary name OCT_BIN="octave"