diff options
| author | root <root@alpha.trunkmasters.com> | 2026-06-04 05:35:26 -0500 |
|---|---|---|
| committer | root <root@alpha.trunkmasters.com> | 2026-06-04 05:35:26 -0500 |
| commit | f716a9fe6455d39eef01e718aae68dae61c19704 (patch) | |
| tree | 0c52bbae1c242fbc296bd650fcd1167685f81492 /sci-visualization/kst | |
| parent | 3f9cf298e89cd5037b982abba06091224ee76daf (diff) | |
| download | baldeagleos-repo-f716a9fe6455d39eef01e718aae68dae61c19704.tar.gz baldeagleos-repo-f716a9fe6455d39eef01e718aae68dae61c19704.tar.xz baldeagleos-repo-f716a9fe6455d39eef01e718aae68dae61c19704.zip | |
Adding metadata
Diffstat (limited to 'sci-visualization/kst')
| -rw-r--r-- | sci-visualization/kst/Manifest | 1 | ||||
| -rw-r--r-- | sci-visualization/kst/files/kst-2.1.0_p20260208-cmake-findhdf5.patch | 44 | ||||
| -rw-r--r-- | sci-visualization/kst/kst-2.1.0_p20260208-r1.ebuild | 55 | ||||
| -rw-r--r-- | sci-visualization/kst/metadata.xml | 9 |
4 files changed, 0 insertions, 109 deletions
diff --git a/sci-visualization/kst/Manifest b/sci-visualization/kst/Manifest deleted file mode 100644 index 9bca6474b495..000000000000 --- a/sci-visualization/kst/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST kst-plot-2.1.0_p20260208-e4dbcc47.tar.gz 16148856 BLAKE2B 3d798be8a6a3b0cb716438933a4805646aceaaaf26b79968f067912b67c64062cb6d523a9252591d7f30fff942ae7fe7fdfd9dfd2b08ff2f24a8c595f3449cd2 SHA512 0110cc961718a075b26bae3f5e179cadf376220c185460446cd3166148b941de0462837a41450f99806133b3c5d4a92c8addfedeaacb73096159dfb3b3ea105d diff --git a/sci-visualization/kst/files/kst-2.1.0_p20260208-cmake-findhdf5.patch b/sci-visualization/kst/files/kst-2.1.0_p20260208-cmake-findhdf5.patch deleted file mode 100644 index 3aa0e7ffddba..000000000000 --- a/sci-visualization/kst/files/kst-2.1.0_p20260208-cmake-findhdf5.patch +++ /dev/null @@ -1,44 +0,0 @@ -From 3244742f3d2bfacd9265c19c7e24be6037a7dc9e Mon Sep 17 00:00:00 2001 -From: Andreas Sturmlechner <asturm@gentoo.org> -Date: Wed, 23 Apr 2025 19:07:28 +0200 -Subject: [PATCH] Use CMake provided FindHDF5 module - -Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org> ---- - CMakeLists.txt | 2 +- - cmake/modules/FindHDF5.cmake | 79 ---------------------------------- - src/datasources/CMakeLists.txt | 4 +- - 3 files changed, 3 insertions(+), 82 deletions(-) - delete mode 100644 cmake/modules/FindHDF5.cmake - -index ec5f0055..339ab3da 100644 -diff --git a/CMakeLists.txt b/CMakeLists.txt ---- a/CMakeLists.txt -+++ b/CMakeLists.txt -@@ -45,7 +45,7 @@ find_package(Netcdf) - find_package(Matio) - find_package(CFITSIO) - find_package(TIFF) --find_package(HDF5) -+find_package(HDF5 COMPONENTS CXX) - message(STATUS "----------------------------------------------") - - message(STATUS) -diff --git a/src/datasources/CMakeLists.txt b/src/datasources/CMakeLists.txt -diff --git a/src/datasources/CMakeLists.txt b/src/datasources/CMakeLists.txt ---- a/src/datasources/CMakeLists.txt -+++ b/src/datasources/CMakeLists.txt -@@ -49,7 +49,7 @@ if(TARGET TIFF::TIFF) - kst_add_plugin(. tiff16source LINK_LIBRARIES TIFF::TIFF) # Directory named after the file format, not the lib - endif() - --if(TARGET HDF5::HDF5) -- include_directories(${HDF5_INCLUDE_DIR}) -- kst_add_plugin(. hdf5 LINK_LIBRARIES ${HDF5_LIBRARIES}) -+if(HDF5_FOUND) -+ include_directories(${HDF5_CXX_INCLUDE_DIRS}) -+ kst_add_plugin(. hdf5 LINK_LIBRARIES ${HDF5_CXX_LIBRARIES}) - endif() --- -2.53.0 - diff --git a/sci-visualization/kst/kst-2.1.0_p20260208-r1.ebuild b/sci-visualization/kst/kst-2.1.0_p20260208-r1.ebuild deleted file mode 100644 index f997d5fb7cdd..000000000000 --- a/sci-visualization/kst/kst-2.1.0_p20260208-r1.ebuild +++ /dev/null @@ -1,55 +0,0 @@ -# Copyright 1999-2026 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -CMAKE_REMOVE_MODULES_LIST=( FindHDF5 ) -KDE_ORG_CATEGORY=graphics -KDE_ORG_NAME=kst-plot -KDE_ORG_COMMIT=e4dbcc472348100e040d464dd0cae52c337fafe6 -inherit cmake flag-o-matic kde.org xdg - -DESCRIPTION="Fast real-time large-dataset viewing and plotting tool" -HOMEPAGE="https://kst-plot.kde.org/" -SRC_URI="https://dev.gentoo.org/~asturm/distfiles/kde/${KDE_ORG_NAME}-${PV}-${KDE_ORG_COMMIT:0:8}.tar.gz" - -LICENSE="GPL-2 LGPL-2 FDL-1.2" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="debug test" - -RESTRICT="test" - -RDEPEND=" - dev-qt/qtbase:6[concurrent,gui,network,widgets,xml] - dev-qt/qtsvg:6 - dev-qt/qttools:6[designer] - media-libs/tiff:= - sci-libs/cfitsio:= - sci-libs/getdata[cxx] - sci-libs/gsl:= - sci-libs/hdf5:=[cxx] - sci-libs/matio:= - sci-libs/netcdf-cxx:0= -" -DEPEND="${RDEPEND}" -BDEPEND="dev-qt/qttools:6[linguist]" - -DOCS=( AUTHORS README.kstScript ) - -PATCHES=( - "${FILESDIR}"/${P}-cmake-findhdf5.patch # bug #954233; downstream patch -) - -src_prepare() { - rm -r cmake/3rdparty pyKst || die - cmake_src_prepare -} - -src_configure() { - # -Werror=odr, -Werror=lto-type=-mismatch - # https://bugs.gentoo.org/863296 - # https://bugs.kde.org/show_bug.cgi?id=484572 - filter-lto - cmake_src_configure -} diff --git a/sci-visualization/kst/metadata.xml b/sci-visualization/kst/metadata.xml deleted file mode 100644 index 477a6a39ca2b..000000000000 --- a/sci-visualization/kst/metadata.xml +++ /dev/null @@ -1,9 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <!-- maintainer-needed --> - <upstream> - <remote-id type="kde-invent">graphics/kst-plot</remote-id> - <bugs-to>https://bugs.kde.org/enter_bug.cgi?product=kst</bugs-to> - </upstream> -</pkgmetadata> |
