autoconf: Fix patches' URLs (#42372)

This commit is contained in:
Rémi Lacroix 2024-01-30 20:33:48 +01:00 committed by GitHub
parent 749301d133
commit 698b71e2fd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -33,19 +33,19 @@ class Autoconf(AutotoolsPackage, GNUMirrorPackage):
# Apply long-time released and already in-use upstream patches to fix test cases: # Apply long-time released and already in-use upstream patches to fix test cases:
# tests/foreign.at (Libtool): Be tolerant of 'quote' replacing the older `quote' # tests/foreign.at (Libtool): Be tolerant of 'quote' replacing the older `quote'
patch( patch(
"http://mirrors.mit.edu/gentoo-portage/sys-devel/autoconf/files/autoconf-2.69-fix-libtool-test.patch", "https://mirrors.mit.edu/gentoo-portage/dev-build/autoconf/files/autoconf-2.69-fix-libtool-test.patch",
sha256="7793209b33013dc0f81208718c68440c5aae80e7a1c4b8d336e382525af791a7", sha256="7793209b33013dc0f81208718c68440c5aae80e7a1c4b8d336e382525af791a7",
when="@2.69", when="@2.69",
) )
# Fix bin/autoscan.in for current perl releases (reported already in January 2013) # Fix bin/autoscan.in for current perl releases (reported already in January 2013)
patch( patch(
"http://mirrors.mit.edu/gentoo-portage/sys-devel/autoconf/files/autoconf-2.69-perl-5.26.patch", "https://mirrors.mit.edu/gentoo-portage/dev-build/autoconf/files/autoconf-2.69-perl-5.26.patch",
sha256="35c449281546376449766f92d49fc121ca50e330e60fefcfc9be2af3253082c2", sha256="35c449281546376449766f92d49fc121ca50e330e60fefcfc9be2af3253082c2",
when="@2.62:2.69 ^perl@5.17:", when="@2.62:2.69 ^perl@5.17:",
) )
# Fix bin/autoheader.in for current perl relases not having "." in @INC: # Fix bin/autoheader.in for current perl relases not having "." in @INC:
patch( patch(
"http://mirrors.mit.edu/gentoo-portage/sys-devel/autoconf/files/autoconf-2.69-perl-5.26-2.patch", "https://mirrors.mit.edu/gentoo-portage/dev-build/autoconf/files/autoconf-2.69-perl-5.26-2.patch",
sha256="a49dd5bac3b62daa0ff688ab4d508d71dbd2f4f8d7e2a02321926346161bf3ee", sha256="a49dd5bac3b62daa0ff688ab4d508d71dbd2f4f8d7e2a02321926346161bf3ee",
when="@2.62:2.69 ^perl@5.17:", when="@2.62:2.69 ^perl@5.17:",
) )