From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from gnu.wildebeest.org (gnu.wildebeest.org [45.83.234.184]) by sourceware.org (Postfix) with ESMTPS id BA166385840A for ; Sun, 24 Jul 2022 18:37:05 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org BA166385840A Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=klomp.org Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=klomp.org Received: from reform (deer0x01.wildebeest.org [172.31.17.131]) (using TLSv1.2 with cipher ADH-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by gnu.wildebeest.org (Postfix) with ESMTPSA id 13A9E303C3D5; Sun, 24 Jul 2022 20:37:03 +0200 (CEST) Received: by reform (Postfix, from userid 1000) id 9A3C92E821A8; Sun, 24 Jul 2022 20:37:03 +0200 (CEST) From: Mark Wielaard To: buildbot@sourceware.org Cc: Mark Wielaard Subject: [PATCH] Add [lib]ncurses-dev[el] to Debian and OpenSuse containers Date: Sun, 24 Jul 2022 20:36:52 +0200 Message-Id: <20220724183652.44154-1-mark@klomp.org> X-Mailer: git-send-email 2.30.2 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Status: No, score=-11.5 required=5.0 tests=BAYES_00, GIT_PATCH_0, JMQ_SPF_NEUTRAL, KAM_DMARC_STATUS, SPF_HELO_NONE, SPF_PASS, TXREP autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org X-BeenThere: buildbot@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: "The https://builder.sourceware.org/ buildbot" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Jul 2022 18:37:07 -0000 This makes sure sim can be build when gdb pulls it in with --enable-targets=all. The fedora container files already contain ncurses-devel. --- builder/containers/Containerfile-debian-stable | 2 +- builder/containers/Containerfile-debian-testing | 2 +- builder/containers/Containerfile-opensuse-leap | 3 ++- builder/containers/Containerfile-opensuse-tumbleweed | 3 ++- 4 files changed, 6 insertions(+), 4 deletions(-) diff --git a/builder/containers/Containerfile-debian-stable b/builder/containers/Containerfile-debian-stable index d7c1973..f2aad80 100644 --- a/builder/containers/Containerfile-debian-stable +++ b/builder/containers/Containerfile-debian-stable @@ -9,7 +9,7 @@ RUN apt-get update && \ coreutils make git autotools-dev autoconf dejagnu automake gettext bison flex \ gawk m4 pkg-config gettext autopoint \ bzip2 libbz2-dev xz-utils liblzma-dev gzip zlib1g-dev zstd libzstd-dev \ - libexpat-dev \ + libexpat-dev libncurses-dev \ findutils file tar curl libarchive-tools libarchive-dev libcurl4-gnutls-dev \ libmicrohttpd-dev libsqlite3-dev libelf-dev libdw-dev elfutils \ libdebuginfod-dev \ diff --git a/builder/containers/Containerfile-debian-testing b/builder/containers/Containerfile-debian-testing index 57c1e63..6c4448c 100644 --- a/builder/containers/Containerfile-debian-testing +++ b/builder/containers/Containerfile-debian-testing @@ -9,7 +9,7 @@ RUN apt-get update && \ coreutils make git autotools-dev autoconf dejagnu automake gettext bison flex \ gawk m4 pkg-config gettext autopoint \ bzip2 libbz2-dev xz-utils liblzma-dev gzip zlib1g-dev zstd libzstd-dev \ - libexpat-dev \ + libexpat-dev libncurses-dev \ findutils file tar curl libarchive-tools libarchive-dev libcurl4-gnutls-dev \ libmicrohttpd-dev libsqlite3-dev libelf-dev libdw-dev elfutils \ libdebuginfod-dev \ diff --git a/builder/containers/Containerfile-opensuse-leap b/builder/containers/Containerfile-opensuse-leap index ec798b8..41eae37 100644 --- a/builder/containers/Containerfile-opensuse-leap +++ b/builder/containers/Containerfile-opensuse-leap @@ -13,7 +13,8 @@ RUN zypper -n install \ xmlto poppler-tools libxslt docbook-dtds docbook-xsl-stylesheets \ libxml2-devel dos2unix dpkg python3-devel python3-mock \ python3-rpm python3-pyxdg python3-pip openmpi-devel gdb help2man wget \ - texinfo libexpat-devel glibc-devel glibc-locale xxhash-devel + texinfo libexpat-devel glibc-devel glibc-locale xxhash-devel \ + ncurses-devel # FIXME: remove once Leap package dependency for libdebuginfod is fixed RUN zypper -n install libdebuginfod1 diff --git a/builder/containers/Containerfile-opensuse-tumbleweed b/builder/containers/Containerfile-opensuse-tumbleweed index 2c27166..4567199 100644 --- a/builder/containers/Containerfile-opensuse-tumbleweed +++ b/builder/containers/Containerfile-opensuse-tumbleweed @@ -12,7 +12,8 @@ RUN zypper -n install \ xmlto poppler-tools libxslt docbook-dtds docbook-xsl-stylesheets \ libxml2-devel dos2unix dpkg python3-devel python3-mock \ python3-rpm python3-pyxdg python3-pip openmpi-devel gdb help2man wget \ - texinfo libexpat-devel glibc-devel glibc-locale xxhash-devel + texinfo libexpat-devel glibc-devel glibc-locale xxhash-devel \ + ncurses-devel RUN zypper clean # Install buildbot-worker -- 2.30.2