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