From 3ae9ead271454db3aa07ae3f6267d58241a641db Mon Sep 17 00:00:00 2001 From: Quentin Schulz Date: Sun, 18 Oct 2020 19:57:12 +0200 Subject: docs: dev-manual-common-tasks: update python webserver example to python3 SimpleHTTPServer is python2 only, the module in python3 is http.server. Let's use this one since everything in Yocto Project is using python3 nowadays. (From yocto-docs rev: a5922b045eca9aa96672f8d75a2f98e17d2280f7) Signed-off-by: Quentin Schulz Signed-off-by: Richard Purdie (cherry picked from commit 75338f17b116afadb7360181d071875a68272708) Signed-off-by: Nicolas Dechesne Signed-off-by: Richard Purdie --- documentation/dev-manual/dev-manual-common-tasks.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'documentation') diff --git a/documentation/dev-manual/dev-manual-common-tasks.rst b/documentation/dev-manual/dev-manual-common-tasks.rst index b200e3eef3..8e26398d84 100644 --- a/documentation/dev-manual/dev-manual-common-tasks.rst +++ b/documentation/dev-manual/dev-manual-common-tasks.rst @@ -7223,11 +7223,11 @@ Host or Server Machine Setup Although other protocols are possible, a server using HTTP typically serves packages. If you want to use HTTP, then set up and configure a -web server such as Apache 2, lighttpd, or SimpleHTTPServer on the +web server such as Apache 2, lighttpd, or Python web server on the machine serving the packages. To keep things simple, this section describes how to set up a -SimpleHTTPServer web server to share package feeds from the developer's +Python web server to share package feeds from the developer's machine. Although this server might not be the best for a production environment, the setup is simple and straight forward. Should you want to use a different server more suited for production (e.g. Apache 2, @@ -7242,7 +7242,7 @@ setting of "package_rpm": :: $ cd ~/poky/build/tmp/deploy/rpm - $ python -m SimpleHTTPServer + $ python3 -m http.server .. _runtime-package-management-target: -- cgit v1.2.3-54-g00ecf