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 81DC2158013 for ; Wed, 6 Dec 2023 14:20:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B4AFF2BC01E; Wed, 6 Dec 2023 14:20:37 +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 9A5B22BC01E for ; Wed, 6 Dec 2023 14:20:37 +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 30DA933FE7D for ; Wed, 6 Dec 2023 14:20:36 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5E71EAC2 for ; Wed, 6 Dec 2023 14:20:34 +0000 (UTC) From: "Pascal Jäger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Pascal Jäger" Message-ID: <1701872348.d15dfac1f2ae487fe244fac6fe99b72de93bb091.pascal.jaeger@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: app-editors/lapce/ X-VCS-Repository: repo/proj/guru X-VCS-Files: app-editors/lapce/lapce-0.3.1.ebuild X-VCS-Directories: app-editors/lapce/ X-VCS-Committer: pascal.jaeger X-VCS-Committer-Name: Pascal Jäger X-VCS-Revision: d15dfac1f2ae487fe244fac6fe99b72de93bb091 X-VCS-Branch: dev Date: Wed, 6 Dec 2023 14:20:34 +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: 785cd931-0b2d-400e-805d-3b6164337fb6 X-Archives-Hash: b59edfe29469670828fd00b6b84a5d5f commit: d15dfac1f2ae487fe244fac6fe99b72de93bb091 Author: Pascal Jäger leimstift de> AuthorDate: Wed Dec 6 14:19:08 2023 +0000 Commit: Pascal Jäger leimstift de> CommitDate: Wed Dec 6 14:19:08 2023 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=d15dfac1 app-editors/lapce: fix 916985 Closes: https://bugs.gentoo.org/916985 Signed-off-by: Pascal Jäger leimstift.de> app-editors/lapce/lapce-0.3.1.ebuild | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/app-editors/lapce/lapce-0.3.1.ebuild b/app-editors/lapce/lapce-0.3.1.ebuild index 73814c739f..42e3dc71b9 100644 --- a/app-editors/lapce/lapce-0.3.1.ebuild +++ b/app-editors/lapce/lapce-0.3.1.ebuild @@ -51,8 +51,12 @@ src_compile() { } src_install() { - dobin target/release/lapce - dobin target/release/lapce-proxy + local btype=release + if use debug; then + btype=debug + fi + dobin target/"${btype}"/lapce + dobin target/"${btype}"/lapce-proxy domenu extra/linux/dev.lapce.lapce.desktop newicon extra/images/logo.png dev.lapce.lapce.png }