commit: 55d9bece37cf21c2e5c6232d77988bef217b0fb9
Author: Alexander Puck Neuwirth <alexander <AT> neuwirth-informatik <DOT>
de>
AuthorDate: Wed Jan 8 15:54:55 2025 +0000
Commit: Alexander Puck Neuwirth <alexander <AT> neuwirth-informatik <DOT>
de>
CommitDate: Fri Jan 10 14:48:19 2025 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=55d9bece
sci-physics/tauola: drop 1.1.8
Signed-off-by: Alexander Puck Neuwirth <alexander <AT> neuwirth-informatik.de>
sci-physics/tauola/metadata.xml | 1 -
sci-physics/tauola/tauola-1.1.8.ebuild | 68 ----------------------------------
2 files changed, 69 deletions(-)
diff --git a/sci-physics/tauola/metadata.xml b/sci-physics/tauola/metadata.xml
index fcbc9de77..86d6c9418 100644
--- a/sci-physics/tauola/metadata.xml
+++ b/sci-physics/tauola/metadata.xml
@@ -14,7 +14,6 @@
TAUOLA is a program that simulates the decays of polarized tau leptons,
which are elementary particles that belong to the lepton family. Tau leptons
are heavier than electrons and muons, and they can decay into various final
states, such as hadrons, leptons, and neutrinos. TAUOLA can generate Monte
Carlo events for tau lepton decays, taking into account the polarization, spin
correlations, and radiative corrections. TAUOLA can also model anomalous and
lepton flavor violating decays, which are beyond the standard model of particle
physics.
</longdescription>
<use>
- <flag name="hepmc"> Compile with <pkg>sci-physics/hepmc</pkg>
version 2 interface </flag>
<flag name="hepmc2"> Compile with <pkg>sci-physics/hepmc</pkg>
version 2 interface </flag>
<flag name="hepmc3"> Compile with <pkg>sci-physics/hepmc</pkg>
version 3 interface </flag>
<flag name="pythia"> Compile with <pkg>sci-physics/pythia</pkg>
connection </flag>
diff --git a/sci-physics/tauola/tauola-1.1.8.ebuild
b/sci-physics/tauola/tauola-1.1.8.ebuild
deleted file mode 100644
index 4d4742dd1..000000000
--- a/sci-physics/tauola/tauola-1.1.8.ebuild
+++ /dev/null
@@ -1,68 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-MYPN=TAUOLA
-
-DESCRIPTION="Tau decay Monte Carlo generator"
-HOMEPAGE="https://tauolapp.web.cern.ch/tauolapp/"
-SRC_URI="https://tauolapp.web.cern.ch/tauolapp/resources/${MYPN}.${PV}/${MYPN}.${PV}.tar.gz"
-
-#HepMC interface is licensed under GPL, other code under CPC
-LICENSE="CPC GPL-2+"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="doc examples hepmc tau-spinner"
-
-RDEPEND="
- hepmc? ( sci-physics/hepmc )
- tau-spinner? ( sci-physics/lhapdf )
-"
-DEPEND="${RDEPEND}
- doc? (
- app-text/doxygen[dot]
- app-text/ghostscript-gpl
- app-text/texlive
- )
-"
-
-S="${WORKDIR}/${MYPN}"
-
-PATCHES=(
- "${FILESDIR}"/${PN}-1.1.3-tau-spinner-makefile.patch
-)
-
-src_configure() {
- econf \
- --without-mc-tester \
- --without-pythia8 \
- $(use_with hepmc hepmc "${EPREFIX}/usr") \
- --without-hepmc3 \
- $(use_with tau-spinner) \
- $(use_with tau-spinner lhapdf "${EPREFIX}/usr")
-}
-
-src_compile() {
- emake -j1
- if use doc; then
- cd "${S}/documentation/doxy_documentation" || die
- default
- cd "${S}/documentation/latex_documentation" || die
- default
- fi
-}
-
-src_install() {
- emake DESTDIR="${ED}" install
-
- if use doc; then
- dodoc documentation/doxy_documentation/html/*
- dodoc
documentation/latex_documentation/Tauola_interface_design.pdf
- fi
-
- if use examples; then
- dodoc -r examples
- use tau-spinner && docinto tau-spinner && dodoc -r
TauSpinner/examples
- fi
-}