autoconf: add v2.72 (#41848)

This commit is contained in:
Michael Kuhn 2023-12-24 15:50:54 +01:00 committed by GitHub
parent 60d0cd1f21
commit 3ff7b8d381
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -14,13 +14,10 @@ class Autoconf(AutotoolsPackage, GNUMirrorPackage):
homepage = "https://www.gnu.org/software/autoconf/"
gnu_mirror_path = "autoconf/autoconf-2.69.tar.gz"
version("2.72", sha256="afb181a76e1ee72832f6581c0eddf8df032b83e2e0239ef79ebedc4467d92d6e")
version("2.71", sha256="431075ad0bf529ef13cb41e9042c542381103e80015686222b8a9d4abef42a1c")
version("2.70", sha256="f05f410fda74323ada4bdc4610db37f8dbd556602ba65bc843edb4d4d4a1b2b7")
version(
"2.69",
sha256="954bd69b391edc12d6a4a51a2dd1476543da5c6bbf05a95b59dc0dd6fd4c2969",
preferred=True,
)
version("2.69", sha256="954bd69b391edc12d6a4a51a2dd1476543da5c6bbf05a95b59dc0dd6fd4c2969")
version("2.62", sha256="83aa747e6443def0ebd1882509c53f5a2133f502ddefa21b3de141c433914bdd")
version("2.59", sha256="9cd05c73c5fcb1f5ccae53dd6cac36bb8cb9c7b3e97ffae5a7c05c72594c88d8")
@ -52,7 +49,8 @@ class Autoconf(AutotoolsPackage, GNUMirrorPackage):
# Note: m4 is not a pure build-time dependency of autoconf. m4 is
# needed when autoconf runs, not only when autoconf is built.
depends_on("m4@1.4.6:", type=("build", "run"))
depends_on("m4@1.4.8:", type=("build", "run"), when="@1.72:")
depends_on("m4@1.4.6:", type=("build", "run"), when="@:1.71")
depends_on("perl", type=("build", "run"))
build_directory = "spack-build"