masa: add versions and update dependencies (#47447)
* masa: add versions * masa: update dependencies
This commit is contained in:
parent
c601692bc7
commit
801390f6be
@ -19,20 +19,27 @@ class Masa(AutotoolsPackage):
|
||||
license("LGPL-2.1-or-later")
|
||||
|
||||
version("master", branch="master")
|
||||
version("0.51.0", tag="0.51.0")
|
||||
version("0.50.0", tag="0.50.0")
|
||||
version("0.44.0", tag="0.44.0")
|
||||
version("0.43.1", tag="0.43.1")
|
||||
version("0.43.0", tag="0.43.0")
|
||||
version("0.42.0", tag="0.42.0")
|
||||
|
||||
depends_on("c", type="build") # generated
|
||||
depends_on("cxx", type="build") # generated
|
||||
depends_on("fortran", type="build") # generated
|
||||
depends_on("c", type="build")
|
||||
depends_on("cxx", type="build")
|
||||
depends_on("fortran", type="build", when="+fortran")
|
||||
|
||||
variant("fortran", default=True, description="Compile with Fortran interfaces")
|
||||
variant("python", default=True, description="Compile with Python interfaces")
|
||||
variant("fortran", default=False, description="Compile with Fortran interfaces")
|
||||
variant("python", default=False, description="Compile with Python interfaces")
|
||||
|
||||
depends_on("gettext")
|
||||
depends_on("metaphysicl")
|
||||
depends_on("python")
|
||||
depends_on("autoconf", type="build")
|
||||
depends_on("automake", type="build")
|
||||
depends_on("libtool", type="build")
|
||||
depends_on("swig", type="build")
|
||||
depends_on("python", when="+python")
|
||||
depends_on("metaphysicl")
|
||||
depends_on("swig", type="build", when="+python")
|
||||
|
||||
def configure_args(self):
|
||||
options = []
|
||||
|
Loading…
Reference in New Issue
Block a user