public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/proj/guru:master commit in: app-editors/neovim-qt/
@ 2022-06-03 10:44 Florian Schmaus
  0 siblings, 0 replies; 4+ messages in thread
From: Florian Schmaus @ 2022-06-03 10:44 UTC (permalink / raw
  To: gentoo-commits

commit:     14bd4d98f6f03c8eeb408425b3218588be1e4c85
Author:     Tony Olagbaiye <bqv <AT> fron <DOT> io>
AuthorDate: Fri Jun  3 00:23:49 2022 +0000
Commit:     Florian Schmaus <flow <AT> gentoo <DOT> 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 <bqv <AT> 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
+}


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [gentoo-commits] repo/proj/guru:master commit in: app-editors/neovim-qt/
@ 2022-08-11 13:45 Andrew Ammerlaan
  0 siblings, 0 replies; 4+ messages in thread
From: Andrew Ammerlaan @ 2022-08-11 13:45 UTC (permalink / raw
  To: gentoo-commits

commit:     0669a82f350289c841a71e78e623357153a9dd1f
Author:     Ronny (tastytea) Gutbrod <gentoo <AT> tastytea <DOT> de>
AuthorDate: Tue Aug  9 16:00:28 2022 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
CommitDate: Tue Aug  9 16:10:50 2022 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=0669a82f

app-editors/neovim-qt: fix test deps

test doesn't use bundled DeJaVu Mono

Upstream-Bug: https://github.com/equalsraf/neovim-qt/issues/1005
Signed-off-by: Ronny (tastytea) Gutbrod <gentoo <AT> tastytea.de>

 app-editors/neovim-qt/neovim-qt-0.2.17.ebuild | 12 +++++++++---
 1 file changed, 9 insertions(+), 3 deletions(-)

diff --git a/app-editors/neovim-qt/neovim-qt-0.2.17.ebuild b/app-editors/neovim-qt/neovim-qt-0.2.17.ebuild
index 204a6bb3c..238a8e04f 100644
--- a/app-editors/neovim-qt/neovim-qt-0.2.17.ebuild
+++ b/app-editors/neovim-qt/neovim-qt-0.2.17.ebuild
@@ -15,15 +15,21 @@ KEYWORDS="~amd64 ~x86"
 IUSE="test"
 
 COMMON_DEPEND="
-	dev-libs/msgpack
+	dev-libs/msgpack:=
 	dev-qt/qtcore:5
 	dev-qt/qtgui:5
 	dev-qt/qtnetwork:5
 	dev-qt/qtsvg:5
-	dev-qt/qtwidgets:5"
+	dev-qt/qtwidgets:5
+"
+# NOTE: remove dejavu once <https://github.com/equalsraf/neovim-qt/issues/1005>
+#       is resolved
 DEPEND="
 	${COMMON_DEPEND}
-	test? ( dev-qt/qttest:5 )
+	test? (
+		dev-qt/qttest:5
+		media-fonts/dejavu[X]
+	)
 "
 RDEPEND="
 	${COMMON_DEPEND}


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [gentoo-commits] repo/proj/guru:master commit in: app-editors/neovim-qt/
@ 2023-04-09 10:05 Viorel Munteanu
  0 siblings, 0 replies; 4+ messages in thread
From: Viorel Munteanu @ 2023-04-09 10:05 UTC (permalink / raw
  To: gentoo-commits

commit:     19beece5f1a4907ef00d74bc3b4aa7e756a145e0
Author:     tastytea <gentoo <AT> tastytea <DOT> de>
AuthorDate: Fri Apr  7 13:02:18 2023 +0000
Commit:     Viorel Munteanu <ceamac <AT> gentoo <DOT> org>
CommitDate: Fri Apr  7 13:02:18 2023 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=19beece5

app-editors/neovim-qt: add myself as maintainer

Signed-off-by: tastytea <gentoo <AT> tastytea.de>

 app-editors/neovim-qt/metadata.xml | 11 +++++++++++
 1 file changed, 11 insertions(+)

diff --git a/app-editors/neovim-qt/metadata.xml b/app-editors/neovim-qt/metadata.xml
new file mode 100644
index 000000000..ac346cefe
--- /dev/null
+++ b/app-editors/neovim-qt/metadata.xml
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<maintainer type="person">
+		<email>gentoo@tastytea.de</email>
+		<name>tastytea</name>
+	</maintainer>
+	<upstream>
+		<remote-id type="github">equalsraf/neovim-qt</remote-id>
+	</upstream>
+</pkgmetadata>


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [gentoo-commits] repo/proj/guru:master commit in: app-editors/neovim-qt/
@ 2024-01-25 10:49 David Roman
  0 siblings, 0 replies; 4+ messages in thread
From: David Roman @ 2024-01-25 10:49 UTC (permalink / raw
  To: gentoo-commits

commit:     c4984dd33a179170cc67ec765960abe235e5f6c0
Author:     tastytea <gentoo <AT> tastytea <DOT> de>
AuthorDate: Wed Jan 24 17:24:21 2024 +0000
Commit:     David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Wed Jan 24 17:24:21 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=c4984dd3

app-editors/neovim-qt: add 0.2.18

Signed-off-by: tastytea <gentoo <AT> tastytea.de>

 app-editors/neovim-qt/Manifest                |  1 +
 app-editors/neovim-qt/neovim-qt-0.2.18.ebuild | 60 +++++++++++++++++++++++++++
 2 files changed, 61 insertions(+)

diff --git a/app-editors/neovim-qt/Manifest b/app-editors/neovim-qt/Manifest
index c244b301c7..2faaf5717e 100644
--- a/app-editors/neovim-qt/Manifest
+++ b/app-editors/neovim-qt/Manifest
@@ -1 +1,2 @@
 DIST neovim-qt-0.2.17.tar.gz 1076230 BLAKE2B ab322d7f03bca40b4b3ee6e89a20dc04ec06d9ba3f49c0e658586f55e5219d13770078ed956a889dbe100836cb83cbc1829a39d60e9164e3bcb43ba085a72412 SHA512 ff290c6797c51ac23acd87ecd4c8d034321c4994c76b60f5d15626aa31db377090359d4bc681c6a9d0462ff5847269c35b95561ccd156600cf3f09f28ad4b8b2
+DIST neovim-qt-0.2.18.tar.gz 1078273 BLAKE2B 9ab288f7035e563022bfc22f04c45e02fe08bc5f705d95e862ea2cc71dc51d985c110fa104e512805418e79914461aa7098757a7024a9ddbae75b36c58dc94bc SHA512 39125492442793936f3a345a611df9613b08bf31caf39e6710ca25a38e2bbb1f11b7307d8f51985c6cb80ba752acffec09fffba1a81141edf18f557db1d994f6

diff --git a/app-editors/neovim-qt/neovim-qt-0.2.18.ebuild b/app-editors/neovim-qt/neovim-qt-0.2.18.ebuild
new file mode 100644
index 0000000000..1d896fd1ad
--- /dev/null
+++ b/app-editors/neovim-qt/neovim-qt-0.2.18.ebuild
@@ -0,0 +1,60 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake virtualx xdg
+
+DESCRIPTION="Neovim client library and GUI, in Qt"
+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="qt5 qt6 test"
+REQUIRED_USE="|| ( qt5 qt6 )"
+
+COMMON_DEPEND="
+	qt5? (
+		dev-libs/msgpack:=
+		dev-qt/qtcore:5
+		dev-qt/qtgui:5
+		dev-qt/qtnetwork:5
+		dev-qt/qtsvg:5
+		dev-qt/qtwidgets:5
+	)
+	qt6? (
+		dev-qt/qtbase:6[gui,network,widgets]
+		dev-qt/qtsvg:5
+	)
+"
+# NOTE: see <https://github.com/equalsraf/neovim-qt/issues/1005> for dejavu dep
+DEPEND="
+	${COMMON_DEPEND}
+	test? (
+		qt5? ( dev-qt/qttest:5 )
+		media-fonts/dejavu[X]
+	)
+"
+RDEPEND="
+	${COMMON_DEPEND}
+	app-editors/neovim"
+
+RESTRICT="!test? ( test )"
+
+src_configure() {
+	local mycmakeargs=(
+		-DUSE_SYSTEM_MSGPACK=ON
+		-DUSE_GCOV=OFF
+		-DENABLE_TESTS=$(usex test)
+		-DBUILD_SHARED_LIBS=OFF # upstream explicitly builds static lib
+		-DQT_VERSION_MAJOR=$(usex qt5 5 6)
+	)
+
+	cmake_src_configure
+}
+
+src_test() {
+	virtx cmake_src_test
+}


^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2024-01-25 10:49 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-08-11 13:45 [gentoo-commits] repo/proj/guru:master commit in: app-editors/neovim-qt/ Andrew Ammerlaan
  -- strict thread matches above, loose matches on Subject: below --
2024-01-25 10:49 David Roman
2023-04-09 10:05 Viorel Munteanu
2022-06-03 10:44 Florian Schmaus

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox