From 6003d4db088d2fa973fa80cc3d02f184f6a5a9b5 Mon Sep 17 00:00:00 2001 From: Wouter Deconinck Date: Tue, 27 Sep 2022 18:37:55 -0500 Subject: [PATCH] estarlight: now available upstream` --- packages/estarlight/package.py | 35 ---------------------------------- 1 file changed, 35 deletions(-) delete mode 100644 packages/estarlight/package.py diff --git a/packages/estarlight/package.py b/packages/estarlight/package.py deleted file mode 100644 index 560feed..0000000 --- a/packages/estarlight/package.py +++ /dev/null @@ -1,35 +0,0 @@ -from spack.package import * - - -class Estarlight(CMakePackage): - """Monte Carlo event generator for coherent vector meson photo- and electro- - production in electron-ion collisions.""" - - homepage = "https://github.com/eic/estarlight" - url = "https://github.com/eic/estarlight/archive/refs/heads/master.zip" - list_url = "https://github.com/eic/estarlight/releases" - git = "https://github.com/eic/estarlight.git" - - maintainers = ["wdconinc"] - - tags = ["eic"] - - version("master", branch="master") - - variant("hepmc3", default=True, description="Support HepMC3 writing") - variant("doxygen", default=False, description="Build documentation") - variant("pythia8", default=False, description="Use Pythia8 for parton showers") - variant("pythia6", default=False, description="Use Pythia6 for parton showers") - variant("dpmjet", default=False, description="Use dpmjet for jets") - - depends_on("cxx", type="build") - - depends_on("hepmc3", when="+hepmc3") - depends_on("doxygen", when="+doxygen") - depends_on("pythia8", when="+pythia8") - depends_on("pythia6", when="+pythia6") - depends_on("dpmjet", when="+dpmjet") - - def cmake_args(self): - args = [] - return args