use directives in some packages (#43238)

This commit is contained in:
Harmen Stoppels 2024-03-18 12:53:53 +01:00 committed by GitHub
parent 282df7aecc
commit 9662d181a0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
12 changed files with 18 additions and 16 deletions

View File

@ -921,9 +921,9 @@ def maintainers(*names: str):
""" """
def _execute_maintainer(pkg): def _execute_maintainer(pkg):
maintainers_from_base = getattr(pkg, "maintainers", []) maintainers = set(getattr(pkg, "maintainers", []))
# Here it is essential to copy, otherwise we might add to an empty list in the parent maintainers.update(names)
pkg.maintainers = list(sorted(set(maintainers_from_base + list(names)))) pkg.maintainers = sorted(maintainers)
return _execute_maintainer return _execute_maintainer

View File

@ -13,8 +13,8 @@ class Arbor(CMakePackage, CudaPackage):
homepage = "https://arbor-sim.org" homepage = "https://arbor-sim.org"
git = "https://github.com/arbor-sim/arbor.git" git = "https://github.com/arbor-sim/arbor.git"
url = "https://github.com/arbor-sim/arbor/releases/download/v0.8.1/arbor-v0.8.1-full.tar.gz" url = "https://github.com/arbor-sim/arbor/releases/download/v0.8.1/arbor-v0.8.1-full.tar.gz"
maintainers = ["thorstenhater", "brenthuisman"]
maintainers("thorstenhater", "brenthuisman")
license("BSD-3-Clause") license("BSD-3-Clause")
version("master", branch="master") version("master", branch="master")

View File

@ -11,7 +11,8 @@ class Cubelib(AutotoolsPackage):
homepage = "https://www.scalasca.org/software/cube-4.x/download.html" homepage = "https://www.scalasca.org/software/cube-4.x/download.html"
url = "https://apps.fz-juelich.de/scalasca/releases/cube/4.4/dist/cubelib-4.4.tar.gz" url = "https://apps.fz-juelich.de/scalasca/releases/cube/4.4/dist/cubelib-4.4.tar.gz"
maintainers = ("swat-jsc", "wrwilliams")
maintainers("swat-jsc", "wrwilliams")
version("4.8.2", sha256="d6fdef57b1bc9594f1450ba46cf08f431dd0d4ae595c47e2f3454e17e4ae74f4") version("4.8.2", sha256="d6fdef57b1bc9594f1450ba46cf08f431dd0d4ae595c47e2f3454e17e4ae74f4")
version("4.8.1", sha256="e4d974248963edab48c5d0fc5831146d391b0ae4632cccafe840bf5f12cd80a9") version("4.8.1", sha256="e4d974248963edab48c5d0fc5831146d391b0ae4632cccafe840bf5f12cd80a9")

View File

@ -11,7 +11,8 @@ class Cubew(AutotoolsPackage):
homepage = "https://www.scalasca.org/software/cube-4.x/download.html" homepage = "https://www.scalasca.org/software/cube-4.x/download.html"
url = "https://apps.fz-juelich.de/scalasca/releases/cube/4.4/dist/cubew-4.4.tar.gz" url = "https://apps.fz-juelich.de/scalasca/releases/cube/4.4/dist/cubew-4.4.tar.gz"
maintainers = ("swat-jsc", "wrwilliams")
maintainers("swat-jsc", "wrwilliams")
version("4.8.2", sha256="4f3bcf0622c2429b8972b5eb3f14d79ec89b8161e3c1cc5862ceda417d7975d2") version("4.8.2", sha256="4f3bcf0622c2429b8972b5eb3f14d79ec89b8161e3c1cc5862ceda417d7975d2")
version("4.8.1", sha256="42cbd743d87c16e805c8e28e79292ab33de259f2cfba46f2682cb35c1bc032d6") version("4.8.1", sha256="42cbd743d87c16e805c8e28e79292ab33de259f2cfba46f2682cb35c1bc032d6")

View File

@ -15,8 +15,8 @@ class Dftbplus(CMakePackage, MakefilePackage):
url = "https://github.com/dftbplus/dftbplus/releases/download/22.1/dftbplus-22.1.tar.xz" url = "https://github.com/dftbplus/dftbplus/releases/download/22.1/dftbplus-22.1.tar.xz"
git = "https://github.com/dftbplus/dftbplus.git" git = "https://github.com/dftbplus/dftbplus.git"
maintainers = ["HaoZeke", "aradi", "iamashwin99"] maintainers("HaoZeke", "aradi", "iamashwin99")
generator = "Ninja" generator("ninja")
build_system( build_system(
conditional("cmake", when="@20.1:"), conditional("cmake", when="@20.1:"),

View File

@ -12,8 +12,8 @@ class Lfortran(CMakePackage):
homepage = "https://lfortran.org" homepage = "https://lfortran.org"
url = "https://lfortran.github.io/tarballs/release/lfortran-0.19.0.tar.gz" url = "https://lfortran.github.io/tarballs/release/lfortran-0.19.0.tar.gz"
git = "https://github.com/lfortran/lfortran.git" git = "https://github.com/lfortran/lfortran.git"
maintainers = ["certik"]
maintainers("certik")
license("BSD-3-Clause") license("BSD-3-Clause")
# The build process uses 'git describe --tags' to get the package version # The build process uses 'git describe --tags' to get the package version

View File

@ -14,8 +14,7 @@ class Mruby(Package):
url = "https://github.com/mruby/mruby/archive/refs/tags/3.0.0.tar.gz" url = "https://github.com/mruby/mruby/archive/refs/tags/3.0.0.tar.gz"
git = "https://github.com/mruby/mruby.git" git = "https://github.com/mruby/mruby.git"
maintainers = ["mdorier"] maintainers("mdorier")
license("MIT") license("MIT")
version("master", branch="master") version("master", branch="master")

View File

@ -13,7 +13,7 @@ class Nlcglib(CMakePackage, CudaPackage, ROCmPackage):
git = "https://github.com/simonpintarelli/nlcglib.git" git = "https://github.com/simonpintarelli/nlcglib.git"
url = "https://github.com/simonpintarelli/nlcglib/archive/v0.9.tar.gz" url = "https://github.com/simonpintarelli/nlcglib/archive/v0.9.tar.gz"
maintainers = ["simonpintarelli"] maintainers("simonpintarelli")
license("BSD-3-Clause") license("BSD-3-Clause")

View File

@ -12,7 +12,7 @@ class RktRacketLib(RacketPackage):
git = "ssh://git@github.com/racket/racket.git" git = "ssh://git@github.com/racket/racket.git"
maintainers = ["elfprince13"] maintainers("elfprince13")
version("8.3", commit="cab83438422bfea0e4bd74bc3e8305e6517cf25f") # tag="v8.3" version("8.3", commit="cab83438422bfea0e4bd74bc3e8305e6517cf25f") # tag="v8.3"
depends_on("racket@8.3", type=("build", "run"), when="@8.3") depends_on("racket@8.3", type=("build", "run"), when="@8.3")

View File

@ -24,10 +24,11 @@ def url_for_version(self, version):
url = "https://github.com/GPUOpen-ProfessionalCompute-Libraries/rpp/archive/{0}.tar.gz" url = "https://github.com/GPUOpen-ProfessionalCompute-Libraries/rpp/archive/{0}.tar.gz"
return url.format(version) return url.format(version)
maintainers = ["srekolam", "afzpatel"]
tags = ["rocm"] tags = ["rocm"]
maintainers("srekolam", "afzpatel")
license("MIT") license("MIT")
version("6.0.2", sha256="2686eb4099233db4444fcd2f77af9b00d38d829f05de2403bed37b1b28f2653c") version("6.0.2", sha256="2686eb4099233db4444fcd2f77af9b00d38d829f05de2403bed37b1b28f2653c")
version("6.0.0", sha256="3626a648bc773520f5cd5ca15f494de6e74b422baf32491750ce0737c3367f15") version("6.0.0", sha256="3626a648bc773520f5cd5ca15f494de6e74b422baf32491750ce0737c3367f15")
version("5.7.1", sha256="36fff5f1c52d969c3e2e0c75b879471f731770f193c9644aa6ab993fb8fa4bbf") version("5.7.1", sha256="36fff5f1c52d969c3e2e0c75b879471f731770f193c9644aa6ab993fb8fa4bbf")

View File

@ -16,7 +16,7 @@ class T8code(AutotoolsPackage):
homepage = "https://github.com/DLR-AMR/t8code" homepage = "https://github.com/DLR-AMR/t8code"
url = "https://github.com/DLR-AMR/t8code/releases/download/v1.4.1/t8-1.4.1.tar.gz" url = "https://github.com/DLR-AMR/t8code/releases/download/v1.4.1/t8-1.4.1.tar.gz"
maintainers = ["Davknapp", "melven"] maintainers("Davknapp", "melven")
license("GPL-2.0-or-later") license("GPL-2.0-or-later")

View File

@ -14,9 +14,9 @@ class Veloc(CMakePackage):
url = "https://github.com/ECP-VeloC/VELOC/archive/veloc-1.7.tar.gz" url = "https://github.com/ECP-VeloC/VELOC/archive/veloc-1.7.tar.gz"
git = "https://github.com/ecp-veloc/veloc.git" git = "https://github.com/ecp-veloc/veloc.git"
maintainers = ["bnicolae"]
tags = ["e4s"] tags = ["e4s"]
maintainers("bnicolae")
license("MIT") license("MIT")
version("main", branch="main") version("main", branch="main")