summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2025-04-12 19:02:07 +0200
committerAndreas Sturmlechner <asturm@gentoo.org>2025-04-12 19:02:07 +0200
commit8f0953157754d096540509f3b85d7b0c2369ae89 (patch)
tree52f1cf37b0530119cd200868494a2724119a950b
parentb2e7b5a22cb1eb1240cfde50ffe09be24a92c041 (diff)
downloadkde-8f0953157754d096540509f3b85d7b0c2369ae89.tar.gz
kde-8f0953157754d096540509f3b85d7b0c2369ae89.tar.bz2
kde-8f0953157754d096540509f3b85d7b0c2369ae89.zip
kde-frameworks/extra-cmake-modules: drop 6.13.0
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
-rw-r--r--kde-frameworks/extra-cmake-modules/Manifest1
-rw-r--r--kde-frameworks/extra-cmake-modules/extra-cmake-modules-6.13.0.ebuild80
2 files changed, 0 insertions, 81 deletions
diff --git a/kde-frameworks/extra-cmake-modules/Manifest b/kde-frameworks/extra-cmake-modules/Manifest
deleted file mode 100644
index 2ebf25f5f08..00000000000
--- a/kde-frameworks/extra-cmake-modules/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST extra-cmake-modules-6.13.0.tar.xz 328572 BLAKE2B 2dd0b8890e2a6b7f5696409a0c886491b1b97910773011f7b4b885371eabaabb025b0e2ff85d1a3852b11a9ee782243c0899196fa46c9732105f44801901c090 SHA512 7e6c89e959d6ec5d69f5353a01e0971d94e7d5386c3724a8c3530d9bc7cb4d53d8f1d67bfc76e866af12f4260940d094439fc01a23a55ad0cc74661797345884
diff --git a/kde-frameworks/extra-cmake-modules/extra-cmake-modules-6.13.0.ebuild b/kde-frameworks/extra-cmake-modules/extra-cmake-modules-6.13.0.ebuild
deleted file mode 100644
index 01ca5c6b6d1..00000000000
--- a/kde-frameworks/extra-cmake-modules/extra-cmake-modules-6.13.0.ebuild
+++ /dev/null
@@ -1,80 +0,0 @@
-# Copyright 1999-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{10..13} )
-QTMIN=6.7.2
-inherit cmake frameworks.kde.org python-any-r1
-
-DESCRIPTION="Extra modules and scripts for CMake"
-HOMEPAGE="https://invent.kde.org/frameworks/extra-cmake-modules"
-
-LICENSE="BSD"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~loong ~ppc ~ppc64 ~riscv ~x86"
-IUSE="doc test"
-
-RESTRICT="!test? ( test )"
-
-RDEPEND="app-arch/libarchive[bzip2]"
-DEPEND="
- test? (
- >=dev-qt/qtbase-${QTMIN}:6[dbus,gui]
- >=dev-qt/qtdeclarative-${QTMIN}:6
- )
-"
-BDEPEND="
- doc? (
- ${PYTHON_DEPS}
- $(python_gen_any_dep 'dev-python/sphinx[${PYTHON_USEDEP}]')
- >=dev-qt/qttools-${QTMIN}:6[assistant]
- )
- test? (
- >=dev-qt/qtbase-${QTMIN}:6
- >=dev-qt/qttools-${QTMIN}:6[linguist]
- )
-"
-
-PATCHES=(
- "${FILESDIR}/${PN}-5.49.0-no-fatal-warnings.patch"
- "${FILESDIR}/${PN}-5.93.0-skip-ecm_add_test-early.patch"
- "${FILESDIR}/${PN}-5.245.0-disable-qmlplugindump.patch"
- "${FILESDIR}/${PN}-6.5.0-disable-appstreamtest.patch"
- "${FILESDIR}/${PN}-6.5.0-disable-git-commit-hooks.patch"
-)
-
-python_check_deps() {
- python_has_version "dev-python/sphinx[${PYTHON_USEDEP}]"
-}
-
-pkg_setup() {
- use doc && python-any-r1_pkg_setup
-}
-
-src_configure() {
- local mycmakeargs=(
- -DDOC_INSTALL_DIR=/usr/share/doc/"${PF}"
- -DBUILD_QTHELP_DOCS=$(usex doc)
- -DBUILD_HTML_DOCS=$(usex doc)
- -DBUILD_MAN_DOCS=$(usex doc)
- -DBUILD_TESTING=$(usex test)
- )
- if use test; then
- mycmakeargs+=( -DQT_MAJOR_VERSION=6 ) # bug 938316
- fi
-
- cmake_src_configure
-}
-
-src_test() {
- local CMAKE_SKIP_TESTS=(
- # passes, but then breaks src_install
- ECMToolchainAndroidTest
- # broken, bug #627806
- ECMPoQmToolsTest
- # can not possibly succeed in releases, bug #764953
- KDEFetchTranslations
- )
- # possible race condition with multiple jobs, bug #701854
- cmake_src_test -j1
-}