public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: sci-visualization/kst/
@ 2016-06-29 19:14 Michael Palimaka
  0 siblings, 0 replies; 12+ messages in thread
From: Michael Palimaka @ 2016-06-29 19:14 UTC (permalink / raw
  To: gentoo-commits

commit:     f27065c8b250ca8093f6cf9ec5c7d95ddc5815ee
Author:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
AuthorDate: Wed Jun 29 18:41:20 2016 +0000
Commit:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
CommitDate: Wed Jun 29 19:13:48 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f27065c8

sci-visualization/kst: metadata whitespace

Package-Manager: portage-2.3.0

 sci-visualization/kst/metadata.xml | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/sci-visualization/kst/metadata.xml b/sci-visualization/kst/metadata.xml
index 57fbf96..9f73ea7 100644
--- a/sci-visualization/kst/metadata.xml
+++ b/sci-visualization/kst/metadata.xml
@@ -1,12 +1,12 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
-  <maintainer type="project">
-    <email>qt@gentoo.org</email>
-    <name>Gentoo Qt Project</name>
-  </maintainer>
-  <upstream>
-    <remote-id type="sourceforge">kst</remote-id>
-    <bugs-to>https://bugs.kde.org/</bugs-to>
-  </upstream>
+	<maintainer type="project">
+		<email>qt@gentoo.org</email>
+		<name>Gentoo Qt Project</name>
+		</maintainer>
+	<upstream>
+		<remote-id type="sourceforge">kst</remote-id>
+		<bugs-to>https://bugs.kde.org/</bugs-to>
+	</upstream>
 </pkgmetadata>


^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sci-visualization/kst/
@ 2016-09-14 20:45 Michael Palimaka
  0 siblings, 0 replies; 12+ messages in thread
From: Michael Palimaka @ 2016-09-14 20:45 UTC (permalink / raw
  To: gentoo-commits

commit:     450fa6ae2e505c86840ba8c375434e55982f7bf3
Author:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
AuthorDate: Wed Sep 14 20:28:52 2016 +0000
Commit:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
CommitDate: Wed Sep 14 20:45:17 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=450fa6ae

sci-visualization/kst: ensure the correct version of lconvert is used

Package-Manager: portage-2.3.0

 sci-visualization/kst/kst-2.0.8.ebuild | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/sci-visualization/kst/kst-2.0.8.ebuild b/sci-visualization/kst/kst-2.0.8.ebuild
index 4b0c98e..5d2eafa 100644
--- a/sci-visualization/kst/kst-2.0.8.ebuild
+++ b/sci-visualization/kst/kst-2.0.8.ebuild
@@ -4,7 +4,7 @@
 
 EAPI=5
 
-inherit cmake-utils multilib
+inherit cmake-utils multilib qmake-utils
 
 MY_P=Kst-${PV}
 
@@ -64,5 +64,8 @@ src_configure() {
 		$(cmake-utils_use test kst_test)
 		$(cmake-utils_use qt5 kst_qt5)
 	)
+
+	use !qt5 && mycmakeargs+=( -DQT_LCONVERT_EXECUTABLE="$(qt4_get_bindir)/lconvert" )
+
 	cmake-utils_src_configure
 }


^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sci-visualization/kst/
@ 2016-09-14 20:45 Michael Palimaka
  0 siblings, 0 replies; 12+ messages in thread
From: Michael Palimaka @ 2016-09-14 20:45 UTC (permalink / raw
  To: gentoo-commits

commit:     e3b9196e5d19db1770bfec45c753608df2447675
Author:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
AuthorDate: Wed Sep 14 20:27:37 2016 +0000
Commit:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
CommitDate: Wed Sep 14 20:45:17 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e3b9196e

sci-visualization/kst: avoid REQUIRED_USE for Qt version selection

Package-Manager: portage-2.3.0

 sci-visualization/kst/kst-2.0.8.ebuild | 13 +++++++------
 1 file changed, 7 insertions(+), 6 deletions(-)

diff --git a/sci-visualization/kst/kst-2.0.8.ebuild b/sci-visualization/kst/kst-2.0.8.ebuild
index 7a79231..4b0c98e 100644
--- a/sci-visualization/kst/kst-2.0.8.ebuild
+++ b/sci-visualization/kst/kst-2.0.8.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -15,14 +15,12 @@ SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"
 LICENSE="GPL-2 LGPL-2 FDL-1.2"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
-IUSE="debug +qt4 qt5 test"
-
-REQUIRED_USE="^^ ( qt4 qt5 )"
+IUSE="debug qt5 test"
 
 RESTRICT="test"
 
 RDEPEND="
-	qt4? (
+	!qt5? (
 		dev-qt/designer:4
 		dev-qt/qtcore:4
 		dev-qt/qtgui:4
@@ -46,7 +44,10 @@ RDEPEND="
 	sci-libs/netcdf-cxx:3
 "
 DEPEND="${RDEPEND}
-	test? ( dev-qt/qttest:4 )
+	test? (
+		!qt5? ( dev-qt/qttest:4 )
+		qt5? ( dev-qt/qttest:5 )
+	)
 "
 
 S=${WORKDIR}/${MY_P}


^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sci-visualization/kst/
@ 2017-09-24  6:27 Michael Palimaka
  0 siblings, 0 replies; 12+ messages in thread
From: Michael Palimaka @ 2017-09-24  6:27 UTC (permalink / raw
  To: gentoo-commits

commit:     f933839581a7e975affe56973e362020029ac5c7
Author:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
AuthorDate: Sun Sep 24 06:27:10 2017 +0000
Commit:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
CommitDate: Sun Sep 24 06:27:32 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f9338395

sci-visualization/kst: drop qt4 support

Package-Manager: Portage-2.3.8, Repoman-2.3.3

 sci-visualization/kst/kst-2.0.8.ebuild | 42 ++++++++++++----------------------
 1 file changed, 14 insertions(+), 28 deletions(-)

diff --git a/sci-visualization/kst/kst-2.0.8.ebuild b/sci-visualization/kst/kst-2.0.8.ebuild
index b5c0423a6d0..408da47f298 100644
--- a/sci-visualization/kst/kst-2.0.8.ebuild
+++ b/sci-visualization/kst/kst-2.0.8.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
 
-inherit cmake-utils multilib qmake-utils
+inherit cmake-utils multilib
 
 MY_P=Kst-${PV}
 
@@ -14,39 +14,27 @@ SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"
 LICENSE="GPL-2 LGPL-2 FDL-1.2"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
-IUSE="debug qt5 test"
+IUSE="debug test"
 
 RESTRICT="test"
 
 RDEPEND="
-	!qt5? (
-		dev-qt/designer:4
-		dev-qt/qtcore:4
-		dev-qt/qtgui:4
-		dev-qt/qtopengl:4
-		dev-qt/qtsvg:4
-	)
-	qt5? (
-		dev-qt/designer:5
-		dev-qt/qtconcurrent:5
-		dev-qt/qtcore:5
-		dev-qt/qtgui:5
-		dev-qt/qtnetwork:5
-		dev-qt/qtopengl:5
-		dev-qt/qtprintsupport:5
-		dev-qt/qtwidgets:5
-		dev-qt/qtxml:5
-	)
+	dev-qt/designer:5
+	dev-qt/qtconcurrent:5
+	dev-qt/qtcore:5
+	dev-qt/qtgui:5
+	dev-qt/qtnetwork:5
+	dev-qt/qtopengl:5
+	dev-qt/qtprintsupport:5
+	dev-qt/qtwidgets:5
+	dev-qt/qtxml:5
 	sci-libs/cfitsio
 	sci-libs/getdata
 	sci-libs/gsl
 	sci-libs/netcdf-cxx:3
 "
 DEPEND="${RDEPEND}
-	test? (
-		!qt5? ( dev-qt/qttest:4 )
-		qt5? ( dev-qt/qttest:5 )
-	)
+	test? ( dev-qt/qttest:5 )
 "
 
 S=${WORKDIR}/${MY_P}
@@ -58,14 +46,12 @@ src_configure() {
 	local mycmakeargs=(
 		-Dkst_install_libdir="$(get_libdir)"
 		-Dkst_pch=OFF
+		-Dkst_qt5=ON
 		-Dkst_release=$(usex debug OFF ON)
 		-Dkst_rpath=OFF
 		-Dkst_svnversion=OFF
 		$(cmake-utils_use test kst_test)
-		$(cmake-utils_use qt5 kst_qt5)
 	)
 
-	use !qt5 && mycmakeargs+=( -DQT_LCONVERT_EXECUTABLE="$(qt4_get_bindir)/lconvert" )
-
 	cmake-utils_src_configure
 }


^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sci-visualization/kst/
@ 2018-06-12  7:33 Andreas Sturmlechner
  0 siblings, 0 replies; 12+ messages in thread
From: Andreas Sturmlechner @ 2018-06-12  7:33 UTC (permalink / raw
  To: gentoo-commits

commit:     c5d274282a8e9c2a12ce6c9ea90b51e3547edafe
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Tue Jun 12 07:07:14 2018 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Tue Jun 12 07:16:54 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c5d27428

sci-visualization/kst: EAPI-6 bump

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 sci-visualization/kst/kst-2.0.8.ebuild | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/sci-visualization/kst/kst-2.0.8.ebuild b/sci-visualization/kst/kst-2.0.8.ebuild
index 9d4e9bb326f..1ea474c0cee 100644
--- a/sci-visualization/kst/kst-2.0.8.ebuild
+++ b/sci-visualization/kst/kst-2.0.8.ebuild
@@ -1,9 +1,9 @@
 # Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=5
+EAPI=6
 
-inherit cmake-utils multilib
+inherit cmake-utils
 
 MY_P=Kst-${PV}
 
@@ -54,7 +54,7 @@ src_configure() {
 		-Dkst_release=$(usex debug OFF ON)
 		-Dkst_rpath=OFF
 		-Dkst_svnversion=OFF
-		$(cmake-utils_use test kst_test)
+		-Dkst_test=$(usex test)
 	)
 
 	cmake-utils_src_configure


^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sci-visualization/kst/
@ 2018-08-26 18:24 Andreas Sturmlechner
  0 siblings, 0 replies; 12+ messages in thread
From: Andreas Sturmlechner @ 2018-08-26 18:24 UTC (permalink / raw
  To: gentoo-commits

commit:     5a70b639ba64b3645d04d1947ddd30a8bf67b3b0
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Sun Aug 26 18:21:49 2018 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sun Aug 26 18:23:50 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5a70b639

sci-visualization/kst: Run xdg_desktop_database_update

Package-Manager: Portage-2.3.48, Repoman-2.3.10

 sci-visualization/kst/kst-2.0.8.ebuild | 10 +++++++++-
 1 file changed, 9 insertions(+), 1 deletion(-)

diff --git a/sci-visualization/kst/kst-2.0.8.ebuild b/sci-visualization/kst/kst-2.0.8.ebuild
index 6b0ac253117..6f068a906ed 100644
--- a/sci-visualization/kst/kst-2.0.8.ebuild
+++ b/sci-visualization/kst/kst-2.0.8.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=6
 
-inherit cmake-utils
+inherit cmake-utils xdg-utils
 
 MY_P=Kst-${PV}
 
@@ -60,3 +60,11 @@ src_configure() {
 
 	cmake-utils_src_configure
 }
+
+pkg_postinst() {
+	xdg_desktop_database_update
+}
+
+pkg_postrm() {
+	xdg_desktop_database_update
+}


^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sci-visualization/kst/
@ 2018-09-05 17:42 Andreas Sturmlechner
  0 siblings, 0 replies; 12+ messages in thread
From: Andreas Sturmlechner @ 2018-09-05 17:42 UTC (permalink / raw
  To: gentoo-commits

commit:     6ecbac744f236426308e25eca7fb7207a9a766f2
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Wed Sep  5 17:41:58 2018 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Wed Sep  5 17:42:21 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6ecbac74

sci-visualization/kst: Add missing DEPEND

Closes: https://bugs.gentoo.org/664798
Package-Manager: Portage-2.3.49, Repoman-2.3.10

 sci-visualization/kst/kst-2.0.8.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/sci-visualization/kst/kst-2.0.8.ebuild b/sci-visualization/kst/kst-2.0.8.ebuild
index 6f068a906ed..d5cfd61e367 100644
--- a/sci-visualization/kst/kst-2.0.8.ebuild
+++ b/sci-visualization/kst/kst-2.0.8.ebuild
@@ -34,6 +34,7 @@ RDEPEND="
 	sci-libs/netcdf-cxx:3
 "
 DEPEND="${RDEPEND}
+	dev-qt/linguist-tools:5
 	test? ( dev-qt/qttest:5 )
 "
 


^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sci-visualization/kst/
@ 2021-06-02 22:36 Sam James
  0 siblings, 0 replies; 12+ messages in thread
From: Sam James @ 2021-06-02 22:36 UTC (permalink / raw
  To: gentoo-commits

commit:     6dff1cd4a0a7b7a3b0b38af9ff5be803b2abccc1
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Jun  2 21:28:35 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Jun  2 21:50:30 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6dff1cd4

sci-visualization/kst: subscribe to sci-libs/gsl subslot

Signed-off-by: Sam James <sam <AT> gentoo.org>

 sci-visualization/kst/{kst-2.0.8.ebuild => kst-2.0.8-r1.ebuild} | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sci-visualization/kst/kst-2.0.8.ebuild b/sci-visualization/kst/kst-2.0.8-r1.ebuild
similarity index 95%
rename from sci-visualization/kst/kst-2.0.8.ebuild
rename to sci-visualization/kst/kst-2.0.8-r1.ebuild
index d5cfd61e367..148390c6c26 100644
--- a/sci-visualization/kst/kst-2.0.8.ebuild
+++ b/sci-visualization/kst/kst-2.0.8-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -30,7 +30,7 @@ RDEPEND="
 	dev-qt/qtxml:5
 	sci-libs/cfitsio
 	sci-libs/getdata
-	sci-libs/gsl
+	sci-libs/gsl:=
 	sci-libs/netcdf-cxx:3
 "
 DEPEND="${RDEPEND}


^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sci-visualization/kst/
@ 2021-09-07 12:52 Andreas Sturmlechner
  0 siblings, 0 replies; 12+ messages in thread
From: Andreas Sturmlechner @ 2021-09-07 12:52 UTC (permalink / raw
  To: gentoo-commits

commit:     bfa2bb1075711dfd765f6f86fea7fbef5fc09e52
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Tue Sep  7 11:38:22 2021 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Tue Sep  7 12:52:28 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bfa2bb10

sci-visualization/kst: Update HOMEPAGE, fix metadata.xml indentation

Add current upstream repository address.

Package-Manager: Portage-3.0.22, Repoman-3.0.3
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 sci-visualization/kst/kst-2.0.8-r1.ebuild | 2 +-
 sci-visualization/kst/metadata.xml        | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/sci-visualization/kst/kst-2.0.8-r1.ebuild b/sci-visualization/kst/kst-2.0.8-r1.ebuild
index 148390c6c26..9df077a76f9 100644
--- a/sci-visualization/kst/kst-2.0.8-r1.ebuild
+++ b/sci-visualization/kst/kst-2.0.8-r1.ebuild
@@ -8,7 +8,7 @@ inherit cmake-utils xdg-utils
 MY_P=Kst-${PV}
 
 DESCRIPTION="Fast real-time large-dataset viewing and plotting tool"
-HOMEPAGE="https://kst.kde.org/"
+HOMEPAGE="https://kst-plot.kde.org/ https://invent.kde.org/graphics/kst-plot"
 SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"
 
 LICENSE="GPL-2 LGPL-2 FDL-1.2"

diff --git a/sci-visualization/kst/metadata.xml b/sci-visualization/kst/metadata.xml
index 9f73ea702ac..27e7888aa2c 100644
--- a/sci-visualization/kst/metadata.xml
+++ b/sci-visualization/kst/metadata.xml
@@ -4,7 +4,7 @@
 	<maintainer type="project">
 		<email>qt@gentoo.org</email>
 		<name>Gentoo Qt Project</name>
-		</maintainer>
+	</maintainer>
 	<upstream>
 		<remote-id type="sourceforge">kst</remote-id>
 		<bugs-to>https://bugs.kde.org/</bugs-to>


^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sci-visualization/kst/
@ 2021-09-07 12:52 Andreas Sturmlechner
  0 siblings, 0 replies; 12+ messages in thread
From: Andreas Sturmlechner @ 2021-09-07 12:52 UTC (permalink / raw
  To: gentoo-commits

commit:     bfaf58c44af48ea56c0c4943b8d2b0bfe2731755
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Tue Sep  7 11:43:43 2021 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Tue Sep  7 12:52:28 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bfaf58c4

sci-visualization/kst: EAPI-8 bump, switch to cmake.eclass

Package-Manager: Portage-3.0.22, Repoman-3.0.3
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 sci-visualization/kst/kst-2.0.8-r1.ebuild | 12 +++++-------
 1 file changed, 5 insertions(+), 7 deletions(-)

diff --git a/sci-visualization/kst/kst-2.0.8-r1.ebuild b/sci-visualization/kst/kst-2.0.8-r1.ebuild
index 9df077a76f9..e7319cac830 100644
--- a/sci-visualization/kst/kst-2.0.8-r1.ebuild
+++ b/sci-visualization/kst/kst-2.0.8-r1.ebuild
@@ -1,15 +1,15 @@
 # Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
-
-inherit cmake-utils xdg-utils
+EAPI=8
 
 MY_P=Kst-${PV}
+inherit cmake xdg-utils
 
 DESCRIPTION="Fast real-time large-dataset viewing and plotting tool"
 HOMEPAGE="https://kst-plot.kde.org/ https://invent.kde.org/graphics/kst-plot"
 SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"
+S="${WORKDIR}/${MY_P}"
 
 LICENSE="GPL-2 LGPL-2 FDL-1.2"
 SLOT="0"
@@ -34,11 +34,9 @@ RDEPEND="
 	sci-libs/netcdf-cxx:3
 "
 DEPEND="${RDEPEND}
-	dev-qt/linguist-tools:5
 	test? ( dev-qt/qttest:5 )
 "
-
-S=${WORKDIR}/${MY_P}
+BDEPEND="dev-qt/linguist-tools:5"
 
 DOCS=( AUTHORS README.kstScript )
 
@@ -59,7 +57,7 @@ src_configure() {
 		-Dkst_test=$(usex test)
 	)
 
-	cmake-utils_src_configure
+	cmake_src_configure
 }
 
 pkg_postinst() {


^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sci-visualization/kst/
@ 2021-09-07 12:52 Andreas Sturmlechner
  0 siblings, 0 replies; 12+ messages in thread
From: Andreas Sturmlechner @ 2021-09-07 12:52 UTC (permalink / raw
  To: gentoo-commits

commit:     47d28485c0b9dc3c9f0ae512a7c0ca648edf6c43
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Tue Sep  7 12:47:43 2021 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Tue Sep  7 12:52:29 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=47d28485

sci-visualization/kst: Fix dependencies, add missing usedep

Drop unused dev-qt/qtopengl:5
Add missing slot op to sci-libs/cfitsio
Add missing sci-libs/matio (fixes automagic dep after it was packaged)

Thanks-to: Jérôme Borme <jerome.borme <AT> laposte.net>
Bug: https://bugs.gentoo.org/593848
Package-Manager: Portage-3.0.22, Repoman-3.0.3
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 sci-visualization/kst/{kst-2.0.8-r1.ebuild => kst-2.0.8-r2.ebuild} | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/sci-visualization/kst/kst-2.0.8-r1.ebuild b/sci-visualization/kst/kst-2.0.8-r2.ebuild
similarity index 95%
rename from sci-visualization/kst/kst-2.0.8-r1.ebuild
rename to sci-visualization/kst/kst-2.0.8-r2.ebuild
index 159b9f3b814..d98d0d65c25 100644
--- a/sci-visualization/kst/kst-2.0.8-r1.ebuild
+++ b/sci-visualization/kst/kst-2.0.8-r2.ebuild
@@ -24,13 +24,13 @@ RDEPEND="
 	dev-qt/qtcore:5
 	dev-qt/qtgui:5
 	dev-qt/qtnetwork:5
-	dev-qt/qtopengl:5
 	dev-qt/qtprintsupport:5
 	dev-qt/qtwidgets:5
 	dev-qt/qtxml:5
-	sci-libs/cfitsio
-	sci-libs/getdata
+	sci-libs/cfitsio:=
+	sci-libs/getdata[cxx]
 	sci-libs/gsl:=
+	sci-libs/matio:=
 	sci-libs/netcdf-cxx:3
 "
 DEPEND="${RDEPEND}


^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sci-visualization/kst/
@ 2024-03-27  5:59 Sam James
  0 siblings, 0 replies; 12+ messages in thread
From: Sam James @ 2024-03-27  5:59 UTC (permalink / raw
  To: gentoo-commits

commit:     52e24d1ea822f809e6e51fe31a8e593711577179
Author:     Eli Schwartz <eschwartz93 <AT> gmail <DOT> com>
AuthorDate: Wed Mar 27 05:27:44 2024 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Mar 27 05:54:04 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=52e24d1e

sci-visualization/kst: mark as LTO-unsafe

Closes: https://bugs.gentoo.org/863296
Signed-off-by: Eli Schwartz <eschwartz93 <AT> gmail.com>
Signed-off-by: Sam James <sam <AT> gentoo.org>

 sci-visualization/kst/kst-2.0.8-r2.ebuild | 9 +++++++--
 1 file changed, 7 insertions(+), 2 deletions(-)

diff --git a/sci-visualization/kst/kst-2.0.8-r2.ebuild b/sci-visualization/kst/kst-2.0.8-r2.ebuild
index d98d0d65c25d..6eea2097dbb3 100644
--- a/sci-visualization/kst/kst-2.0.8-r2.ebuild
+++ b/sci-visualization/kst/kst-2.0.8-r2.ebuild
@@ -1,10 +1,10 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
 
 MY_P=Kst-${PV}
-inherit cmake xdg-utils
+inherit cmake flag-o-matic xdg-utils
 
 DESCRIPTION="Fast real-time large-dataset viewing and plotting tool"
 HOMEPAGE="https://kst-plot.kde.org/ https://invent.kde.org/graphics/kst-plot"
@@ -50,6 +50,11 @@ PATCHES=(
 )
 
 src_configure() {
+	# -Werror=odr, -Werror=lto-type=-mismatch
+	# https://bugs.gentoo.org/863296
+	# https://bugs.kde.org/show_bug.cgi?id=484572
+	filter-lto
+
 	local mycmakeargs=(
 		-Dkst_install_libdir="$(get_libdir)"
 		-Dkst_pch=OFF


^ permalink raw reply related	[flat|nested] 12+ messages in thread

end of thread, other threads:[~2024-03-27  5:59 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-06-02 22:36 [gentoo-commits] repo/gentoo:master commit in: sci-visualization/kst/ Sam James
  -- strict thread matches above, loose matches on Subject: below --
2024-03-27  5:59 Sam James
2021-09-07 12:52 Andreas Sturmlechner
2021-09-07 12:52 Andreas Sturmlechner
2021-09-07 12:52 Andreas Sturmlechner
2018-09-05 17:42 Andreas Sturmlechner
2018-08-26 18:24 Andreas Sturmlechner
2018-06-12  7:33 Andreas Sturmlechner
2017-09-24  6:27 Michael Palimaka
2016-09-14 20:45 Michael Palimaka
2016-09-14 20:45 Michael Palimaka
2016-06-29 19:14 Michael Palimaka

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox