public inbox for igt-dev@lists.freedesktop.org
 help / color / mirror / Atom feed
From: "Ser, Simon" <simon.ser@intel.com>
To: "Hiler, Arkadiusz" <arkadiusz.hiler@intel.com>,
	"igt-dev@lists.freedesktop.org" <igt-dev@lists.freedesktop.org>
Cc: "Latvala, Petri" <petri.latvala@intel.com>
Subject: Re: [igt-dev] [PATCH i-g-t] Dockerfile.debian*: Switch over to buster
Date: Mon, 8 Jul 2019 07:42:01 +0000	[thread overview]
Message-ID: <ec47e5db42da5360509bc57729fa88d144ceb4dc.camel@intel.com> (raw)
In-Reply-To: <20190708065724.26242-1-arkadiusz.hiler@intel.com>

On Mon, 2019-07-08 at 09:57 +0300, Arkadiusz Hiler wrote:
> Debian Busters is the new stable so let's upgrade.
> No backports for now :-)
> 
> Cc: Guillaume Tucker <guillaume.tucker@collabora.com>
> Cc: Simon Ser <simon.ser@intel.com>
> Cc: Petri Latvala <petri.latvala@intel.com>
> Signed-off-by: Arkadiusz Hiler <arkadiusz.hiler@intel.com>

Nice.

Reviewed-by: Simon Ser <simon.ser@intel.com>

> ---
>  Dockerfile.debian         |  6 ++----
>  Dockerfile.debian-arm64   | 14 ++++++--------
>  Dockerfile.debian-armhf   | 14 ++++++--------
>  Dockerfile.debian-minimal | 10 ++++------
>  Dockerfile.debian-mips    |  6 ++----
>  5 files changed, 20 insertions(+), 30 deletions(-)
> 
> diff --git a/Dockerfile.debian b/Dockerfile.debian
> index 717630e1..686a0ce0 100644
> --- a/Dockerfile.debian
> +++ b/Dockerfile.debian
> @@ -10,10 +10,8 @@ RUN apt-get install -y \
>  			libcurl4-openssl-dev \
>  			python-docutils \
>  			valgrind \
> -			peg
> -
> -RUN apt-get install -t stretch-backports -y \
> -					libdrm-intel1
> +			peg \
> +			libdrm-intel1
>  
>  # autotools build deps
>  RUN apt-get install -y \
> diff --git a/Dockerfile.debian-arm64 b/Dockerfile.debian-arm64
> index c9fb28c8..cf570ca3 100644
> --- a/Dockerfile.debian-arm64
> +++ b/Dockerfile.debian-arm64
> @@ -1,4 +1,4 @@
> -FROM debian:stretch-backports
> +FROM debian:buster
>  
>  RUN apt-get update
>  RUN apt-get install -y \
> @@ -30,10 +30,8 @@ RUN apt-get install -y \
>  			libjson-c-dev:arm64 \
>  			libcurl4-openssl-dev:arm64 \
>  			libxrandr-dev:arm64 \
> -			libxv-dev:arm64
> -
> -RUN apt-get install -t stretch-backports -y \
> -					meson \
> -					libdrm-dev:arm64 \
> -					qemu-user \
> -					qemu-user-static
> +			libxv-dev:arm64 \
> +			meson \
> +			libdrm-dev:arm64 \
> +			qemu-user \
> +			qemu-user-static
> diff --git a/Dockerfile.debian-armhf b/Dockerfile.debian-armhf
> index 3a133d84..393acda9 100644
> --- a/Dockerfile.debian-armhf
> +++ b/Dockerfile.debian-armhf
> @@ -1,4 +1,4 @@
> -FROM debian:stretch-backports
> +FROM debian:buster
>  
>  RUN apt-get update
>  RUN apt-get install -y \
> @@ -30,10 +30,8 @@ RUN apt-get install -y \
>  			libjson-c-dev:armhf \
>  			libcurl4-openssl-dev:armhf \
>  			libxrandr-dev:armhf \
> -			libxv-dev:armhf
> -
> -RUN apt-get install -t stretch-backports -y \
> -					meson \
> -					libdrm-dev:armhf \
> -					qemu-user \
> -					qemu-user-static
> +			libxv-dev:armhf \
> +			meson \
> +			libdrm-dev:armhf \
> +			qemu-user \
> +			qemu-user-static
> diff --git a/Dockerfile.debian-minimal b/Dockerfile.debian-minimal
> index 63844694..491cbc41 100644
> --- a/Dockerfile.debian-minimal
> +++ b/Dockerfile.debian-minimal
> @@ -1,4 +1,4 @@
> -FROM debian:stretch-backports
> +FROM debian:buster
>  
>  RUN apt-get update
>  RUN apt-get install -y \
> @@ -18,8 +18,6 @@ RUN apt-get install -y \
>  			libudev-dev \
>  			libxrandr-dev \
>  			libxv-dev \
> -			x11proto-dri2-dev
> -
> -RUN apt-get install -t stretch-backports -y \
> -					meson \
> -					libdrm-dev
> +			x11proto-dri2-dev \
> +			meson \
> +			libdrm-dev
> diff --git a/Dockerfile.debian-mips b/Dockerfile.debian-mips
> index ee29f5f4..0c150dde 100644
> --- a/Dockerfile.debian-mips
> +++ b/Dockerfile.debian-mips
> @@ -1,4 +1,4 @@
> -FROM debian:stretch-backports
> +FROM debian:buster
>  
>  RUN apt-get update
>  RUN apt-get install -y \
> @@ -30,9 +30,7 @@ RUN apt-get install -y \
>  			libjson-c-dev:mips \
>  			libcurl4-openssl-dev:mips \
>  			libxrandr-dev:mips \
> -			libxv-dev:mips
> -
> -RUN apt-get install -t stretch-backports -y \
> +			libxv-dev:mips \
>  			meson \
>  			libdrm-dev:mips \
>  			qemu-user \
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

  parent reply	other threads:[~2019-07-08  7:42 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-07-08  6:57 [igt-dev] [PATCH i-g-t] Dockerfile.debian*: Switch over to buster Arkadiusz Hiler
2019-07-08  7:25 ` [igt-dev] ✗ GitLab.Pipeline: warning for " Patchwork
2019-07-08 12:21   ` Arkadiusz Hiler
2019-07-12  8:57     ` Guillaume Tucker
2019-07-15  8:13       ` Arkadiusz Hiler
2019-07-22  8:03         ` Guillaume Tucker
2019-07-22  8:17           ` Ser, Simon
2020-08-11  9:41             ` Guillaume Tucker
2019-07-08  7:29 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
2019-07-08  7:42 ` Ser, Simon [this message]
2019-07-08  9:43 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=ec47e5db42da5360509bc57729fa88d144ceb4dc.camel@intel.com \
    --to=simon.ser@intel.com \
    --cc=arkadiusz.hiler@intel.com \
    --cc=igt-dev@lists.freedesktop.org \
    --cc=petri.latvala@intel.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox