Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/qt:master commit in: dev-qt/qttools/
Date: Sat, 24 Sep 2022 21:24:39
Message-Id: 1664051136.31c20d5dbbecd6055798d9c5695d37d362f681ef.asturm@gentoo
1 commit: 31c20d5dbbecd6055798d9c5695d37d362f681ef
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Sat Sep 24 20:25:36 2022 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Sat Sep 24 20:25:36 2022 +0000
6 URL: https://gitweb.gentoo.org/proj/qt.git/commit/?id=31c20d5d
7
8 dev-qt/qttools: drop 6.3.9999
9
10 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
11
12 dev-qt/qttools/qttools-6.3.9999.ebuild | 52 ----------------------------------
13 1 file changed, 52 deletions(-)
14
15 diff --git a/dev-qt/qttools/qttools-6.3.9999.ebuild b/dev-qt/qttools/qttools-6.3.9999.ebuild
16 deleted file mode 100644
17 index 23e1c087..00000000
18 --- a/dev-qt/qttools/qttools-6.3.9999.ebuild
19 +++ /dev/null
20 @@ -1,52 +0,0 @@
21 -# Copyright 2021-2022 Gentoo Authors
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=8
25 -
26 -inherit qt6-build
27 -
28 -DESCRIPTION="Qt Tools Collection"
29 -
30 -if [[ ${QT6_BUILD_TYPE} == release ]]; then
31 - KEYWORDS="~amd64"
32 -fi
33 -
34 -IUSE="
35 - assistant designer distancefieldgenerator linguist pixeltool
36 - qdbus qdoc qtattributionsscanner qtdiag qtplugininfo
37 -"
38 -REQUIRED_USE="linguist? ( designer )"
39 -
40 -DEPEND="
41 - =dev-qt/qtbase-${PV}*[network]
42 - assistant? ( =dev-qt/qtbase-${PV}*[sql,widgets] )
43 - designer? ( =dev-qt/qtbase-${PV}*[widgets] )
44 - distancefieldgenerator? (
45 - =dev-qt/qtbase-${PV}*[widgets]
46 - =dev-qt/qtdeclarative-${PV}*
47 - )
48 - pixeltool? ( =dev-qt/qtbase-${PV}*[widgets] )
49 - qdbus? ( =dev-qt/qtbase-${PV}*[widgets] )
50 - qdoc? ( sys-devel/clang:= )
51 - qtdiag? ( =dev-qt/qtbase-${PV}*[opengl,widgets] )
52 -"
53 -RDEPEND="${DEPEND}"
54 -
55 -src_configure() {
56 - local mycmakeargs=(
57 - $(qt_feature assistant)
58 - -DQT_FEATURE_commandlineparser=ON
59 - $(qt_feature designer)
60 - $(qt_feature distancefieldgenerator)
61 - $(qt_feature linguist)
62 - $(qt_feature pixeltool)
63 - $(qt_feature qdbus)
64 - $(qt_feature qdoc clang)
65 - $(qt_feature qtattributionsscanner)
66 - $(qt_feature qtdiag)
67 - $(qt_feature qtplugininfo)
68 - -DQT_FEATURE_thread=ON
69 - )
70 -
71 - qt6-build_src_configure
72 -}