guix_mirror_bot pushed a commit to branch core-packages-team in repository guix.
commit f99f82a2d42da0d74ab862c31c20aa0ee6db1c05 Author: Zheng Junjie <[email protected]> AuthorDate: Wed Aug 26 22:47:30 2026 +0800 gnu: Add autoconf-2.73. * gnu/packages/autotools.scm (autoconf-2.73): New variable. --- gnu/packages/autotools.scm | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/gnu/packages/autotools.scm b/gnu/packages/autotools.scm index c9dc46f8e8..7fe6447ddf 100644 --- a/gnu/packages/autotools.scm +++ b/gnu/packages/autotools.scm @@ -157,6 +157,18 @@ know anything about Autoconf or M4.") (base32 "0niz4852fgyavfh3gr4h4kzalk01nk70v6vfsja6r3ap349mr25s")))))) +(define-public autoconf-2.73 + (package (inherit autoconf-2.71) + (version "2.73") + (source + (origin + (method url-fetch) + (uri (string-append "mirror://gnu/autoconf/autoconf-" + version ".tar.xz")) + (sha256 + (base32 + "0bmmsvh7prfs2vqdadpzj25jd1q9k5xlg83zlqpsqps2r2qp5mlz")))))) + (define-public autoconf autoconf-2.72) (define-public autoconf-2.68
