From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:44636) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eb5r3-0003jK-9s for qemu-devel@nongnu.org; Mon, 15 Jan 2018 09:35:18 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eb5qy-0000yY-E7 for qemu-devel@nongnu.org; Mon, 15 Jan 2018 09:35:17 -0500 Received: from mail-qt0-x243.google.com ([2607:f8b0:400d:c0d::243]:47002) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1eb5qy-0000yP-8n for qemu-devel@nongnu.org; Mon, 15 Jan 2018 09:35:12 -0500 Received: by mail-qt0-x243.google.com with SMTP id o35so4233020qtj.13 for ; Mon, 15 Jan 2018 06:35:12 -0800 (PST) Sender: =?UTF-8?Q?Philippe_Mathieu=2DDaud=C3=A9?= From: =?UTF-8?q?Philippe=20Mathieu-Daud=C3=A9?= Date: Mon, 15 Jan 2018 11:34:51 -0300 Message-Id: <20180115143500.22631-1-f4bug@amsat.org> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Subject: [Qemu-devel] [PATCH v2 0/8] docker: update Ubuntu and Fedora images, deprecate old ones List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: =?UTF-8?q?Alex=20Benn=C3=A9e?= , Fam Zheng , Paolo Bonzini Cc: =?UTF-8?q?Philippe=20Mathieu-Daud=C3=A9?= , qemu-devel@nongnu.org Hi, This series is to be clearer about which upstream version we are using. All "FROM distrib:latest" entries have now been removed and replaced by explicit "FROM distrib:version" ones. To keep backward compatibility, a warning is displayed to the user, suggesting which correct base image to use. To be consistent, we remove the deprecated images of the "make docker" output. Since v2: - fix typo - fix "Expand all the pre-requistes for each docker image and test combination": $ make docker-test-mingw@fedora DEBUG=1 LD docker-test-mingw@fedora.mo cc: fatal error: no input files compilation terminated. rules.mak:115: recipe for target 'docker-test-mingw@fedora.mo' failed make: *** [docker-test-mingw@fedora.mo] Error 1 Regards, Phil. Philippe Mathieu-Daudé (8): docker: sort images list displayed by 'make docker' docker: do not display deprecated images in 'make docker' help docker: add the Ubuntu Trusty base image docker: do not use Trusty APT source in Xenial docker: warn users to use ubuntu16.04 for the LTS Xenial image docker: add the Fedora 27 base image docker: warn users to use newer fedora25/fedora27 base image docker: fix typo tests/docker/Makefile.include | 9 ++++++--- tests/docker/dockerfiles/fedora.docker | 29 ++++++++++++----------------- tests/docker/dockerfiles/fedora25.docker | 18 ++++++++++++++++++ tests/docker/dockerfiles/fedora27.docker | 18 ++++++++++++++++++ tests/docker/dockerfiles/ubuntu.docker | 28 ++++++++++------------------ tests/docker/dockerfiles/ubuntu14.04.docker | 17 +++++++++++++++++ tests/docker/dockerfiles/ubuntu16.04.docker | 16 ++++++++++++++++ 7 files changed, 97 insertions(+), 38 deletions(-) create mode 100644 tests/docker/dockerfiles/fedora25.docker create mode 100644 tests/docker/dockerfiles/fedora27.docker create mode 100644 tests/docker/dockerfiles/ubuntu14.04.docker create mode 100644 tests/docker/dockerfiles/ubuntu16.04.docker -- 2.15.1