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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 19872158094 for ; Tue, 28 Jun 2022 02:43:02 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2E0CBE088B; Tue, 28 Jun 2022 02:43:01 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 0E2DDE088B for ; Tue, 28 Jun 2022 02:43:00 +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 E27B7341598 for ; Tue, 28 Jun 2022 02:42:59 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 41E2A456 for ; Tue, 28 Jun 2022 02:42:58 +0000 (UTC) From: "Brian Gloyer" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Brian Gloyer" Message-ID: <1656384150.4749e1aea3b5c1f97e3e0920f32342b997b7fdde.brian.gloyer@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: brian.gloyer X-VCS-Committer-Name: Brian Gloyer X-VCS-Revision: 4749e1aea3b5c1f97e3e0920f32342b997b7fdde X-VCS-Branch: dev Date: Tue, 28 Jun 2022 02:42:58 +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: c0cad623-40fc-4aa2-a148-6330e40d0967 X-Archives-Hash: cb881d0dd9087e5b1e0249d485d3dfbd commit: 4749e1aea3b5c1f97e3e0920f32342b997b7fdde Author: brian gloyer gmail com> AuthorDate: Tue Jun 28 02:35:19 2022 +0000 Commit: Brian Gloyer gmail com> CommitDate: Tue Jun 28 02:42:30 2022 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=4749e1ae app-editors/neovim-qt: fix package Closes: https://bugs.gentoo.org/849620 Fixed runtime library problem. Signed-off-by: brian gloyer gmail.com> app-editors/neovim-qt/neovim-qt-0.2.16.1.ebuild | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 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 5dfcfa586..14609e016 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 @@ -3,7 +3,7 @@ EAPI=8 -inherit cmake +inherit cmake xdg-utils DESCRIPTION="Neovim client library and GUI, in Qt5" HOMEPAGE="https://github.com/equalsraf/neovim-qt" @@ -12,13 +12,14 @@ SRC_URI="https://github.com/equalsraf/neovim-qt/archive/v${PV}.tar.gz -> ${P}.ta LICENSE="ISC" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="gcov" +IUSE="" DEPEND=" dev-libs/msgpack dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 + dev-qt/qtsvg:5 dev-qt/qttest:5 dev-qt/qtwidgets:5" RDEPEND="${DEPEND} @@ -26,9 +27,19 @@ RDEPEND="${DEPEND} src_configure() { local mycmakeargs=( - -DUSE_GCOV=$(usex gcov ON OFF) -DUSE_SYSTEM_MSGPACK=ON + -DUSE_GCOV=OFF + -DENABLE_TESTS=OFF + -DBUILD_SHARED_LIBS=OFF # it links to static lib ) cmake_src_configure } + +pkg_postinst() { + xdg_desktop_database_update +} + +pkg_postrm() { + xdg_desktop_database_update +}