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/qttools/
Date: Thu, 01 Dec 2022 19:19:53
Message-Id: 1669922355.65ae2b9ae1e2b975bfc5d0c28cec9796b80714b6.asturm@gentoo
1 commit: 65ae2b9ae1e2b975bfc5d0c28cec9796b80714b6
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Thu Dec 1 18:45:19 2022 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Thu Dec 1 19:19:15 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=65ae2b9a
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 index 4c16602d8ca0..c155251c4005 100644
18 --- a/dev-qt/qttools/Manifest
19 +++ b/dev-qt/qttools/Manifest
20 @@ -1,2 +1 @@
21 -DIST qttools-everywhere-src-6.3.2.tar.xz 8629400 BLAKE2B 594f7f31e0f10006d1c58d26c5ae13b7f9c8b5770adaddee90a176676dff2029215501d01d599da0656876cd6f8b97275754a9b8c37735412154ca3f458656b3 SHA512 ca8b11dac82027979ff9b17b8beb50ea316cba6d8f422a291caa63a4f7c345942bf852733fd7243a27bcf46b1ca6a5af30e283377a8c6b73193004e3aa3837f1
22 DIST qttools-everywhere-src-6.4.0.tar.xz 8738432 BLAKE2B 0bd6c3e1e4badf16ec74209c1ddc45820bee9403753b6603000fcad8e82b5ee73b4df0f4d346de5c855e0b545e43c17b11ba5702e9caa5b8b2e6280d82a3fab5 SHA512 ff4ed95491d26227b3bfea665fe810572f537a295dda0cffa26b18525961026db0471e7ef04667e3e4b8ae6b92dbedccb0fa77d733274c34d489d448b961ab44
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 23e1c0874fce..000000000000
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 -}