public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/proj/guru:dev commit in: sys-cluster/wxparaver/
@ 2021-08-31  6:08 Alessandro Barbieri
  0 siblings, 0 replies; 7+ messages in thread
From: Alessandro Barbieri @ 2021-08-31  6:08 UTC (permalink / raw
  To: gentoo-commits

commit:     d04464d87af3a4672b4fb9184a1dfb2d704f29c4
Author:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Tue Aug 31 06:06:46 2021 +0000
Commit:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
CommitDate: Tue Aug 31 06:08:06 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=d04464d8

sys-cluster/wxparaver: initial import

Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>

 sys-cluster/wxparaver/Manifest               |  1 +
 sys-cluster/wxparaver/metadata.xml           | 17 +++++
 sys-cluster/wxparaver/wxparaver-4.9.0.ebuild | 96 ++++++++++++++++++++++++++++
 3 files changed, 114 insertions(+)

diff --git a/sys-cluster/wxparaver/Manifest b/sys-cluster/wxparaver/Manifest
new file mode 100644
index 000000000..525f910b2
--- /dev/null
+++ b/sys-cluster/wxparaver/Manifest
@@ -0,0 +1 @@
+DIST wxparaver-4.9.0.tar.gz 1045366 BLAKE2B 297e49160ce23591257002763025359a4269a3691b094b90d8a8f8fa648998cbbca068853a1e22ed878f68e786b5e8145c14c0bb2c95e4e05fecc01fa79e48a2 SHA512 b0b2cf4383549fc48f34cd3c754c6614798512ab712fa7c728ce20c4536768227625ea5b6b641746fc1780dd354a6da7cfecc48e8f19ecc9cdb9eddcb93c501d

diff --git a/sys-cluster/wxparaver/metadata.xml b/sys-cluster/wxparaver/metadata.xml
new file mode 100644
index 000000000..2b71a9da3
--- /dev/null
+++ b/sys-cluster/wxparaver/metadata.xml
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<maintainer type="person">
+		<email>lssndrbarbieri@gmail.com</email>
+		<name>Alessandro Barbieri</name>
+	</maintainer>
+	<use>
+		<flag name="extrae">Enable extrae support</flag>
+		<flag name="ompss">Enable OmpSs parallel version</flag>
+		<flag name="openmp">Enable OpenMP parallel version</flag>
+	</use>
+	<upstream>
+		<bugs-to>https://github.com/bsc-performance-tools/wxparaver/issues</bugs-to>
+		<remote-id type="github">bsc-performance-tools/wxparaver</remote-id>
+	</upstream>
+</pkgmetadata>

diff --git a/sys-cluster/wxparaver/wxparaver-4.9.0.ebuild b/sys-cluster/wxparaver/wxparaver-4.9.0.ebuild
new file mode 100644
index 000000000..ba10c93a5
--- /dev/null
+++ b/sys-cluster/wxparaver/wxparaver-4.9.0.ebuild
@@ -0,0 +1,96 @@
+# Copyright 2019-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DOCS_AUTODOC=0
+DOCS_BUILDER="sphinx"
+DOCS_DIR="docs/wxparaver_help_contents/sphinx/2.paraver_toolset/source"
+PYTHON_COMPAT=( python3_{8..10} pypy3 )
+
+inherit autotools python-any-r1 docs
+
+DESCRIPTION="paraver gui"
+HOMEPAGE="
+	http://tools.bsc.es/paraver
+	https://github.com/bsc-performance-tools/wxparaver
+"
+SRC_URI="https://github.com/bsc-performance-tools/wxparaver/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="LGPL-2.1"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="extrae ompss openmp"
+
+RDEPEND="
+	dev-libs/boost:=
+	dev-libs/openssl
+	sys-cluster/paraver-kernel
+	x11-libs/wxGTK
+
+	extrae? ( sys-cluster/extrae )
+"
+DEPEND="${RDEPEND}"
+BDEPEND="app-admin/chrpath"
+
+DOCS=( README NEWS AUTHORS ChangeLog )
+
+src_unpack() {
+	default
+	gzip -d "${S}/docs/wxparaver_help_contents/install/man/paraver-toolset.1.gz" || die
+}
+
+src_prepare() {
+	default
+	eautoreconf
+}
+
+src_configure() {
+	local myconf=(
+		--disable-old-pcfparser
+		--with-boost="${EPREFIX}/usr"
+		--with-boost-libdir="${EPREFIX}/usr/$(get_libdir)"
+		--with-debug-level=none
+		--with-openssl="${EPREFIX}/usr"
+		--with-paraver="${EPREFIX}/usr"
+
+		$(use_enable ompss)
+		$(use_enable openmp)
+	)
+
+	if use extrae; then
+		myconf+=( "--with-extrae=${EPREFIX}/usr" )
+	else
+		myconf+=( "--without-extrae" )
+	fi
+
+	econf "${myconf[@]}" || die
+}
+
+src_compile() {
+	default
+	docs_compile
+}
+
+src_install() {
+	default
+	# only a part of the docs can be built from source
+	if use doc; then
+		# remove a part of the prebuilt docs
+		rm -r "${S}/docs/wxparaver_help_contents/install/html/2.paraver_toolset" || die
+		# replace them with the newly built docs
+		mv "${S}/_build/html" "${S}/docs/wxparaver_help_contents/install/html/2.paraver_toolset" || die
+		# ideally this is the manpage just built from sphinx but I'm not sure it really is
+		doman "${S}/docs/wxparaver_help_contents/sphinx/2.paraver_toolset/build/man/paraver-toolset.1"
+	else
+		# install the prebuilt manpage
+		doman "${S}/docs/wxparaver_help_contents/install/man/paraver-toolset.1"
+	fi
+	# override eclass variable
+	unset HTML_DOCS
+	HTML_DOCS=( docs/wxparaver_help_contents/install/html/. )
+	einstalldocs
+	rm -r "${ED}/usr/share/doc/wxparaver_help_contents" || die
+	chrpath -d "${ED}/usr/bin/wxparaver.bin" || die
+	find "${ED}" -name '*.la' -delete || die
+}


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

* [gentoo-commits] repo/proj/guru:dev commit in: sys-cluster/wxparaver/
@ 2021-08-31  7:45 Alessandro Barbieri
  0 siblings, 0 replies; 7+ messages in thread
From: Alessandro Barbieri @ 2021-08-31  7:45 UTC (permalink / raw
  To: gentoo-commits

commit:     3d11be9747d62445cf9c0c81dedf6fcd0a0f4b90
Author:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Tue Aug 31 07:44:58 2021 +0000
Commit:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
CommitDate: Tue Aug 31 07:44:58 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=3d11be97

sys-cluster/wxparaver: do not double install some doc, wxwidgets eclass

Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>

 .../{wxparaver-4.9.0.ebuild => wxparaver-4.9.0-r1.ebuild}   | 13 ++++++++-----
 1 file changed, 8 insertions(+), 5 deletions(-)

diff --git a/sys-cluster/wxparaver/wxparaver-4.9.0.ebuild b/sys-cluster/wxparaver/wxparaver-4.9.0-r1.ebuild
similarity index 94%
rename from sys-cluster/wxparaver/wxparaver-4.9.0.ebuild
rename to sys-cluster/wxparaver/wxparaver-4.9.0-r1.ebuild
index ba10c93a5..26191463a 100644
--- a/sys-cluster/wxparaver/wxparaver-4.9.0.ebuild
+++ b/sys-cluster/wxparaver/wxparaver-4.9.0-r1.ebuild
@@ -7,8 +7,9 @@ DOCS_AUTODOC=0
 DOCS_BUILDER="sphinx"
 DOCS_DIR="docs/wxparaver_help_contents/sphinx/2.paraver_toolset/source"
 PYTHON_COMPAT=( python3_{8..10} pypy3 )
+WX_GTK_VER="3.0-gtk3"
 
-inherit autotools python-any-r1 docs
+inherit autotools python-any-r1 docs wxwidgets
 
 DESCRIPTION="paraver gui"
 HOMEPAGE="
@@ -26,7 +27,6 @@ RDEPEND="
 	dev-libs/boost:=
 	dev-libs/openssl
 	sys-cluster/paraver-kernel
-	x11-libs/wxGTK
 
 	extrae? ( sys-cluster/extrae )
 "
@@ -46,6 +46,8 @@ src_prepare() {
 }
 
 src_configure() {
+	setup-wxwidgets
+
 	local myconf=(
 		--disable-old-pcfparser
 		--with-boost="${EPREFIX}/usr"
@@ -73,7 +75,6 @@ src_compile() {
 }
 
 src_install() {
-	default
 	# only a part of the docs can be built from source
 	if use doc; then
 		# remove a part of the prebuilt docs
@@ -89,8 +90,10 @@ src_install() {
 	# override eclass variable
 	unset HTML_DOCS
 	HTML_DOCS=( docs/wxparaver_help_contents/install/html/. )
-	einstalldocs
+
+	default
+
 	rm -r "${ED}/usr/share/doc/wxparaver_help_contents" || die
 	chrpath -d "${ED}/usr/bin/wxparaver.bin" || die
-	find "${ED}" -name '*.la' -delete || die
+#	find "${ED}" -name '*.la' -delete || die
 }


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

* [gentoo-commits] repo/proj/guru:dev commit in: sys-cluster/wxparaver/
@ 2021-09-07 15:38 Alessandro Barbieri
  0 siblings, 0 replies; 7+ messages in thread
From: Alessandro Barbieri @ 2021-09-07 15:38 UTC (permalink / raw
  To: gentoo-commits

commit:     697d01d710e589a37b3da151c8a96447523425ab
Author:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Tue Sep  7 15:36:38 2021 +0000
Commit:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
CommitDate: Tue Sep  7 15:38:12 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=697d01d7

sys-cluster/wxparaver: add missing dependency

Closes: https://bugs.gentoo.org/812002
Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>

 sys-cluster/wxparaver/wxparaver-4.9.0-r1.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/sys-cluster/wxparaver/wxparaver-4.9.0-r1.ebuild b/sys-cluster/wxparaver/wxparaver-4.9.0-r1.ebuild
index 26191463a..7cd953a9a 100644
--- a/sys-cluster/wxparaver/wxparaver-4.9.0-r1.ebuild
+++ b/sys-cluster/wxparaver/wxparaver-4.9.0-r1.ebuild
@@ -27,6 +27,7 @@ RDEPEND="
 	dev-libs/boost:=
 	dev-libs/openssl
 	sys-cluster/paraver-kernel
+	x11-libs/wxGTK:${WX_GTK_VER}
 
 	extrae? ( sys-cluster/extrae )
 "


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

* [gentoo-commits] repo/proj/guru:dev commit in: sys-cluster/wxparaver/
@ 2022-03-26  7:36 Alessandro Barbieri
  0 siblings, 0 replies; 7+ messages in thread
From: Alessandro Barbieri @ 2022-03-26  7:36 UTC (permalink / raw
  To: gentoo-commits

commit:     4b5645043bb287b5de846561ed26bba2a6993cca
Author:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Sat Mar 26 07:14:57 2022 +0000
Commit:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
CommitDate: Sat Mar 26 07:14:57 2022 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=4b564504

sys-cluster/wxparaver: add 4.10.0

Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>

 sys-cluster/wxparaver/Manifest                |   1 +
 sys-cluster/wxparaver/metadata.xml            |   9 +++
 sys-cluster/wxparaver/wxparaver-4.10.0.ebuild | 102 ++++++++++++++++++++++++++
 3 files changed, 112 insertions(+)

diff --git a/sys-cluster/wxparaver/Manifest b/sys-cluster/wxparaver/Manifest
index 525f910b2..000019fd0 100644
--- a/sys-cluster/wxparaver/Manifest
+++ b/sys-cluster/wxparaver/Manifest
@@ -1 +1,2 @@
+DIST wxparaver-4.10.0.tar.gz 1066884 BLAKE2B 030fb769c94e7c15c337df2d06d135a1d2e9d37593907eab6f8df82d3532b67827d2f6728a2db539c2eec8cd57ebe444271527250ebfb80db6d79a4ba33ba716 SHA512 d8ff40c7423321da34e078b25c7777c30a5ae76618f16ff715caa308a5e44cdd702c99a902bc761999323575a47d497b94ab23d8943461a093f49dc2451365ab
 DIST wxparaver-4.9.0.tar.gz 1045366 BLAKE2B 297e49160ce23591257002763025359a4269a3691b094b90d8a8f8fa648998cbbca068853a1e22ed878f68e786b5e8145c14c0bb2c95e4e05fecc01fa79e48a2 SHA512 b0b2cf4383549fc48f34cd3c754c6614798512ab712fa7c728ce20c4536768227625ea5b6b641746fc1780dd354a6da7cfecc48e8f19ecc9cdb9eddcb93c501d

diff --git a/sys-cluster/wxparaver/metadata.xml b/sys-cluster/wxparaver/metadata.xml
index 2b71a9da3..59dc7043b 100644
--- a/sys-cluster/wxparaver/metadata.xml
+++ b/sys-cluster/wxparaver/metadata.xml
@@ -14,4 +14,13 @@
 		<bugs-to>https://github.com/bsc-performance-tools/wxparaver/issues</bugs-to>
 		<remote-id type="github">bsc-performance-tools/wxparaver</remote-id>
 	</upstream>
+	<longdescription lang="en">
+Paraver is a performance analyzer based on event traces with a great
+flexibility to explore the collected data, supporting a detailed analysis of
+the variability and distribution of multiple metrics with the objective of
+understanding the application’s behavior. Paraver has two main views: The
+timeline view displays the application behavior over time, while the statistics
+view (histograms, profiles) complements the analysis with distribution
+of metrics.
+	</longdescription>
 </pkgmetadata>

diff --git a/sys-cluster/wxparaver/wxparaver-4.10.0.ebuild b/sys-cluster/wxparaver/wxparaver-4.10.0.ebuild
new file mode 100644
index 000000000..84094fe3d
--- /dev/null
+++ b/sys-cluster/wxparaver/wxparaver-4.10.0.ebuild
@@ -0,0 +1,102 @@
+# Copyright 2019-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+COMMIT="f357545a2fdfc7674394f2e6192022a4c2139f63"
+DOCS_AUTODOC=0
+DOCS_BUILDER="sphinx"
+DOCS_DIR="docs/wxparaver_help_contents/sphinx/2.paraver_toolset/source"
+PYTHON_COMPAT=( python3_{8..10} pypy3 )
+WX_GTK_VER="3.0-gtk3"
+
+inherit autotools python-any-r1 docs wxwidgets
+
+DESCRIPTION="Performance analyzer based on event traces"
+HOMEPAGE="
+	http://tools.bsc.es/paraver
+	https://github.com/bsc-performance-tools/wxparaver
+"
+SRC_URI="https://github.com/bsc-performance-tools/wxparaver/archive/${COMMIT}.tar.gz -> ${PF}.tar.gz"
+S="${WORKDIR}/${P}-${COMMIT}"
+
+LICENSE="LGPL-2.1"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="extrae ompss openmp"
+
+RDEPEND="
+	dev-libs/boost:=
+	dev-libs/openssl
+	sys-cluster/paraver-kernel
+	x11-libs/wxGTK:${WX_GTK_VER}
+
+	extrae? ( sys-cluster/extrae )
+"
+DEPEND="${RDEPEND}"
+BDEPEND="app-admin/chrpath"
+
+DOCS=( README NEWS AUTHORS ChangeLog )
+
+src_unpack() {
+	default
+	gzip -d "${S}/docs/wxparaver_help_contents/install/man/paraver-toolset.1.gz" || die
+}
+
+src_prepare() {
+	default
+	eautoreconf
+}
+
+src_configure() {
+	setup-wxwidgets
+
+	local myconf=(
+		--disable-old-pcfparser
+		--with-boost="${EPREFIX}/usr"
+		--with-boost-libdir="${EPREFIX}/usr/$(get_libdir)"
+		--with-debug-level=none
+		--with-openssl="${EPREFIX}/usr"
+		--with-paraver="${EPREFIX}/usr"
+
+		$(use_enable ompss)
+		$(use_enable openmp)
+	)
+
+	if use extrae; then
+		myconf+=( "--with-extrae=${EPREFIX}/usr" )
+	else
+		myconf+=( "--without-extrae" )
+	fi
+
+	econf "${myconf[@]}" || die
+}
+
+src_compile() {
+	default
+	docs_compile
+}
+
+src_install() {
+	# only a part of the docs can be built from source
+	if use doc; then
+		# remove a part of the prebuilt docs
+		rm -r "${S}/docs/wxparaver_help_contents/install/html/2.paraver_toolset" || die
+		# replace them with the newly built docs
+		mv "${S}/_build/html" "${S}/docs/wxparaver_help_contents/install/html/2.paraver_toolset" || die
+		# ideally this is the manpage just built from sphinx but I'm not sure it really is
+		doman "${S}/docs/wxparaver_help_contents/sphinx/2.paraver_toolset/build/man/paraver-toolset.1"
+	else
+		# install the prebuilt manpage
+		doman "${S}/docs/wxparaver_help_contents/install/man/paraver-toolset.1"
+	fi
+	# override eclass variable
+	unset HTML_DOCS
+	HTML_DOCS=( docs/wxparaver_help_contents/install/html/. )
+
+	default
+
+	rm -r "${ED}/usr/share/doc/wxparaver_help_contents" || die
+	chrpath -d "${ED}/usr/bin/wxparaver.bin" || die
+#	find "${ED}" -name '*.la' -delete || die
+}


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

* [gentoo-commits] repo/proj/guru:dev commit in: sys-cluster/wxparaver/
@ 2022-03-27  7:30 Alessandro Barbieri
  0 siblings, 0 replies; 7+ messages in thread
From: Alessandro Barbieri @ 2022-03-27  7:30 UTC (permalink / raw
  To: gentoo-commits

commit:     42689b0d58d4bd29c9cff5f80db87ba1332c2d1a
Author:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Sun Mar 27 07:29:15 2022 +0000
Commit:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
CommitDate: Sun Mar 27 07:30:46 2022 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=42689b0d

asys-cluster/wxparaver: fix S

Closes: https://bugs.gentoo.org/836222
Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>

 sys-cluster/wxparaver/wxparaver-4.10.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-cluster/wxparaver/wxparaver-4.10.0.ebuild b/sys-cluster/wxparaver/wxparaver-4.10.0.ebuild
index 84094fe3d..fcf95c327 100644
--- a/sys-cluster/wxparaver/wxparaver-4.10.0.ebuild
+++ b/sys-cluster/wxparaver/wxparaver-4.10.0.ebuild
@@ -18,7 +18,7 @@ HOMEPAGE="
 	https://github.com/bsc-performance-tools/wxparaver
 "
 SRC_URI="https://github.com/bsc-performance-tools/wxparaver/archive/${COMMIT}.tar.gz -> ${PF}.tar.gz"
-S="${WORKDIR}/${P}-${COMMIT}"
+S="${WORKDIR}/${PN}-${COMMIT}"
 
 LICENSE="LGPL-2.1"
 SLOT="0"


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

* [gentoo-commits] repo/proj/guru:dev commit in: sys-cluster/wxparaver/
@ 2022-05-28 12:53 Alessandro Barbieri
  0 siblings, 0 replies; 7+ messages in thread
From: Alessandro Barbieri @ 2022-05-28 12:53 UTC (permalink / raw
  To: gentoo-commits

commit:     aae66a322cf3bc3c840042c27d60e31a2ffa93b7
Author:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Sat May 28 12:44:49 2022 +0000
Commit:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
CommitDate: Sat May 28 12:53:32 2022 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=aae66a32

sys-cluster/wxparaver: enable py3.11

Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>

 sys-cluster/wxparaver/wxparaver-4.10.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-cluster/wxparaver/wxparaver-4.10.0.ebuild b/sys-cluster/wxparaver/wxparaver-4.10.0.ebuild
index fcf95c327..ba925bcef 100644
--- a/sys-cluster/wxparaver/wxparaver-4.10.0.ebuild
+++ b/sys-cluster/wxparaver/wxparaver-4.10.0.ebuild
@@ -7,7 +7,7 @@ COMMIT="f357545a2fdfc7674394f2e6192022a4c2139f63"
 DOCS_AUTODOC=0
 DOCS_BUILDER="sphinx"
 DOCS_DIR="docs/wxparaver_help_contents/sphinx/2.paraver_toolset/source"
-PYTHON_COMPAT=( python3_{8..10} pypy3 )
+PYTHON_COMPAT=( python3_{8..11} pypy3 )
 WX_GTK_VER="3.0-gtk3"
 
 inherit autotools python-any-r1 docs wxwidgets


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

* [gentoo-commits] repo/proj/guru:dev commit in: sys-cluster/wxparaver/
@ 2022-06-07 17:43 Alessandro Barbieri
  0 siblings, 0 replies; 7+ messages in thread
From: Alessandro Barbieri @ 2022-06-07 17:43 UTC (permalink / raw
  To: gentoo-commits

commit:     77022499c50b0f9688fb9f3b71880137036c3b84
Author:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Tue Jun  7 17:43:00 2022 +0000
Commit:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
CommitDate: Tue Jun  7 17:43:22 2022 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=77022499

sys-cluster/wxparaver: new version

Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>

 sys-cluster/wxparaver/Manifest                     |   3 +-
 ...raver-4.10.0.ebuild => wxparaver-4.10.1.ebuild} |   7 +-
 sys-cluster/wxparaver/wxparaver-4.9.0-r1.ebuild    | 100 ---------------------
 3 files changed, 4 insertions(+), 106 deletions(-)

diff --git a/sys-cluster/wxparaver/Manifest b/sys-cluster/wxparaver/Manifest
index 000019fd0..2782704bc 100644
--- a/sys-cluster/wxparaver/Manifest
+++ b/sys-cluster/wxparaver/Manifest
@@ -1,2 +1 @@
-DIST wxparaver-4.10.0.tar.gz 1066884 BLAKE2B 030fb769c94e7c15c337df2d06d135a1d2e9d37593907eab6f8df82d3532b67827d2f6728a2db539c2eec8cd57ebe444271527250ebfb80db6d79a4ba33ba716 SHA512 d8ff40c7423321da34e078b25c7777c30a5ae76618f16ff715caa308a5e44cdd702c99a902bc761999323575a47d497b94ab23d8943461a093f49dc2451365ab
-DIST wxparaver-4.9.0.tar.gz 1045366 BLAKE2B 297e49160ce23591257002763025359a4269a3691b094b90d8a8f8fa648998cbbca068853a1e22ed878f68e786b5e8145c14c0bb2c95e4e05fecc01fa79e48a2 SHA512 b0b2cf4383549fc48f34cd3c754c6614798512ab712fa7c728ce20c4536768227625ea5b6b641746fc1780dd354a6da7cfecc48e8f19ecc9cdb9eddcb93c501d
+DIST wxparaver-4.10.1.gh.tar.gz 1076792 BLAKE2B 153b632c8c21ab18f10953f6b70d012dae455de533d37b5b3a6378a36132968be6f7497ba967a41cc3dfb0d3c874b3b0fb12602b5cdf2190b5a487f98e16d1cc SHA512 38362a31c335beb030a3240ef3716364d446c937b6c6a8659611f907c6fa7b8d55d39eedc5763e31ddd666c358a25d6a5fa780fdc40baa415f1d5aaf68893316

diff --git a/sys-cluster/wxparaver/wxparaver-4.10.0.ebuild b/sys-cluster/wxparaver/wxparaver-4.10.1.ebuild
similarity index 92%
rename from sys-cluster/wxparaver/wxparaver-4.10.0.ebuild
rename to sys-cluster/wxparaver/wxparaver-4.10.1.ebuild
index ba925bcef..fff87ba54 100644
--- a/sys-cluster/wxparaver/wxparaver-4.10.0.ebuild
+++ b/sys-cluster/wxparaver/wxparaver-4.10.1.ebuild
@@ -3,7 +3,6 @@
 
 EAPI=8
 
-COMMIT="f357545a2fdfc7674394f2e6192022a4c2139f63"
 DOCS_AUTODOC=0
 DOCS_BUILDER="sphinx"
 DOCS_DIR="docs/wxparaver_help_contents/sphinx/2.paraver_toolset/source"
@@ -17,8 +16,8 @@ HOMEPAGE="
 	http://tools.bsc.es/paraver
 	https://github.com/bsc-performance-tools/wxparaver
 "
-SRC_URI="https://github.com/bsc-performance-tools/wxparaver/archive/${COMMIT}.tar.gz -> ${PF}.tar.gz"
-S="${WORKDIR}/${PN}-${COMMIT}"
+SRC_URI="https://github.com/bsc-performance-tools/${PN}/archive/v${PV}.tar.gz -> ${P}.gh.tar.gz"
+#S="${WORKDIR}/${PN}-${COMMIT}"
 
 LICENSE="LGPL-2.1"
 SLOT="0"
@@ -27,7 +26,7 @@ IUSE="extrae ompss openmp"
 
 RDEPEND="
 	dev-libs/boost:=
-	dev-libs/openssl
+	dev-libs/openssl:=
 	sys-cluster/paraver-kernel
 	x11-libs/wxGTK:${WX_GTK_VER}
 

diff --git a/sys-cluster/wxparaver/wxparaver-4.9.0-r1.ebuild b/sys-cluster/wxparaver/wxparaver-4.9.0-r1.ebuild
deleted file mode 100644
index 7cd953a9a..000000000
--- a/sys-cluster/wxparaver/wxparaver-4.9.0-r1.ebuild
+++ /dev/null
@@ -1,100 +0,0 @@
-# Copyright 2019-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DOCS_AUTODOC=0
-DOCS_BUILDER="sphinx"
-DOCS_DIR="docs/wxparaver_help_contents/sphinx/2.paraver_toolset/source"
-PYTHON_COMPAT=( python3_{8..10} pypy3 )
-WX_GTK_VER="3.0-gtk3"
-
-inherit autotools python-any-r1 docs wxwidgets
-
-DESCRIPTION="paraver gui"
-HOMEPAGE="
-	http://tools.bsc.es/paraver
-	https://github.com/bsc-performance-tools/wxparaver
-"
-SRC_URI="https://github.com/bsc-performance-tools/wxparaver/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="extrae ompss openmp"
-
-RDEPEND="
-	dev-libs/boost:=
-	dev-libs/openssl
-	sys-cluster/paraver-kernel
-	x11-libs/wxGTK:${WX_GTK_VER}
-
-	extrae? ( sys-cluster/extrae )
-"
-DEPEND="${RDEPEND}"
-BDEPEND="app-admin/chrpath"
-
-DOCS=( README NEWS AUTHORS ChangeLog )
-
-src_unpack() {
-	default
-	gzip -d "${S}/docs/wxparaver_help_contents/install/man/paraver-toolset.1.gz" || die
-}
-
-src_prepare() {
-	default
-	eautoreconf
-}
-
-src_configure() {
-	setup-wxwidgets
-
-	local myconf=(
-		--disable-old-pcfparser
-		--with-boost="${EPREFIX}/usr"
-		--with-boost-libdir="${EPREFIX}/usr/$(get_libdir)"
-		--with-debug-level=none
-		--with-openssl="${EPREFIX}/usr"
-		--with-paraver="${EPREFIX}/usr"
-
-		$(use_enable ompss)
-		$(use_enable openmp)
-	)
-
-	if use extrae; then
-		myconf+=( "--with-extrae=${EPREFIX}/usr" )
-	else
-		myconf+=( "--without-extrae" )
-	fi
-
-	econf "${myconf[@]}" || die
-}
-
-src_compile() {
-	default
-	docs_compile
-}
-
-src_install() {
-	# only a part of the docs can be built from source
-	if use doc; then
-		# remove a part of the prebuilt docs
-		rm -r "${S}/docs/wxparaver_help_contents/install/html/2.paraver_toolset" || die
-		# replace them with the newly built docs
-		mv "${S}/_build/html" "${S}/docs/wxparaver_help_contents/install/html/2.paraver_toolset" || die
-		# ideally this is the manpage just built from sphinx but I'm not sure it really is
-		doman "${S}/docs/wxparaver_help_contents/sphinx/2.paraver_toolset/build/man/paraver-toolset.1"
-	else
-		# install the prebuilt manpage
-		doman "${S}/docs/wxparaver_help_contents/install/man/paraver-toolset.1"
-	fi
-	# override eclass variable
-	unset HTML_DOCS
-	HTML_DOCS=( docs/wxparaver_help_contents/install/html/. )
-
-	default
-
-	rm -r "${ED}/usr/share/doc/wxparaver_help_contents" || die
-	chrpath -d "${ED}/usr/bin/wxparaver.bin" || die
-#	find "${ED}" -name '*.la' -delete || die
-}


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

end of thread, other threads:[~2022-06-07 17:43 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-08-31  6:08 [gentoo-commits] repo/proj/guru:dev commit in: sys-cluster/wxparaver/ Alessandro Barbieri
  -- strict thread matches above, loose matches on Subject: below --
2021-08-31  7:45 Alessandro Barbieri
2021-09-07 15:38 Alessandro Barbieri
2022-03-26  7:36 Alessandro Barbieri
2022-03-27  7:30 Alessandro Barbieri
2022-05-28 12:53 Alessandro Barbieri
2022-06-07 17:43 Alessandro Barbieri

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