From 38e3caec0fc22bbab92b54b85d66049061f95ae4 Mon Sep 17 00:00:00 2001 From: "Zak B. Elep" Date: Mon, 9 Sep 2024 23:57:39 +0800 Subject: [PATCH 1/2] library.pl: drop mips64le for bullseye cf https://github.com/docker-library/official-images/pull/17486#issuecomment-2329807333 --- library.pl | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/library.pl b/library.pl index c6d5e42d..f1fb5e31 100755 --- a/library.pl +++ b/library.pl @@ -8,8 +8,9 @@ my %arches = ( # https://github.com/docker-library/official-images/blob/master/library/debian - default => 'amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x', - buster => 'amd64, arm32v7, arm64v8, i386', + default => 'amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x', + bullseye => 'amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x', + buster => 'amd64, arm32v7, arm64v8, i386', ); print <<"END_HEADER"; From 858d75c7b44cf1d7585008a2d9c874edd5ca931c Mon Sep 17 00:00:00 2001 From: "Zak B. Elep" Date: Tue, 10 Sep 2024 02:44:56 +0800 Subject: [PATCH 2/2] library.pl: further trim bullseye archs Via @tianon and https://wiki.debian.org/LTS?action=recall&rev=110 Co-authored-by: Tianon Gravi --- library.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library.pl b/library.pl index f1fb5e31..a44725d1 100755 --- a/library.pl +++ b/library.pl @@ -9,7 +9,7 @@ # https://github.com/docker-library/official-images/blob/master/library/debian default => 'amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x', - bullseye => 'amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x', + bullseye => 'amd64, arm32v7, arm64v8, i386', buster => 'amd64, arm32v7, arm64v8, i386', );