summaryrefslogtreecommitdiff
path: root/kde-apps/kig
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-06-04 16:24:49 -0500
committerroot <root@alpha.trunkmasters.com>2026-06-04 16:24:49 -0500
commita3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7 (patch)
tree0c52bbae1c242fbc296bd650fcd1167685f81492 /kde-apps/kig
parentbfd9c39e4712ebdb442d4ca0673061faed1e70e1 (diff)
downloadbaldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.gz
baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.xz
baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.zip
Adding metadata
Diffstat (limited to 'kde-apps/kig')
-rw-r--r--kde-apps/kig/Manifest2
-rw-r--r--kde-apps/kig/files/kig-25.08.0-cmake-boostpython.patch75
-rw-r--r--kde-apps/kig/kig-25.12.3.ebuild62
-rw-r--r--kde-apps/kig/kig-26.04.1.ebuild62
-rw-r--r--kde-apps/kig/metadata.xml16
5 files changed, 0 insertions, 217 deletions
diff --git a/kde-apps/kig/Manifest b/kde-apps/kig/Manifest
deleted file mode 100644
index 0355a89fb68c..000000000000
--- a/kde-apps/kig/Manifest
+++ /dev/null
@@ -1,2 +0,0 @@
-DIST kig-25.12.3.tar.xz 3262312 BLAKE2B 65ea99d9ace7d87f87644d0178076de01cf5678d815924f2a5df520fa251a3bc0b7ee21f0682551498331d3a1f00e0b44cb8c528d6abe93726b5c7c0e3a58843 SHA512 84172cc266a05d66ebd08d01d05b972c46f40fc6025696351fdaa79df654ea302cde711a0a11fb9b3030be814dca518e8b71be02da4d817248da2d3afe9b9a3b
-DIST kig-26.04.1.tar.xz 3266924 BLAKE2B 4dbddf1ef03928694adaa282be761e1faef5e96c705c8394d0eae619a9e0905c1f9789a4aa18adfeb0004a41fb97a14d1e18ec808427c36b7f41f8396ec52ff7 SHA512 a2ec811928a5b0c7e7d83bf86204f3b7b7ada1cfa05ad6c6b5f4d6c548a17d5f1caf702916ccb4a14a9835e65bd4e8b700b65d701af41f047087da9d812d3809
diff --git a/kde-apps/kig/files/kig-25.08.0-cmake-boostpython.patch b/kde-apps/kig/files/kig-25.08.0-cmake-boostpython.patch
deleted file mode 100644
index 9fe94c49b346..000000000000
--- a/kde-apps/kig/files/kig-25.08.0-cmake-boostpython.patch
+++ /dev/null
@@ -1,75 +0,0 @@
-From e81b46476ba18c6b4c098dec37e527f00a6af193 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>
---- 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,7 +68,9 @@ 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)
- get_filename_component(PYTHON_LIBRARY_REALPATH "${PYTHON_LIBRARY}" REALPATH)
-@@ -76,9 +79,7 @@ if(BoostPython_FOUND)
- 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"
- )
-@@ -96,9 +97,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
-
-@@ -348,7 +346,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
-@@ -379,8 +377,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.12.3.ebuild b/kde-apps/kig/kig-25.12.3.ebuild
deleted file mode 100644
index c82cae435705..000000000000
--- a/kde-apps/kig/kig-25.12.3.ebuild
+++ /dev/null
@@ -1,62 +0,0 @@
-# Copyright 1999-2026 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-ECM_HANDBOOK="optional"
-ECM_TEST="true"
-PYTHON_COMPAT=( python3_{13..14} )
-KFMIN=6.19.0
-QTMIN=6.10.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.08.0-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
-}
diff --git a/kde-apps/kig/kig-26.04.1.ebuild b/kde-apps/kig/kig-26.04.1.ebuild
deleted file mode 100644
index 49d28bb800d9..000000000000
--- a/kde-apps/kig/kig-26.04.1.ebuild
+++ /dev/null
@@ -1,62 +0,0 @@
-# Copyright 1999-2026 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-ECM_HANDBOOK="optional"
-ECM_TEST="true"
-PYTHON_COMPAT=( python3_{13..14} )
-KFMIN=6.22.0
-QTMIN=6.10.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.08.0-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
-}
diff --git a/kde-apps/kig/metadata.xml b/kde-apps/kig/metadata.xml
deleted file mode 100644
index 237c2690e213..000000000000
--- a/kde-apps/kig/metadata.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="project">
- <email>kde@gentoo.org</email>
- <name>Gentoo KDE Project</name>
- </maintainer>
- <upstream>
- <bugs-to>https://bugs.kde.org/enter_bug.cgi?product=kig</bugs-to>
- <remote-id type="kde-invent">education/kig</remote-id>
- </upstream>
- <use>
-<!-- <flag name="geogebra">Support files created by <pkg>sci-mathematics/geogebra-bin</pkg></flag> -->
- <flag name="scripting">Support Python scripting</flag>
- </use>
-</pkgmetadata>