diff options
Diffstat (limited to 'dev-util/kdevelop-python')
3 files changed, 75 insertions, 0 deletions
diff --git a/dev-util/kdevelop-python/Manifest b/dev-util/kdevelop-python/Manifest index 362ba1d2cdd7..c4c277ac0afb 100644 --- a/dev-util/kdevelop-python/Manifest +++ b/dev-util/kdevelop-python/Manifest @@ -1 +1,2 @@ DIST kdev-python-26.04.3.tar.xz 1139680 BLAKE2B bc2833f8af171720e4d00d2d4a29f64dcedec4b505e2073907515f89b875139572b42a14f729fa96fdaaecdd38cf9ba09dd65f14862daae09312fba0eca09000 SHA512 de9121ef720eb1e72c46a865c5281b6320ae66440db4bb3bfcb74ef409eaa8cf27962aa6dce6eebee7a82ad79fcc91e05ff6c49daab438f2685fec1fad549309 +DIST kdev-python-26.08.0.tar.xz 1141920 BLAKE2B f387cda42c1b3aeded703ce6b8bc1cbfab097addc9f51a88fcc80aaa3878c1d6edad07ceff5a9ae89e3a744b824e70d111d33ad8bf50a6cde264e770b0cd93fa SHA512 e494943629226051251a371bb32fe737af095dae4784dd82f71da0460696c1f65ff3513f1a0a26824b46ccf3c7b916701566c0df69d262015412114b0b3c6b36 diff --git a/dev-util/kdevelop-python/files/kdevelop-python-26.08.0-drop-python3-limit.patch b/dev-util/kdevelop-python/files/kdevelop-python-26.08.0-drop-python3-limit.patch new file mode 100644 index 000000000000..b77c2fd38e4c --- /dev/null +++ b/dev-util/kdevelop-python/files/kdevelop-python-26.08.0-drop-python3-limit.patch @@ -0,0 +1,26 @@ +From f33db0a63b961fd9be728409a0a977b46373b521 Mon Sep 17 00:00:00 2001 +From: Andreas Sturmlechner <asturm@gentoo.org> +Date: Sat, 9 May 2026 12:35:08 +0200 +Subject: [PATCH] Drop Python3 upper version limit + +Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org> +--- + CMakeLists.txt | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/CMakeLists.txt b/CMakeLists.txt +index 4a8ee6f2..e1ea85d7 100644 +--- a/CMakeLists.txt ++++ b/CMakeLists.txt +@@ -42,7 +42,7 @@ add_definitions( -DTRANSLATION_DOMAIN=\"kdevpython\" ) + + set(Python3_USE_STATIC_LIBS FALSE) + set(Python3_FIND_STRATEGY VERSION) +-find_package(Python3 3.4.3...<3.16 COMPONENTS Interpreter Development REQUIRED) ++find_package(Python3 3.4.3 COMPONENTS Interpreter Development REQUIRED) + + configure_file(kdevpythonversion.h.cmake "${CMAKE_CURRENT_BINARY_DIR}/kdevpythonversion.h" @ONLY) + +-- +2.54.0 + diff --git a/dev-util/kdevelop-python/kdevelop-python-26.08.0.ebuild b/dev-util/kdevelop-python/kdevelop-python-26.08.0.ebuild new file mode 100644 index 000000000000..e4037e60c3c5 --- /dev/null +++ b/dev-util/kdevelop-python/kdevelop-python-26.08.0.ebuild @@ -0,0 +1,48 @@ +# Copyright 1999-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +ECM_TEST="forceoptional" +KDE_ORG_CATEGORY="kdevelop" +KDE_ORG_NAME="kdev-python" +PYTHON_COMPAT=( python3_{13..14} ) +KFMIN=6.27.0 +QTMIN=6.11.2 +inherit ecm gear.kde.org python-single-r1 + +DESCRIPTION="Python plugin for KDevelop" +HOMEPAGE="https://kdevelop.org/" + +LICENSE="GPL-2" # TODO: CHECK +SLOT="6" +KEYWORDS="~amd64 ~arm64" +IUSE="" + +REQUIRED_USE="${PYTHON_REQUIRED_USE}" +RESTRICT="test" # bug 965829, multiple tests hang + +COMMON_DEPEND="${PYTHON_DEPS} + >=dev-qt/qt5compat-${QTMIN}:6 + >=dev-qt/qtbase-${QTMIN}:6[gui,widgets] + dev-util/kdevelop:6= + >=kde-frameworks/kconfig-${KFMIN}:6 + >=kde-frameworks/kcoreaddons-${KFMIN}:6 + >=kde-frameworks/ki18n-${KFMIN}:6 + >=kde-frameworks/kparts-${KFMIN}:6 + >=kde-frameworks/kservice-${KFMIN}:6 + >=kde-frameworks/ktexteditor-${KFMIN}:6 + >=kde-frameworks/kwidgetsaddons-${KFMIN}:6 + >=kde-frameworks/kxmlgui-${KFMIN}:6 + >=kde-frameworks/threadweaver-${KFMIN}:6 +" +DEPEND="${COMMON_DEPEND} + dev-util/kdevelop:6=[test?] +" +RDEPEND="${COMMON_DEPEND} + $(python_gen_cond_dep ' + dev-python/pycodestyle[${PYTHON_USEDEP}] + ') +" + +PATCHES=( "${FILESDIR}/${P}-drop-python3-limit.patch" ) # bug 974363 |
