From 51719c69bd8a4668082fa608e4f458ae8328b006 Mon Sep 17 00:00:00 2001
From: Grische <github@grische.xyz>
Date: Mon, 16 Dec 2024 14:45:31 +0100
Subject: [PATCH] Dockerfile: drop dependency on python3-distutils

distutils is not required anymore by OpenWRT 24.10.

Distutils was deprecated and removed in Python 3.12, see
https://peps.python.org/pep-0632/

This effectively reverts 2d4ab0f0c8dd909c622bbc49352aea729a0e021b
---
 contrib/docker/Dockerfile     | 1 -
 docs/user/getting_started.rst | 1 -
 2 files changed, 2 deletions(-)

diff --git a/contrib/docker/Dockerfile b/contrib/docker/Dockerfile
index 62fc2cd59..1c382c120 100644
--- a/contrib/docker/Dockerfile
+++ b/contrib/docker/Dockerfile
@@ -10,7 +10,6 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
     git \
     python3 \
     python3-dev \
-    python3-distutils \
     python3-pyelftools \
     python3-setuptools \
     build-essential \
diff --git a/docs/user/getting_started.rst b/docs/user/getting_started.rst
index 96e6974c6..010d605f3 100644
--- a/docs/user/getting_started.rst
+++ b/docs/user/getting_started.rst
@@ -29,7 +29,6 @@ freshly installed Debian Bullseye system the following packages are required:
 
 * `git` (to get Gluon and other dependencies)
 * `python3`
-* `python3-distutils`
 * `build-essential`
 * `ecdsautils` (to sign firmware, see `contrib/sign.sh`)
 * `gawk`
-- 
GitLab