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 895DD158094 for ; Thu, 8 Sep 2022 10:06:26 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E05D0E099F; Thu, 8 Sep 2022 10:06:23 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id EFA54E0995 for ; Thu, 8 Sep 2022 10:06:22 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 037AE33BF41 for ; Thu, 8 Sep 2022 10:06:22 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0F6D55D5 for ; Thu, 8 Sep 2022 10:06:19 +0000 (UTC) From: "Andrew Ammerlaan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andrew Ammerlaan" Message-ID: <1662631283.bf6065dab1bc03d2c840b7ae77216eb31b86aa29.andrewammerlaan@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: app-text/klogg/ X-VCS-Repository: repo/proj/guru X-VCS-Files: app-text/klogg/klogg-22.06.0.1289.ebuild X-VCS-Directories: app-text/klogg/ X-VCS-Committer: andrewammerlaan X-VCS-Committer-Name: Andrew Ammerlaan X-VCS-Revision: bf6065dab1bc03d2c840b7ae77216eb31b86aa29 X-VCS-Branch: dev Date: Thu, 8 Sep 2022 10:06:19 +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: a379b9b6-e1e0-4d7f-9216-1a5b63e9f330 X-Archives-Hash: 80ef7454593182dc383b9420e5967f5b Message-ID: <20220908100619.UAdRHSUFPMs2D-7ArFymdSA_bWfyl-u08oBsvsWg9tM@z> commit: bf6065dab1bc03d2c840b7ae77216eb31b86aa29 Author: Andrew Ammerlaan gentoo org> AuthorDate: Thu Sep 8 10:01:23 2022 +0000 Commit: Andrew Ammerlaan gentoo org> CommitDate: Thu Sep 8 10:01:23 2022 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=bf6065da app-text/klogg: quote WORKDIR variables Signed-off-by: Andrew Ammerlaan gentoo.org> app-text/klogg/klogg-22.06.0.1289.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app-text/klogg/klogg-22.06.0.1289.ebuild b/app-text/klogg/klogg-22.06.0.1289.ebuild index 75401e6df..7f2ec907e 100644 --- a/app-text/klogg/klogg-22.06.0.1289.ebuild +++ b/app-text/klogg/klogg-22.06.0.1289.ebuild @@ -44,7 +44,7 @@ BDEPEND=" src_unpack() { unpack ${P}.tar.gz - mv ${WORKDIR}/${PN}-${MAJOR_VERSION} ${WORKDIR}/${P} + mv "${WORKDIR}/${PN}-${MAJOR_VERSION}" "${WORKDIR}/${P}" unpack ${P}.deps.tar.gz } @@ -56,7 +56,7 @@ src_prepare() { src_configure() { export KLOGG_VERSION=${PV} local mycmakeargs=( - -DCPM_SOURCE_CACHE=${WORKDIR}/cpm_cache + -DCPM_SOURCE_CACHE="${WORKDIR}/cpm_cache" -DCPM_USE_LOCAL_PACKAGES=ON -DWARNINGS_AS_ERRORS=OFF -DKLOGG_USE_LTO=$(usex lto)