From cfe8b64e5bc5783d45ef12d1a833f23bf5596bf1 Mon Sep 17 00:00:00 2001 From: Alexander Puck Neuwirth Date: Mon, 24 Mar 2025 00:34:53 +0100 Subject: [PATCH] sci-physics/hepmc: drop 3.3.0 Signed-off-by: Alexander Puck Neuwirth Closes: https://github.com/gentoo/gentoo/pull/41253 Signed-off-by: Nowa Ammerlaan --- sci-physics/hepmc/hepmc-3.3.0.ebuild | 64 ---------------------------- 1 file changed, 64 deletions(-) delete mode 100644 sci-physics/hepmc/hepmc-3.3.0.ebuild diff --git a/sci-physics/hepmc/hepmc-3.3.0.ebuild b/sci-physics/hepmc/hepmc-3.3.0.ebuild deleted file mode 100644 index c5cb24ef7a3f8..0000000000000 --- a/sci-physics/hepmc/hepmc-3.3.0.ebuild +++ /dev/null @@ -1,64 +0,0 @@ -# Copyright 2022-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{10..12} ) -inherit fortran-2 cmake flag-o-matic python-single-r1 - -MYP=HepMC3-${PV} - -DESCRIPTION="Event Record for Monte Carlo Generators" -HOMEPAGE="https://hepmc.web.cern.ch/hepmc/" - -if [[ ${PV} == 9999 ]]; then - inherit git-r3 - EGIT_REPO_URI="https://gitlab.cern.ch/hepmc/HepMC3" -else - SRC_URI="https://hepmc.web.cern.ch/hepmc/releases/${MYP}.tar.gz" - S="${WORKDIR}/${MYP}" - KEYWORDS="~amd64 ~x86" -fi - -LICENSE="GPL-3+" -SLOT="3" -IUSE="doc test examples python root" -RESTRICT="!test? ( test )" -REQUIRED_USE="${PYTHON_REQUIRED_USE}" - -RDEPEND=" - python? ( - ${PYTHON_DEPS} - $(python_gen_cond_dep ' - dev-python/numpy[${PYTHON_USEDEP}] - ') - ) -" -DEPEND="${RDEPEND}" -BDEPEND=" - root? ( sci-physics/root:= ) - doc? ( - app-text/doxygen[dot] - dev-texlive/texlive-latex - dev-texlive/texlive-latexextra - dev-texlive/texlive-latexrecommended - ) -" - -src_configure() { - filter-lto # 941937 941936 - local mycmakeargs=( - -DHEPMC3_ENABLE_ROOTIO=$(usex root ON OFF) - -DHEPMC3_ENABLE_PYTHON=$(usex python ON OFF) - -DHEPMC3_ENABLE_TEST=$(usex test ON OFF) - -DHEPMC3_BUILD_DOCS=$(usex doc ON OFF) - -DHEPMC3_BUILD_EXAMPLES=$(usex examples ON OFF) - ) - cmake_src_configure -} - -src_install() { - cmake_src_install - use examples && docompress -x /usr/share/doc/${PF}/examples - use python && python_optimize -}