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 33DE215800F for ; Sun, 5 Feb 2023 11:56:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6A206E07C7; Sun, 5 Feb 2023 11:56: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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 369AEE07C7 for ; Sun, 5 Feb 2023 11:56:36 +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 AACC2335CF7 for ; Sun, 5 Feb 2023 11:56:35 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E3A5483C for ; Sun, 5 Feb 2023 11:56:33 +0000 (UTC) From: "Eric Joldasov" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Eric Joldasov" Message-ID: <1675598170.33eb55c86bb93bebc9bec123f3e47671142033cf.bratishkaerik@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-zig/zls/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-zig/zls/zls-9999.ebuild X-VCS-Directories: dev-zig/zls/ X-VCS-Committer: bratishkaerik X-VCS-Committer-Name: Eric Joldasov X-VCS-Revision: 33eb55c86bb93bebc9bec123f3e47671142033cf X-VCS-Branch: dev Date: Sun, 5 Feb 2023 11:56:33 +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: 942df622-88e5-4b18-abba-c48c95e5f6c5 X-Archives-Hash: fdc19dc17b4795edcf01a46191801e23 commit: 33eb55c86bb93bebc9bec123f3e47671142033cf Author: Eric Joldasov getgoogleoff me> AuthorDate: Sun Feb 5 11:56:01 2023 +0000 Commit: Eric Joldasov getgoogleoff me> CommitDate: Sun Feb 5 11:56:10 2023 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=33eb55c8 dev-zig/zls: update to latest master Zig Signed-off-by: Eric Joldasov getgoogleoff.me> dev-zig/zls/zls-9999.ebuild | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/dev-zig/zls/zls-9999.ebuild b/dev-zig/zls/zls-9999.ebuild index bbb09a80b..b61f8139d 100644 --- a/dev-zig/zls/zls-9999.ebuild +++ b/dev-zig/zls/zls-9999.ebuild @@ -8,7 +8,7 @@ inherit git-r3 EGIT_REPO_URI="https://github.com/zigtools/zls" HOMEPAGE="https://github.com/zigtools/zls" -DESCRIPTION="Zig LSP implementation + Zig Language Server" +DESCRIPTION="The officially unofficial Ziglang language server" LICENSE="MIT" SLOT="0" @@ -17,23 +17,22 @@ DEPEND="~dev-lang/zig-9999" RDEPEND="${DEPEND}" # see https://github.com/ziglang/zig/issues/3382 -# For now, Zig doesn't support CFLAGS/LDFLAGS/etc. +# For now, Zig Build System doesn't support CFLAGS/LDFLAGS/etc. QA_FLAGS_IGNORED="usr/bin/zls" src_compile() { - zig build -Drelease-safe -Ddata_version=master --verbose || die + zig build -Doptimize=ReleaseSafe -Ddata_version=master --verbose || die } src_test() { - zig build test -Drelease-safe -Ddata_version=master --verbose || die + zig build test -Doptimize=ReleaseSafe -Ddata_version=master --verbose || die } src_install() { - DESTDIR="${ED}" zig build install --prefix /usr -Drelease-safe -Ddata_version=master --verbose || die + DESTDIR="${ED}" zig build install --prefix /usr -Doptimize=ReleaseSafe -Ddata_version=master --verbose || die dodoc README.md } pkg_postinst() { - elog "For creating or updating config run this command: zls --config" elog "You can find more information about options here https://github.com/zigtools/zls#configuration-options" }