public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: sci-physics/fastjet/
@ 2024-03-18 10:56 Andrew Ammerlaan
  0 siblings, 0 replies; 9+ messages in thread
From: Andrew Ammerlaan @ 2024-03-18 10:56 UTC (permalink / raw
  To: gentoo-commits

commit:     f7782c47023aefb5d02ad1d54fcd6c99296025e3
Author:     Alexander Puck Neuwirth <alexander <AT> neuwirth-informatik <DOT> de>
AuthorDate: Sun Mar 17 21:01:58 2024 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
CommitDate: Mon Mar 18 10:56:38 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f7782c47

sci-physics/fastjet: add 3.4.2

Signed-off-by: Alexander Puck Neuwirth <alexander <AT> neuwirth-informatik.de>
Closes: https://github.com/gentoo/gentoo/pull/35809
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> gentoo.org>

 sci-physics/fastjet/Manifest             |  1 +
 sci-physics/fastjet/fastjet-3.4.2.ebuild | 84 ++++++++++++++++++++++++++++++++
 2 files changed, 85 insertions(+)

diff --git a/sci-physics/fastjet/Manifest b/sci-physics/fastjet/Manifest
index 451a2ca64920..4616587b1dd2 100644
--- a/sci-physics/fastjet/Manifest
+++ b/sci-physics/fastjet/Manifest
@@ -1 +1,2 @@
 DIST fastjet-3.4.0.tar.gz 2959127 BLAKE2B c99e89ee5cea3fd4e3edebdfebb50efd3c58e7ab15215a384c44120ac930882bd2d4e446b61977fe65dcc49056b958c6510abb7c5889024ae49776b1955bd023 SHA512 af8aeb6197f6bd82ec5f127647f49cd5d455c20e614c23d928b850fc97bc12c70cf6e3b09f1bb0308c2a080fcd4fa13416eea0195695060efaa0e400a687d7b7
+DIST fastjet-3.4.2.tar.gz 2973605 BLAKE2B f51b26fdb2611084679a79905c6da460edcf3ad3139bdb2384fe95600e474f4bdb028b24c43456e018c5fb9535491c929d1ec2032d184536efd6b2ef16d54ae1 SHA512 e7702699e67ba5af73f1fe931fe5f67b9f52bb2f0cfdc57dbacf408741e6271ed160503fe6142c92621287df49b441ce7562af589353b199fed09a4c4c839f3f

diff --git a/sci-physics/fastjet/fastjet-3.4.2.ebuild b/sci-physics/fastjet/fastjet-3.4.2.ebuild
new file mode 100644
index 000000000000..b090ff59f0e8
--- /dev/null
+++ b/sci-physics/fastjet/fastjet-3.4.2.ebuild
@@ -0,0 +1,84 @@
+# Copyright 2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+FORTRAN_NEEDED=plugins
+PYTHON_COMPAT=( python3_{10..12} )
+DOCS_BUILDER="doxygen"
+DOCS_DEPEND="
+	media-gfx/graphviz
+	media-libs/freetype
+	virtual/latex-base
+"
+
+inherit autotools docs flag-o-matic fortran-2 python-single-r1
+
+DESCRIPTION="A software package for jet finding in pp and e+e- collisions"
+HOMEPAGE="https://fastjet.fr/"
+SRC_URI="https://fastjet.fr/repo/${P}.tar.gz"
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="cgal examples python +plugins"
+REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
+
+# cgal is header-only in version 5.4 and up. We need to use the
+# special --enable-cgal-header-only argument to use these versions.
+DEPEND="
+	cgal? ( >=sci-mathematics/cgal-5.4:=[shared(+)] )
+	plugins? ( sci-physics/siscone:= )
+	python? ( ${PYTHON_DEPS} )
+"
+RDEPEND="${DEPEND}"
+BDEPEND="app-shells/bash"
+
+PATCHES=(
+	"${FILESDIR}"/${PN}-3.4.0-system-siscone.patch
+	"${FILESDIR}"/${PN}-3.4.0-gfortran.patch
+)
+
+pkg_setup() {
+	use python && python-single-r1_pkg_setup
+}
+
+src_prepare() {
+	default
+	eautoreconf
+}
+
+src_configure() {
+	use cgal && \
+		has_version 'sci-mathematics/cgal[gmp]' && append-libs -lgmp
+	# only bash compatible
+	sed -i 's#/bin/sh#/bin/bash#g' ./configure || die
+	econf \
+		$(use_enable cgal cgal-header-only) \
+		$(use_enable plugins allplugins) \
+		$(use_enable plugins allcxxplugins) \
+		--enable-shared \
+		--enable-static=no \
+		--disable-static \
+		--disable-auto-ptr  \
+		$(use_enable python pyext)
+}
+
+src_compile() {
+	default
+	docs_compile
+}
+
+src_install() {
+	default
+	use python && python_optimize
+	if use examples; then
+		emake -C example maintainer-clean
+		find example -iname 'makefile*' -delete || die
+
+		docinto examples
+		dodoc -r example/.
+		docompress -x /usr/share/doc/${PF}/examples
+	fi
+	find "${ED}" -name '*.la' -delete || die
+}


^ permalink raw reply related	[flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-physics/fastjet/
@ 2022-07-22 20:57 Andrew Ammerlaan
  0 siblings, 0 replies; 9+ messages in thread
From: Andrew Ammerlaan @ 2022-07-22 20:57 UTC (permalink / raw
  To: gentoo-commits

commit:     4015df1a6b7f3fcb28f847833ac659ee1a6b4be1
Author:     Alexander Puck Neuwirth <alexander <AT> neuwirth-informatik <DOT> de>
AuthorDate: Fri Jul 22 15:24:41 2022 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
CommitDate: Fri Jul 22 20:56:51 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4015df1a

sci-physics/fastjet: doc needs latex

Closes: https://bugs.gentoo.org/860042
Signed-off-by: Alexander Puck Neuwirth <alexander <AT> neuwirth-informatik.de>
Closes: https://github.com/gentoo/gentoo/pull/26520
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> gentoo.org>

 sci-physics/fastjet/fastjet-3.4.0-r1.ebuild | 1 +
 sci-physics/fastjet/fastjet-3.4.0.ebuild    | 1 +
 2 files changed, 2 insertions(+)

diff --git a/sci-physics/fastjet/fastjet-3.4.0-r1.ebuild b/sci-physics/fastjet/fastjet-3.4.0-r1.ebuild
index d35057476e08..530a7302df44 100644
--- a/sci-physics/fastjet/fastjet-3.4.0-r1.ebuild
+++ b/sci-physics/fastjet/fastjet-3.4.0-r1.ebuild
@@ -9,6 +9,7 @@ DOCS_BUILDER="doxygen"
 DOCS_DEPEND="
 	media-gfx/graphviz
 	media-libs/freetype
+	virtual/latex-base
 "
 
 inherit autotools docs flag-o-matic fortran-2 python-single-r1

diff --git a/sci-physics/fastjet/fastjet-3.4.0.ebuild b/sci-physics/fastjet/fastjet-3.4.0.ebuild
index f114cdf358f0..a190b2a60f8f 100644
--- a/sci-physics/fastjet/fastjet-3.4.0.ebuild
+++ b/sci-physics/fastjet/fastjet-3.4.0.ebuild
@@ -9,6 +9,7 @@ DOCS_BUILDER="doxygen"
 DOCS_DEPEND="
 	media-gfx/graphviz
 	media-libs/freetype
+	virtual/latex-base
 "
 
 inherit autotools docs flag-o-matic fortran-2 python-single-r1


^ permalink raw reply related	[flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-physics/fastjet/
@ 2022-07-22 20:37 Andrew Ammerlaan
  0 siblings, 0 replies; 9+ messages in thread
From: Andrew Ammerlaan @ 2022-07-22 20:37 UTC (permalink / raw
  To: gentoo-commits

commit:     b2d04b525de8e18083fd96d02b3ca700b1e64e76
Author:     Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
AuthorDate: Fri Jul 22 20:36:21 2022 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
CommitDate: Fri Jul 22 20:37:50 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b2d04b52

sci-physics/fastjet: fix USE="cgal" with versions 5.4 and up

Closes: https://bugs.gentoo.org/851912
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> gentoo.org>

 sci-physics/fastjet/fastjet-3.4.0-r1.ebuild | 77 +++++++++++++++++++++++++++++
 1 file changed, 77 insertions(+)

diff --git a/sci-physics/fastjet/fastjet-3.4.0-r1.ebuild b/sci-physics/fastjet/fastjet-3.4.0-r1.ebuild
new file mode 100644
index 000000000000..d35057476e08
--- /dev/null
+++ b/sci-physics/fastjet/fastjet-3.4.0-r1.ebuild
@@ -0,0 +1,77 @@
+# Copyright 2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+FORTRAN_NEEDED=plugins
+PYTHON_COMPAT=( python3_{8..11} )
+DOCS_BUILDER="doxygen"
+DOCS_DEPEND="
+	media-gfx/graphviz
+	media-libs/freetype
+"
+
+inherit autotools docs flag-o-matic fortran-2 python-single-r1
+
+DESCRIPTION="A software package for jet finding in pp and e+e- collisions"
+HOMEPAGE="https://fastjet.fr/"
+SRC_URI="https://fastjet.fr/repo/${P}.tar.gz"
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="cgal examples python +plugins"
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+# cgal is header-only in version 5.4 and up. We need to use the
+# special --enable-cgal-header-only argument to use these versions.
+DEPEND="
+	cgal? ( >=sci-mathematics/cgal-5.4:=[shared(+)] )
+	plugins? ( sci-physics/siscone:= )
+	python? ( ${PYTHON_DEPS} )
+"
+RDEPEND="${DEPEND}"
+BDEPEND="virtual/fortran"
+
+PATCHES=(
+	"${FILESDIR}"/${P}-system-siscone.patch
+	"${FILESDIR}"/${P}-gfortran.patch
+)
+
+src_prepare() {
+	default
+	eautoreconf
+}
+
+src_configure() {
+	use cgal && \
+		has_version 'sci-mathematics/cgal[gmp]' && append-libs -lgmp
+
+	econf \
+		$(use_enable cgal cgal-header-only) \
+		$(use_enable plugins allplugins) \
+		$(use_enable plugins allcxxplugins) \
+		--enable-shared \
+		--enable-static=no \
+		--disable-static \
+		--disable-auto-ptr  \
+		$(use_enable python pyext)
+}
+
+src_compile() {
+	default
+	docs_compile
+}
+
+src_install() {
+	default
+	if use examples; then
+		emake -C example maintainer-clean
+		find example -iname 'makefile*' -delete || die
+
+		docinto examples
+		dodoc -r example/.
+		docompress -x /usr/share/doc/${PF}/examples
+	fi
+	find "${ED}" -name '*.la' -delete || die
+}


^ permalink raw reply related	[flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-physics/fastjet/
@ 2022-07-22  9:42 Andrew Ammerlaan
  0 siblings, 0 replies; 9+ messages in thread
From: Andrew Ammerlaan @ 2022-07-22  9:42 UTC (permalink / raw
  To: gentoo-commits

commit:     03033a9c9ffc67e6722c715340e678efed3b0828
Author:     Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
AuthorDate: Fri Jul 22 09:41:08 2022 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
CommitDate: Fri Jul 22 09:42:45 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=03033a9c

sci-physics/fastjet: depend on cgal<5.3

cgal versions newer then 5.2 do not install the shared
libraries that this package looks for in the configure phase
even with USE="shared"

Bug: https://bugs.gentoo.org/851912
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> gentoo.org>

 sci-physics/fastjet/fastjet-3.0.6-r3.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sci-physics/fastjet/fastjet-3.0.6-r3.ebuild b/sci-physics/fastjet/fastjet-3.0.6-r3.ebuild
index 083818379ede..b62fa18aba46 100644
--- a/sci-physics/fastjet/fastjet-3.0.6-r3.ebuild
+++ b/sci-physics/fastjet/fastjet-3.0.6-r3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -17,7 +17,7 @@ KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
 IUSE="cgal doc examples +plugins"
 
 RDEPEND="
-	cgal? ( sci-mathematics/cgal:=[shared(+)] )
+	cgal? ( <sci-mathematics/cgal-5.3:=[shared(+)] )
 	plugins? ( sci-physics/siscone:= )"
 DEPEND="${RDEPEND}"
 BDEPEND="doc? ( app-doc/doxygen[dot] )"


^ permalink raw reply related	[flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-physics/fastjet/
@ 2021-07-07 17:48 Joonas Niilola
  0 siblings, 0 replies; 9+ messages in thread
From: Joonas Niilola @ 2021-07-07 17:48 UTC (permalink / raw
  To: gentoo-commits

commit:     9adab15e6551d48f8ec79c05bbe43b861b33d269
Author:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
AuthorDate: Wed Jul  7 17:44:06 2021 +0000
Commit:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Wed Jul  7 17:48:29 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9adab15e

sci-physics/fastjet: revbump to match new cgal[shared] config

Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>

 .../fastjet/{fastjet-3.0.6-r2.ebuild => fastjet-3.0.6-r3.ebuild}        | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sci-physics/fastjet/fastjet-3.0.6-r2.ebuild b/sci-physics/fastjet/fastjet-3.0.6-r3.ebuild
similarity index 96%
rename from sci-physics/fastjet/fastjet-3.0.6-r2.ebuild
rename to sci-physics/fastjet/fastjet-3.0.6-r3.ebuild
index 59084ef062c..083818379ed 100644
--- a/sci-physics/fastjet/fastjet-3.0.6-r2.ebuild
+++ b/sci-physics/fastjet/fastjet-3.0.6-r3.ebuild
@@ -17,7 +17,7 @@ KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
 IUSE="cgal doc examples +plugins"
 
 RDEPEND="
-	cgal? ( sci-mathematics/cgal:= )
+	cgal? ( sci-mathematics/cgal:=[shared(+)] )
 	plugins? ( sci-physics/siscone:= )"
 DEPEND="${RDEPEND}"
 BDEPEND="doc? ( app-doc/doxygen[dot] )"


^ permalink raw reply related	[flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-physics/fastjet/
@ 2021-05-19 22:41 Andrew Savchenko
  0 siblings, 0 replies; 9+ messages in thread
From: Andrew Savchenko @ 2021-05-19 22:41 UTC (permalink / raw
  To: gentoo-commits

commit:     9032b73ff8422d412dc33a05f9cdabe889bb003f
Author:     Andrew Savchenko <bircoph <AT> gentoo <DOT> org>
AuthorDate: Wed May 19 22:40:26 2021 +0000
Commit:     Andrew Savchenko <bircoph <AT> gentoo <DOT> org>
CommitDate: Wed May 19 22:40:26 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9032b73f

sci-physics/fastjet: fix build with dash as /bin/sh

configure.ac is full of bash-specific code, so request /bin/bash as
configure shell explicitly.

Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Andrew Savchenko <bircoph <AT> gentoo.org>

 sci-physics/fastjet/fastjet-3.0.6-r2.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/sci-physics/fastjet/fastjet-3.0.6-r2.ebuild b/sci-physics/fastjet/fastjet-3.0.6-r2.ebuild
index c6472206f84..59084ef062c 100644
--- a/sci-physics/fastjet/fastjet-3.0.6-r2.ebuild
+++ b/sci-physics/fastjet/fastjet-3.0.6-r2.ebuild
@@ -33,6 +33,7 @@ src_configure() {
 	use cgal && \
 		has_version 'sci-mathematics/cgal[gmp]' && append-libs -lgmp
 
+	CONFIG_SHELL="${EPREFIX}/bin/bash" \
 	econf \
 		--disable-static \
 		$(use_enable cgal) \


^ permalink raw reply related	[flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-physics/fastjet/
@ 2021-05-13 16:12 Ulrich Müller
  0 siblings, 0 replies; 9+ messages in thread
From: Ulrich Müller @ 2021-05-13 16:12 UTC (permalink / raw
  To: gentoo-commits

commit:     9fb8bd45513d52d1a2e2afcad2c8992da61288b1
Author:     Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Wed May 12 11:00:17 2021 +0000
Commit:     Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Thu May 13 16:12:12 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9fb8bd45

sci-physics/fastjet: Update LICENSE

This appears to be licensed under GPL-2+, not QPL.

Bug: https://bugs.gentoo.org/789666
Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>

 .../fastjet/{fastjet-3.0.6-r1.ebuild => fastjet-3.0.6-r2.ebuild}        | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sci-physics/fastjet/fastjet-3.0.6-r1.ebuild b/sci-physics/fastjet/fastjet-3.0.6-r2.ebuild
similarity index 98%
rename from sci-physics/fastjet/fastjet-3.0.6-r1.ebuild
rename to sci-physics/fastjet/fastjet-3.0.6-r2.ebuild
index b5cfe12ace3..c6472206f84 100644
--- a/sci-physics/fastjet/fastjet-3.0.6-r1.ebuild
+++ b/sci-physics/fastjet/fastjet-3.0.6-r2.ebuild
@@ -11,7 +11,7 @@ DESCRIPTION="Fast implementation of several recombination jet algorithms"
 HOMEPAGE="http://www.fastjet.fr/"
 SRC_URI="http://www.fastjet.fr/repo/${P}.tar.gz"
 
-LICENSE="GPL-2 QPL"
+LICENSE="GPL-2+"
 SLOT="0"
 KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
 IUSE="cgal doc examples +plugins"


^ permalink raw reply related	[flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-physics/fastjet/
@ 2021-03-20 12:12 David Seifert
  0 siblings, 0 replies; 9+ messages in thread
From: David Seifert @ 2021-03-20 12:12 UTC (permalink / raw
  To: gentoo-commits

commit:     836a2916760428bd6c9649f6f8559ecd42b35da7
Author:     David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 20 12:12:30 2021 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Sat Mar 20 12:12:30 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=836a2916

sci-physics/fastjet: Port to EAPI 7

Package-Manager: Portage-3.0.17, Repoman-3.0.2
Signed-off-by: David Seifert <soap <AT> gentoo.org>

 sci-physics/fastjet/fastjet-3.0.6-r1.ebuild | 56 +++++++++++++++++------------
 1 file changed, 34 insertions(+), 22 deletions(-)

diff --git a/sci-physics/fastjet/fastjet-3.0.6-r1.ebuild b/sci-physics/fastjet/fastjet-3.0.6-r1.ebuild
index a7fec572825..b5cfe12ace3 100644
--- a/sci-physics/fastjet/fastjet-3.0.6-r1.ebuild
+++ b/sci-physics/fastjet/fastjet-3.0.6-r1.ebuild
@@ -1,12 +1,11 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=5
+EAPI=7
 
 FORTRAN_NEEDED=plugins
-AUTOTOOLS_AUTORECONF=1
 
-inherit autotools-utils fortran-2 flag-o-matic
+inherit autotools flag-o-matic fortran-2
 
 DESCRIPTION="Fast implementation of several recombination jet algorithms"
 HOMEPAGE="http://www.fastjet.fr/"
@@ -15,40 +14,53 @@ SRC_URI="http://www.fastjet.fr/repo/${P}.tar.gz"
 LICENSE="GPL-2 QPL"
 SLOT="0"
 KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
-IUSE="cgal doc examples +plugins static-libs"
+IUSE="cgal doc examples +plugins"
 
-RDEPEND="cgal? ( sci-mathematics/cgal )"
-DEPEND="${RDEPEND}
-	doc? ( app-doc/doxygen[dot] )
-	plugins? ( sci-physics/siscone:0= )"
+RDEPEND="
+	cgal? ( sci-mathematics/cgal:= )
+	plugins? ( sci-physics/siscone:= )"
+DEPEND="${RDEPEND}"
+BDEPEND="doc? ( app-doc/doxygen[dot] )"
 
 PATCHES=( "${FILESDIR}"/${P}-system-siscone.patch )
 
+src_prepare() {
+	default
+	eautoreconf
+}
+
 src_configure() {
 	use cgal && \
-		has_version sci-mathematics/cgal[gmp] && append-ldflags -lgmp
-	local myeconfargs=(
-		$(use_enable cgal)
-		$(use_enable plugins allplugins)
+		has_version 'sci-mathematics/cgal[gmp]' && append-libs -lgmp
+
+	econf \
+		--disable-static \
+		$(use_enable cgal) \
+		$(use_enable plugins allplugins) \
 		$(use_enable plugins allcxxplugins)
-	)
-	autotools-utils_src_configure
 }
 
 src_compile() {
-	autotools-utils_src_compile
+	default
+
 	if use doc; then
 		doxygen Doxyfile || die
+		HTML_DOCS=( html/. )
 	fi
 }
 
 src_install() {
-	autotools-utils_src_install
-	use doc && dohtml -r html/*
+	default
+
 	if use examples; then
-		insinto /usr/share/doc/${PF}
-		find example \
-			-name Makefile -or Makefile.in -or Makefile.am -delete
-		doins -r example/*
+		emake -C example maintainer-clean
+		find example -iname 'makefile*' -delete || die
+
+		docinto examples
+		dodoc -r example/.
+		docompress -x /usr/share/doc/${PF}/examples
 	fi
+
+	# no static archives
+	find "${ED}" -name '*.la' -delete || die
 }


^ permalink raw reply related	[flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-physics/fastjet/
@ 2020-09-24  1:06 Aaron Bauman
  0 siblings, 0 replies; 9+ messages in thread
From: Aaron Bauman @ 2020-09-24  1:06 UTC (permalink / raw
  To: gentoo-commits

commit:     e9e07b2e454a23a9264b6af1b17dab1a7b06ce8d
Author:     Aaron Bauman <bman <AT> gentoo <DOT> org>
AuthorDate: Thu Sep 24 00:34:21 2020 +0000
Commit:     Aaron Bauman <bman <AT> gentoo <DOT> org>
CommitDate: Thu Sep 24 01:05:54 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e9e07b2e

sci-physics/fastjet: drop old

Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>

 sci-physics/fastjet/Manifest                |  1 -
 sci-physics/fastjet/fastjet-3.0.3-r1.ebuild | 54 -----------------------------
 2 files changed, 55 deletions(-)

diff --git a/sci-physics/fastjet/Manifest b/sci-physics/fastjet/Manifest
index 64f297e26ab..74c5e31c636 100644
--- a/sci-physics/fastjet/Manifest
+++ b/sci-physics/fastjet/Manifest
@@ -1,2 +1 @@
-DIST fastjet-3.0.3.tar.gz 2240610 BLAKE2B 61c1957d3dc85f1d0e4b82ee899b8767997c79d56f29d1ce3b5af76c9e633db81dadb75bf2a6730f181b7791ee74f3be87f9b81844c3bd280a5d749584969576 SHA512 1fcdd0998d222ae089f10676ae1048fdce3e90f6aef3cd51463719b7ab26f8bcdd599d9521c6f9ef18e3989dbffd7f06da717ce845ab7e486a99433129b56f41
 DIST fastjet-3.0.6.tar.gz 2216501 BLAKE2B 1aacab5c91cb70d66035deddc4929d60c51444f6f23396f947d704f607d5f2267ccc5e09ec633d6e0ec1255b3a6bc7e51e4ea49c4cb06d0e3b6953b601ab76ee SHA512 1f01b7ed0e07bd94c88faa123f72c2e3bcd81ad32ab4d03dc0a18dd18635f3b18ba8d339176b0ef1d6e58cecd9f37aaea30b4ad909d2782ce5be7c11e205c3a5

diff --git a/sci-physics/fastjet/fastjet-3.0.3-r1.ebuild b/sci-physics/fastjet/fastjet-3.0.3-r1.ebuild
deleted file mode 100644
index a0395b35339..00000000000
--- a/sci-physics/fastjet/fastjet-3.0.3-r1.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-AUTOTOOLS_AUTORECONF=yes
-
-FORTRAN_NEEDED=plugins
-
-inherit autotools-utils fortran-2 flag-o-matic
-
-DESCRIPTION="Fast implementation of several recombination jet algorithms"
-HOMEPAGE="http://www.fastjet.fr/"
-SRC_URI="http://www.fastjet.fr/repo/${P}.tar.gz"
-
-LICENSE="GPL-2 QPL"
-SLOT="0"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
-IUSE="cgal doc examples +plugins static-libs"
-
-RDEPEND="cgal? ( sci-mathematics/cgal )"
-DEPEND="${RDEPEND}
-	doc? ( app-doc/doxygen[dot] )
-	plugins? ( sci-physics/siscone )"
-
-PATCHES=( "${FILESDIR}"/${P}-system-siscone.patch )
-
-src_configure() {
-	use cgal && has_version sci-mathematics/cgal[gmp] && append-ldflags -lgmp
-	local myeconfargs=(
-		$(use_enable cgal)
-		$(use_enable plugins allplugins)
-		$(use_enable plugins allcxxplugins)
-	)
-	autotools-utils_src_configure
-}
-
-src_compile() {
-	autotools-utils_src_compile
-	if use doc; then
-		doxygen Doxyfile || die
-	fi
-}
-
-src_install() {
-	autotools-utils_src_install
-	use doc && dohtml -r html/*
-	if use examples; then
-		insinto /usr/share/doc/${PF}
-		find example \
-			-name Makefile -or Makefile.in -or Makefile.am -delete
-		doins -r example/*
-	fi
-}


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

end of thread, other threads:[~2024-03-18 10:56 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-03-18 10:56 [gentoo-commits] repo/gentoo:master commit in: sci-physics/fastjet/ Andrew Ammerlaan
  -- strict thread matches above, loose matches on Subject: below --
2022-07-22 20:57 Andrew Ammerlaan
2022-07-22 20:37 Andrew Ammerlaan
2022-07-22  9:42 Andrew Ammerlaan
2021-07-07 17:48 Joonas Niilola
2021-05-19 22:41 Andrew Savchenko
2021-05-13 16:12 Ulrich Müller
2021-03-20 12:12 David Seifert
2020-09-24  1:06 Aaron Bauman

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