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 28862158083 for ; Wed, 18 Sep 2024 16:20:10 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6BDCFE299F; Wed, 18 Sep 2024 16:20:09 +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 52DF9E299F for ; Wed, 18 Sep 2024 16:20:09 +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 5E21A340CA7 for ; Wed, 18 Sep 2024 16:20:08 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BB1662145 for ; Wed, 18 Sep 2024 16:20:06 +0000 (UTC) From: "Andrey Grozin" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andrey Grozin" Message-ID: <1726676387.3f54768366733f56fa8fd78989e00d88f6554afd.grozin@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-geosciences/qmapshack/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-geosciences/qmapshack/qmapshack-1.17.1_p600-r1.ebuild X-VCS-Directories: sci-geosciences/qmapshack/ X-VCS-Committer: grozin X-VCS-Committer-Name: Andrey Grozin X-VCS-Revision: 3f54768366733f56fa8fd78989e00d88f6554afd X-VCS-Branch: master Date: Wed, 18 Sep 2024 16:20:06 +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: f67cbfb3-741e-4477-988a-fbd2be7bf417 X-Archives-Hash: c1ec52d317b39f5878e73688702ce708 commit: 3f54768366733f56fa8fd78989e00d88f6554afd Author: Andrey Grozin gentoo org> AuthorDate: Wed Sep 18 16:19:47 2024 +0000 Commit: Andrey Grozin gentoo org> CommitDate: Wed Sep 18 16:19:47 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3f547683 _p600: list of dependencies improved Bug: https://bugs.gentoo.org/926676 Signed-off-by: Andrey Grozin gentoo.org> .../qmapshack/qmapshack-1.17.1_p600-r1.ebuild | 39 ++++++++++++++++++++++ 1 file changed, 39 insertions(+) diff --git a/sci-geosciences/qmapshack/qmapshack-1.17.1_p600-r1.ebuild b/sci-geosciences/qmapshack/qmapshack-1.17.1_p600-r1.ebuild new file mode 100644 index 000000000000..c884821ce0d6 --- /dev/null +++ b/sci-geosciences/qmapshack/qmapshack-1.17.1_p600-r1.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit cmake xdg + +DESCRIPTION="GPS mapping utility" +HOMEPAGE="https://github.com/Maproom/qmapshack/wiki" +COMMIT="1f009ac0be1d1c2a4c31aa1283f4009e88685d34" +SRC_URI="https://github.com/kiozen/${PN}/archive/${COMMIT}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}"/${PN}-${COMMIT} + +LICENSE="GPL-3+" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND=" + dev-db/sqlite + >=dev-libs/quazip-1.3:0=[qt6] + dev-qt/qt5compat:6[icu,qml] + dev-qt/qtbase[dbus,gui,icu,network,opengl,sql,widgets,xml] + dev-qt/qttools:6[assistant,linguist,opengl,qdbus,qml,widgets,zstd] + dev-qt/qtwebengine:6[qml,widgets] + sci-geosciences/routino + sci-libs/alglib + sci-libs/gdal:= + sci-libs/proj:= +" +DEPEND="${RDEPEND}" + +src_install() { + docompress -x /usr/share/doc/${PF}/html + cmake_src_install + mv "${D}"/usr/share/doc/HTML "${D}"/usr/share/doc/${PF}/html || die "mv Qt help failed" + ewarn "An experimental Qt6 port" + ewarn "Translations and the help system are broken" + ewarn "Other bugs to https://github.com/Maproom/qmapshack/issues" +}