summaryrefslogtreecommitdiff
path: root/dev-qt
diff options
context:
space:
mode:
authorJimi Huotari <chiitoo@gentoo.org>2023-06-07 17:32:27 +0300
committerJimi Huotari <chiitoo@gentoo.org>2023-06-10 16:33:02 +0300
commit2d133d15139c96d0dd946ca5dda56e33c180b28e (patch)
tree5c458d7eafec1c35dd0143844b2407eac2b36bb7 /dev-qt
parentdev-qt/qtpositioning: drop 6.5.0 (diff)
downloadgentoo-2d133d15139c96d0dd946ca5dda56e33c180b28e.tar.gz
gentoo-2d133d15139c96d0dd946ca5dda56e33c180b28e.tar.bz2
gentoo-2d133d15139c96d0dd946ca5dda56e33c180b28e.zip
dev-qt/qttools: drop 6.5.0
Signed-off-by: Jimi Huotari <chiitoo@gentoo.org>
Diffstat (limited to 'dev-qt')
-rw-r--r--dev-qt/qttools/Manifest1
-rw-r--r--dev-qt/qttools/qttools-6.5.0.ebuild66
2 files changed, 0 insertions, 67 deletions
diff --git a/dev-qt/qttools/Manifest b/dev-qt/qttools/Manifest
index eca401a10b3e..e0c3a2e31376 100644
--- a/dev-qt/qttools/Manifest
+++ b/dev-qt/qttools/Manifest
@@ -1,2 +1 @@
-DIST qttools-everywhere-src-6.5.0.tar.xz 8588520 BLAKE2B 5f0016c59d4281eaa03b605356c5c40ea4b0a72ed4a72c276c7b2d825a9cd5e364981d03ade406e353ff56094f7459b2a76829c320200b071c1ba29e67e796e7 SHA512 fea7a2d6e4b8fde8696122f212d9ba4bf8ae878e7392232a07aadc1f6e77667cabeb8c091f676f997b215f8870c9a4aeb72420dd95d09513222c49f7048af7dd
DIST qttools-everywhere-src-6.5.1.tar.xz 8592428 BLAKE2B 39a8eef639d4dea838b177285af175983e1e626cd82df8b2201b9380c4f62d5ec3560a7096b6f26a48886989be05bda453e487462d9e200577f15c9cb93eb26a SHA512 fa29a29bf9a723f88aaa5654e333daee90d8dc2f5c88653018a5e754c8115eec3c55940897817e0321dd4c9470d6d008e921ab7e20a714028fa38d04753bfb20
diff --git a/dev-qt/qttools/qttools-6.5.0.ebuild b/dev-qt/qttools/qttools-6.5.0.ebuild
deleted file mode 100644
index 197390961888..000000000000
--- a/dev-qt/qttools/qttools-6.5.0.ebuild
+++ /dev/null
@@ -1,66 +0,0 @@
-# Copyright 2021-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit qt6-build
-
-DESCRIPTION="Qt Tools Collection"
-
-if [[ ${QT6_BUILD_TYPE} == release ]]; then
- KEYWORDS="~amd64"
-fi
-
-IUSE="
- assistant designer distancefieldgenerator +linguist pixeltool
- qdbus qdoc qtattributionsscanner qtdiag qtplugininfo
-"
-
-DEPEND="
- =dev-qt/qtbase-${PV}*[network]
- assistant? ( =dev-qt/qtbase-${PV}*[sql,widgets] )
- designer? ( =dev-qt/qtbase-${PV}*[widgets] )
- distancefieldgenerator? (
- =dev-qt/qtbase-${PV}*[widgets]
- =dev-qt/qtdeclarative-${PV}*
- )
- pixeltool? ( =dev-qt/qtbase-${PV}*[widgets] )
- qdbus? ( =dev-qt/qtbase-${PV}*[widgets] )
- qdoc? ( sys-devel/clang:= )
- qtdiag? ( =dev-qt/qtbase-${PV}*[opengl,widgets] )
-"
-RDEPEND="${DEPEND}"
-
-src_configure() {
- local mycmakeargs=(
- $(qt_feature assistant)
- -DQT_FEATURE_commandlineparser=ON
- $(qt_feature designer)
- $(qt_feature distancefieldgenerator)
- $(qt_feature linguist)
- $(qt_feature pixeltool)
- $(qt_feature qdbus)
- $(qt_feature qdoc clang)
- $(qt_feature qtattributionsscanner)
- $(qt_feature qtdiag)
- $(qt_feature qtplugininfo)
- -DQT_FEATURE_thread=ON
- )
-
- qt6-build_src_configure
-}
-
-src_install() {
- qt6-build_src_install
-
- use assistant && qt6_symlink_binary_to_path assistant 6
- use designer && qt6_symlink_binary_to_path designer 6
- use distancefieldgenerator && qt6_symlink_binary_to_path qdistancefieldgenerator 6
- use linguist && qt6_symlink_binary_to_path linguist 6
- use pixeltool && qt6_symlink_binary_to_path pixeltool 6
- use qdbus && qt6_symlink_binary_to_path qdbus 6
- use qdbus && qt6_symlink_binary_to_path qdbusviewer 6
- use qdoc && qt6_symlink_binary_to_path qdoc 6
- use qtdiag && qt6_symlink_binary_to_path qtdiag 6
- use qtplugininfo && qt6_symlink_binary_to_path qtplugininfo 6
-}