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 F2F47158091 for ; Fri, 3 Jun 2022 10:44:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 18894E092F; Fri, 3 Jun 2022 10:44:42 +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 F0B25E092F for ; Fri, 3 Jun 2022 10:44:41 +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 0519934252A for ; Fri, 3 Jun 2022 10:44:41 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 115654F8 for ; Fri, 3 Jun 2022 10:44:38 +0000 (UTC) From: "Florian Schmaus" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Florian Schmaus" Message-ID: <1654215829.14bd4d98f6f03c8eeb408425b3218588be1e4c85.flow@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: app-editors/neovim-qt/ X-VCS-Repository: repo/proj/guru X-VCS-Files: app-editors/neovim-qt/Manifest app-editors/neovim-qt/neovim-qt-0.2.16.1.ebuild X-VCS-Directories: app-editors/neovim-qt/ X-VCS-Committer: flow X-VCS-Committer-Name: Florian Schmaus X-VCS-Revision: 14bd4d98f6f03c8eeb408425b3218588be1e4c85 X-VCS-Branch: master Date: Fri, 3 Jun 2022 10:44:38 +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: b1adc8fd-8339-4b80-bd6a-c7b8228134f2 X-Archives-Hash: 7e47883dc6b051900402d50b9b11bea4 commit: 14bd4d98f6f03c8eeb408425b3218588be1e4c85 Author: Tony Olagbaiye fron io> AuthorDate: Fri Jun 3 00:23:49 2022 +0000 Commit: Florian Schmaus gentoo org> CommitDate: Fri Jun 3 00:23:49 2022 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=14bd4d98 app-editors/neovim-qt: new package, add 0.2.16.1 Signed-off-by: Tony Olagbaiye fron.io> app-editors/neovim-qt/Manifest | 1 + app-editors/neovim-qt/neovim-qt-0.2.16.1.ebuild | 34 +++++++++++++++++++++++++ 2 files changed, 35 insertions(+) diff --git a/app-editors/neovim-qt/Manifest b/app-editors/neovim-qt/Manifest new file mode 100644 index 000000000..653ba816d --- /dev/null +++ b/app-editors/neovim-qt/Manifest @@ -0,0 +1 @@ +DIST neovim-qt-0.2.16.1.tar.gz 1069176 BLAKE2B ccb9d7275735969dc0576b498e017068da63e14ba82e3160621822d83c3902e35064be393dda57f8e70d83bcbb22e8e663f2ec996ffb48ff0140099ae0793a88 SHA512 63910b0416103f8c4f2450a07d4790c2b7fd26e2ba324445a20700a12d1dc3cb6fb06c674f3a1173348dad5c2256e8018167765306ca33ad94bc176bf5e4e45c diff --git a/app-editors/neovim-qt/neovim-qt-0.2.16.1.ebuild b/app-editors/neovim-qt/neovim-qt-0.2.16.1.ebuild new file mode 100644 index 000000000..23a279ca4 --- /dev/null +++ b/app-editors/neovim-qt/neovim-qt-0.2.16.1.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2022 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit vcs-snapshot cmake-utils + +DESCRIPTION="Neovim client library and GUI, in Qt5" +HOMEPAGE="https://github.com/equalsraf/neovim-qt" +SRC_URI="https://github.com/equalsraf/neovim-qt/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="ISC" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="gcov +msgpack" + +DEPEND=" + msgpack? ( dev-libs/msgpack ) + dev-qt/qtcore:5 + dev-qt/qtgui:5 + dev-qt/qtnetwork:5 + dev-qt/qttest:5 + dev-qt/qtwidgets:5" +RDEPEND="${DEPEND} + app-editors/neovim" + +src_configure() { + local mycmakeargs=( + -DUSE_GCOV=$(usex gcov ON OFF) + -DUSE_SYSTEM_MSGPACK=$(usex msgpack ON OFF) + ) + + cmake-utils_src_configure +}