]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[3.11] GH-112160: Pin to manifest of quay.io/tiran/cpython_autoconf (#112161)
authorSeth Michael Larson <sethmichaellarson@gmail.com>
Mon, 4 Dec 2023 16:02:45 +0000 (10:02 -0600)
committerGitHub <noreply@github.com>
Mon, 4 Dec 2023 16:02:45 +0000 (16:02 +0000)
Makefile.pre.in

index 21aecd4161adb236bc74abdc8fdabc75c81afcae..c61b093fc9399ac7db4db86d3df8b01ebf5deb4b 100644 (file)
@@ -2405,7 +2405,9 @@ regen-configure:
        @if command -v podman >/dev/null; then RUNTIME="podman"; else RUNTIME="docker"; fi; \
        if ! command -v $$RUNTIME; then echo "$@ needs either Podman or Docker container runtime." >&2; exit 1; fi; \
        if command -v selinuxenabled >/dev/null && selinuxenabled; then OPT=":Z"; fi; \
-       CMD="$$RUNTIME run --rm --pull=always -v $(abs_srcdir):/src$$OPT quay.io/tiran/cpython_autoconf:269"; \
+       # Manifest corresponds with tag '269' \
+       CPYTHON_AUTOCONF_MANIFEST="sha256:f370fee95eefa3d57b00488bce4911635411fa83e2d293ced8cf8a3674ead939" \
+       CMD="$$RUNTIME run --rm --pull=missing -v $(abs_srcdir):/src$$OPT quay.io/tiran/cpython_autoconf@$$CPYTHON_AUTOCONF_MANIFEST"; \
        echo $$CMD; \
        $$CMD || exit $?