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 703C5158091 for ; Sat, 4 Jun 2022 01:02:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2951FE09C9; Sat, 4 Jun 2022 01:02:54 +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 03EB7E09C9 for ; Sat, 4 Jun 2022 01:02:53 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 653D73425C8 for ; Sat, 4 Jun 2022 01:02:52 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B3B0447E for ; Sat, 4 Jun 2022 01:02:49 +0000 (UTC) From: "Tony Olagbaiye" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Tony Olagbaiye" Message-ID: <1654304561.c7c88e5dedc5b888c5cae958b8da71ff7365b993.gentoo@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: app-editors/neovim-qt/ X-VCS-Repository: repo/proj/guru X-VCS-Files: app-editors/neovim-qt/neovim-qt-0.2.16.1.ebuild X-VCS-Directories: app-editors/neovim-qt/ X-VCS-Committer: gentoo X-VCS-Committer-Name: Tony Olagbaiye X-VCS-Revision: c7c88e5dedc5b888c5cae958b8da71ff7365b993 X-VCS-Branch: dev Date: Sat, 4 Jun 2022 01:02:49 +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: 7ddf4346-c4a9-4c11-ae62-60391902ce25 X-Archives-Hash: 205e41d7b36d5793bfabbb26d7374703 commit: c7c88e5dedc5b888c5cae958b8da71ff7365b993 Author: Tony Olagbaiye fron io> AuthorDate: Sat Jun 4 01:02:41 2022 +0000 Commit: Tony Olagbaiye fron io> CommitDate: Sat Jun 4 01:02:41 2022 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=c7c88e5d app-editors/neovim-qt: update EAPI 6 -> 8 Signed-off-by: Tony Olagbaiye fron.io> app-editors/neovim-qt/neovim-qt-0.2.16.1.ebuild | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) 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 index 23a279ca4..5dfcfa586 100644 --- a/app-editors/neovim-qt/neovim-qt-0.2.16.1.ebuild +++ b/app-editors/neovim-qt/neovim-qt-0.2.16.1.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2022 Gentoo Foundation +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=8 -inherit vcs-snapshot cmake-utils +inherit cmake DESCRIPTION="Neovim client library and GUI, in Qt5" HOMEPAGE="https://github.com/equalsraf/neovim-qt" @@ -12,10 +12,10 @@ SRC_URI="https://github.com/equalsraf/neovim-qt/archive/v${PV}.tar.gz -> ${P}.ta LICENSE="ISC" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="gcov +msgpack" +IUSE="gcov" DEPEND=" - msgpack? ( dev-libs/msgpack ) + dev-libs/msgpack dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 @@ -27,8 +27,8 @@ RDEPEND="${DEPEND} src_configure() { local mycmakeargs=( -DUSE_GCOV=$(usex gcov ON OFF) - -DUSE_SYSTEM_MSGPACK=$(usex msgpack ON OFF) + -DUSE_SYSTEM_MSGPACK=ON ) - cmake-utils_src_configure + cmake_src_configure }