Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-qt/linguist-tools/
Date: Wed, 08 Sep 2021 16:55:54
Message-Id: 1631120077.1038fef86e5c98515edeca8e1fe67263186d7449.asturm@gentoo
1 commit: 1038fef86e5c98515edeca8e1fe67263186d7449
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Sun Sep 5 19:01:58 2021 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Wed Sep 8 16:54:37 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1038fef8
7
8 dev-qt/linguist-tools: 5.15.2-r10 version bump at KDE 33693a92
9
10 - EAPI-8 bump
11 - drop dev-qt/qtchooser
12 - switch from ~PV to =QT5_PV* version dependencies
13
14 Package-Manager: Portage-3.0.22, Repoman-3.0.3
15 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
16
17 dev-qt/linguist-tools/Manifest | 1 +
18 .../linguist-tools-5.15.2-r10.ebuild | 37 ++++++++++++++++++++++
19 2 files changed, 38 insertions(+)
20
21 diff --git a/dev-qt/linguist-tools/Manifest b/dev-qt/linguist-tools/Manifest
22 index c9faaf55f59..2ad3df5c2a7 100644
23 --- a/dev-qt/linguist-tools/Manifest
24 +++ b/dev-qt/linguist-tools/Manifest
25 @@ -1 +1,2 @@
26 +DIST qttools-5.15.2-33693a92.tar.gz 12266718 BLAKE2B c519abdcca9df3b191297b859b2dce417ee9a79f9e3bcb3f2aa0017266b8edc855645108f5f7e6853d28f4c7507c92646ce8130731a345c6ffdfcd37fb1f4789 SHA512 9a62f1849c8eb65384d19de61cb6a08d1f467877181fd752e58b2b4e7d566c5d868c7ebab2d01591c6f540c01c705b7f8e0fe76c26cb0ee78f590ddae57048d2
27 DIST qttools-everywhere-src-5.15.2.tar.xz 8894728 BLAKE2B bbc57c58a43f827cfa04031f12d46d4d660456e4a5feabe17fdbb42126da06ed7031807fe963883d452fd1916330e94fcc66b9e9bb69ee4455a38bf3cbd80f5a SHA512 3bd32a302af6e81cd5d4eb07d60c5ef233f1ca7af1aae180c933ac28fafffce28c6c868eb032108747937ea951d6d4f0df5516841bc65d22c529207147533a8b
28
29 diff --git a/dev-qt/linguist-tools/linguist-tools-5.15.2-r10.ebuild b/dev-qt/linguist-tools/linguist-tools-5.15.2-r10.ebuild
30 new file mode 100644
31 index 00000000000..d9508fdf3ba
32 --- /dev/null
33 +++ b/dev-qt/linguist-tools/linguist-tools-5.15.2-r10.ebuild
34 @@ -0,0 +1,37 @@
35 +# Copyright 1999-2021 Gentoo Authors
36 +# Distributed under the terms of the GNU General Public License v2
37 +
38 +EAPI=8
39 +
40 +KDE_ORG_COMMIT=33693a928986006d79c1ee743733cde5966ac402
41 +QT5_MODULE="qttools"
42 +inherit qt5-build
43 +
44 +DESCRIPTION="Tools for working with Qt translation data files"
45 +
46 +if [[ ${QT5_BUILD_TYPE} == release ]]; then
47 + KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc ~x86"
48 +fi
49 +
50 +IUSE="qml"
51 +
52 +DEPEND="
53 + =dev-qt/qtcore-${QT5_PV}*:5=
54 + =dev-qt/qtxml-${QT5_PV}*
55 + qml? ( =dev-qt/qtdeclarative-${QT5_PV}* )
56 +"
57 +RDEPEND="${DEPEND}"
58 +
59 +QT5_TARGET_SUBDIRS=(
60 + src/linguist
61 +)
62 +
63 +src_prepare() {
64 + sed -i -e '/SUBDIRS += linguist/d' \
65 + src/linguist/linguist.pro || die
66 +
67 + qt_use_disable_mod qml qmldevtools-private \
68 + src/linguist/lupdate/lupdate.pro
69 +
70 + qt5-build_src_prepare
71 +}