Skip to content
Snippets Groups Projects
Commit dac50f11 authored by Max Brazhnikov's avatar Max Brazhnikov
Browse files

science/kst2: Update to 2022.02.16 snapshot

- Drop upstreamed patches.
parent a6fdb60e
No related branches found
No related tags found
No related merge requests found
......@@ -2,7 +2,6 @@
PORTNAME= kst
DISTVERSION= ${KST_VERSION}.${KST_DATE}
PORTREVISION= 4
CATEGORIES= science
MAINTAINER= makc@FreeBSD.org
......@@ -24,9 +23,9 @@ USE_QT= concurrent core gui network printsupport svg widgets xml \
USE_LDCONFIG= yes
KST_VERSION= 2.0.8
KST_DATE= 20210124
KST_COMMIT= 38eddb53
KDE_INVENT= 38eddb5322a1d557f9d86ea95d456d76272941e3 graphics kst-plot
KST_DATE= 20220216
KST_COMMIT= 40cdf2d3
KDE_INVENT= 40cdf2d397e4277ee7226188ef89ae3e0f12d884 graphics kst-plot
CMAKE_ARGS= -Dkst_install_prefix=${PREFIX} \
-Dkst_pch=off \
......
TIMESTAMP = 1620381589
SHA256 (graphics-kst-plot-38eddb5322a1d557f9d86ea95d456d76272941e3_GL0.tar.gz) = 0ffcb24c0aaa416ba8b879e4576ab35e23adde780f7d8a64ceffb27fe8f33f57
SIZE (graphics-kst-plot-38eddb5322a1d557f9d86ea95d456d76272941e3_GL0.tar.gz) = 18792017
TIMESTAMP = 1646996686
SHA256 (graphics-kst-plot-40cdf2d397e4277ee7226188ef89ae3e0f12d884_GL0.tar.gz) = cf6c0b33d915906593cd7613246f4679dcdefecb7e50b67812eeb57866e37ab8
SIZE (graphics-kst-plot-40cdf2d397e4277ee7226188ef89ae3e0f12d884_GL0.tar.gz) = 18794059
......@@ -13,19 +13,6 @@
if(kst_sanitize)
@@ -116,10 +110,10 @@ elseif(kst_3rdparty_download)
elseif(GCC_VERSION VERSION_EQUAL 4.7 OR GCC_VERSION VERSION_GREATER 4.7)
set(ver 4.7)
set(md5 de6e8dbab1bb17eee6057941fddc93e3)
- else(GCC_VERSION VERSION_EQUAL 4.6 OR GCC_VERSION VERSION_GREATER 4.6)
+ elseif(GCC_VERSION VERSION_EQUAL 4.6 OR GCC_VERSION VERSION_GREATER 4.6)
set(ver 4.6)
set(md5 70d8670af9c21eb8fb466654c95d8e4d)
- else(GCC_VERSION VERSION_GREATER 4.4)
+ elseif(GCC_VERSION VERSION_GREATER 4.4)
set(ver 4.4)
set(md5 999248fb40a44543af4dd4cd1be0ceeb)
else()
@@ -240,11 +234,6 @@ message(STATUS)
# React on options
......
--- src/datasources/hdf5/hdf5.cpp.orig 2021-01-24 05:51:19 UTC
+++ src/datasources/hdf5/hdf5.cpp
@@ -308,7 +308,11 @@ herr_t HDF5Source::visitFunc(hid_t id, const char* nam
return 0;
}
+#if H5_VERSION_GE(1,12,0)
+ status = H5Oget_info_by_name(id, name, &infobuf, H5O_INFO_BASIC, H5P_DEFAULT);
+#else
status = H5Oget_info_by_name(id, name, &infobuf, H5P_DEFAULT);
+#endif
if(status == 0){
if(infobuf.type == H5O_TYPE_DATASET){
H5::DataSet dataset = h5Source->_hdfFile->openDataSet(name);
--- src/widgets/gradienteditor.h.orig 2020-05-18 16:26:46 UTC
+++ src/widgets/gradienteditor.h
@@ -16,6 +16,7 @@
#include <QHash>
#include <QWidget>
#include <QGradient>
+#include <QPainterPath>
#include "kstwidgets_export.h"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment