From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp-out2.suse.de (smtp-out2.suse.de [195.135.220.29]) by sourceware.org (Postfix) with ESMTPS id 935D73858407 for ; Thu, 16 Jun 2022 05:02:12 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 935D73858407 Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=suse.cz Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=suse.cz Received: from imap2.suse-dmz.suse.de (imap2.suse-dmz.suse.de [192.168.254.74]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-521) server-digest SHA512) (No client certificate requested) by smtp-out2.suse.de (Postfix) with ESMTPS id B656D1FAE3 for ; Thu, 16 Jun 2022 05:02:11 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=suse.cz; s=susede2_rsa; t=1655355731; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc: mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding; bh=Yn2NkzMy6vMOMVQiVP0q2sQK3PTyWTlKFfaIk/QJyZY=; b=WSNl51xMI0NnQhSSQ59nrhAJiZr7g/EnBwcvZNMJxdzwqiWN2fxzgSXiUBMJVVbBGkGmx/ umOPThAiro+MG0JAjxchNKYb4eLkWe4K82qgzwd9JKAEkAPE2Pip5UXYBWmbpTfvJv1DDt UyEPc0bawFi+nhvOw2WsWMFz3XWiFYw= DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=suse.cz; s=susede2_ed25519; t=1655355731; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc: mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding; bh=Yn2NkzMy6vMOMVQiVP0q2sQK3PTyWTlKFfaIk/QJyZY=; b=vXh7tCn0JJ/79CFNW2DdSc17RqxEdqAkLrFknQcaheAU4Kaea4OkQp6feR6mAhM9/hfG54 0ZR7HNVSH8zseXBQ== Received: from imap2.suse-dmz.suse.de (imap2.suse-dmz.suse.de [192.168.254.74]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-521) server-digest SHA512) (No client certificate requested) by imap2.suse-dmz.suse.de (Postfix) with ESMTPS id A6449139C4 for ; Thu, 16 Jun 2022 05:02:11 +0000 (UTC) Received: from dovecot-director2.suse.de ([192.168.254.65]) by imap2.suse-dmz.suse.de with ESMTPSA id SMKMJ1O5qmJMPgAAMHmgww (envelope-from ) for ; Thu, 16 Jun 2022 05:02:11 +0000 Message-ID: <4e2c425b-143c-0b94-5386-bfff13274ee5@suse.cz> Date: Thu, 16 Jun 2022 07:02:11 +0200 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101 Thunderbird/91.10.0 From: =?UTF-8?Q?Martin_Li=c5=a1ka?= Subject: [PATCH][PUSHED] Leap container: fix debuginfod-devel package installation. To: buildbot@sourceware.org Content-Language: en-US Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=-11.9 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, GIT_PATCH_0, SPF_HELO_NONE, SPF_PASS, TXREP, T_SCC_BODY_TEXT_LINE 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: Thu, 16 Jun 2022 05:02:13 -0000 Add workaround for a missing dependency that will be fixed in Leap. --- builder/containers/Containerfile-opensuse-leap | 3 +++ 1 file changed, 3 insertions(+) diff --git a/builder/containers/Containerfile-opensuse-leap b/builder/containers/Containerfile-opensuse-leap index 336548d..51e74c4 100644 --- a/builder/containers/Containerfile-opensuse-leap +++ b/builder/containers/Containerfile-opensuse-leap @@ -14,6 +14,9 @@ RUN zypper -n install \ 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 + +# FIXME: remove once Leap package dependency for libdebuginfod is fixed +RUN zypper -n install libdebuginfod1 RUN zypper clean # Install buildbot-worker -- 2.36.1