diff options
| author | Andreas Sturmlechner <asturm@gentoo.org> | 2025-08-07 20:28:04 +0200 |
|---|---|---|
| committer | Andreas Sturmlechner <asturm@gentoo.org> | 2025-08-07 20:28:04 +0200 |
| commit | f461795cdfd57c9afa4a1795b1cf5d1cdad69454 (patch) | |
| tree | 5219f8e4d1da8c39a35fc8d1732340d8aa229fba | |
| parent | cdcf4563f6cb0e4c0b0c8ad27a37e1dd0ca5e890 (diff) | |
| download | kde-f461795cdfd57c9afa4a1795b1cf5d1cdad69454.tar.gz kde-f461795cdfd57c9afa4a1795b1cf5d1cdad69454.tar.bz2 kde-f461795cdfd57c9afa4a1795b1cf5d1cdad69454.zip | |
kde-apps/kig: drop 25.07.90
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
| -rw-r--r-- | kde-apps/kig/files/kig-25.07.80-cmake-boostpython.patch | 79 | ||||
| -rw-r--r-- | kde-apps/kig/kig-25.07.90.ebuild | 62 |
2 files changed, 0 insertions, 141 deletions
diff --git a/kde-apps/kig/files/kig-25.07.80-cmake-boostpython.patch b/kde-apps/kig/files/kig-25.07.80-cmake-boostpython.patch deleted file mode 100644 index 87e017d0e5b..00000000000 --- a/kde-apps/kig/files/kig-25.07.80-cmake-boostpython.patch +++ /dev/null @@ -1,79 +0,0 @@ -From c656b9ce0d8727302fea126d2ad70c36ce99f9e8 Mon Sep 17 00:00:00 2001 -From: Andreas Sturmlechner <asturm@gentoo.org> -Date: Mon, 13 Jul 2020 00:41:25 +0200 -Subject: [PATCH] Use CMake's own FindBoost module to detect Boost Python - -Introduces BOOSTPYTHON_VERSION_MAJOR_MINOR for packaging. - -Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org> ---- - CMakeLists.txt | 20 +++++++++----------- - 1 file changed, 9 insertions(+), 11 deletions(-) - -diff --git a/CMakeLists.txt b/CMakeLists.txt -index d05dae46..1c792102 100644 ---- a/CMakeLists.txt -+++ b/CMakeLists.txt -@@ -55,7 +55,8 @@ endif() - - include(KigConfigureChecks.cmake) - --find_package(BoostPython) -+set(BOOSTPYTHON_VERSION_MAJOR_MINOR python37 CACHE STRING "Version of BoostPython to feed CMake's FindBoost") -+find_package(Boost 1.70 COMPONENTS ${BOOSTPYTHON_VERSION_MAJOR_MINOR}) - - if(KF6DocTools_FOUND) - add_subdirectory( doc ) -@@ -67,15 +68,15 @@ add_subdirectory( mimetypes ) - add_subdirectory( macros ) - add_subdirectory( pykig ) - --if(BoostPython_FOUND) -+if(Boost_FOUND) -+ find_package(PythonLibs 3 REQUIRED) -+ include_directories(${PYTHON_INCLUDE_DIRS}) - add_subdirectory( scripting ) - add_definitions(-DKIG_ENABLE_PYTHON_SCRIPTING) - endif() - - set_package_properties( -- BoostPython PROPERTIES -- DESCRIPTION "Python scripting support in Boost" -- URL "https://www.boost.org/" -+ Boost PROPERTIES - TYPE OPTIONAL - PURPOSE "Kig can optionally use Boost.Python for Python scripting" - ) -@@ -93,9 +94,6 @@ endif() - feature_summary(WHAT ALL FATAL_ON_MISSING_REQUIRED_PACKAGES) - - include_directories( ${CMAKE_SOURCE_DIR}/modes ) --if(BoostPython_FOUND) -- include_directories(${BoostPython_INCLUDE_DIRS}) --endif() - - # kigpart - -@@ -345,7 +343,7 @@ ki18n_wrap_ui(kigpart_PART_SRCS - misc/kigcoordinateprecisiondialog.ui - ) - --if(BoostPython_FOUND) -+if(Boost_FOUND) - set(kigpart_PART_SRCS ${kigpart_PART_SRCS} - modes/popup/scriptactionsprovider.cc - scripting/newscriptwizard.cc -@@ -376,8 +374,8 @@ target_link_libraries(kigpart - KF6::Archive - ) - --if(BoostPython_FOUND) -- target_link_libraries(kigpart ${BoostPython_LIBRARIES} KF6::TextEditor) -+if(Boost_FOUND) -+ target_link_libraries(kigpart Boost::${BOOSTPYTHON_VERSION_MAJOR_MINOR} ${PYTHON_LIBRARIES} KF6::TextEditor) - endif() - - if (Qt${QT_MAJOR_VERSION}XmlPatterns_FOUND) --- -2.50.1 - diff --git a/kde-apps/kig/kig-25.07.90.ebuild b/kde-apps/kig/kig-25.07.90.ebuild deleted file mode 100644 index e3455b2ec98..00000000000 --- a/kde-apps/kig/kig-25.07.90.ebuild +++ /dev/null @@ -1,62 +0,0 @@ -# Copyright 1999-2025 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -ECM_HANDBOOK="optional" -ECM_TEST="true" -PYTHON_COMPAT=( python3_{11..13} ) -KFMIN=6.16.0 -QTMIN=6.9.1 -inherit python-single-r1 ecm gear.kde.org xdg - -DESCRIPTION="KDE Interactive Geometry tool" -HOMEPAGE="https://apps.kde.org/kig/" - -LICENSE="GPL-2" # TODO: CHECK -SLOT="0" -KEYWORDS="~amd64 ~arm64 ~riscv ~x86" -IUSE="scripting" - -REQUIRED_USE="${PYTHON_REQUIRED_USE}" - -RDEPEND="${PYTHON_DEPS} - >=dev-qt/qtbase-${QTMIN}:6[gui,widgets,xml] - >=dev-qt/qtsvg-${QTMIN}:6 - >=kde-frameworks/karchive-${KFMIN}:6 - >=kde-frameworks/kcompletion-${KFMIN}:6 - >=kde-frameworks/kconfig-${KFMIN}:6 - >=kde-frameworks/kconfigwidgets-${KFMIN}:6 - >=kde-frameworks/kcoreaddons-${KFMIN}:6 - >=kde-frameworks/kcrash-${KFMIN}:6 - >=kde-frameworks/ki18n-${KFMIN}:6 - >=kde-frameworks/kiconthemes-${KFMIN}:6 - >=kde-frameworks/kparts-${KFMIN}:6 - >=kde-frameworks/kservice-${KFMIN}:6 - >=kde-frameworks/kwidgetsaddons-${KFMIN}:6 - >=kde-frameworks/kxmlgui-${KFMIN}:6 - scripting? ( - $(python_gen_cond_dep ' - >=dev-libs/boost-1.70:=[python,${PYTHON_USEDEP}] - ') - ) -" -DEPEND="${RDEPEND} - >=kde-frameworks/ktexteditor-${KFMIN}:6 -" - -PATCHES=( "${FILESDIR}"/${PN}-25.07.80-cmake-boostpython.patch ) - -src_prepare() { - ecm_src_prepare - python_fix_shebang . -} - -src_configure() { - local mycmakeargs=( - -DBOOSTPYTHON_VERSION_MAJOR_MINOR=${EPYTHON} - $(cmake_use_find_package scripting Boost) - ) - - ecm_src_configure -} |
