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 D00F03858407; Thu, 16 Jun 2022 04:09:15 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org D00F03858407 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 B45701F98E; Thu, 16 Jun 2022 04:09:13 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=suse.cz; s=susede2_rsa; t=1655352553; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc:cc: mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=80XCTus93V4VJyzxcJdytJ7HEWuGzKbRouBsf/WmDMo=; b=v//ql2yCh9lA0HfqggsJ9D3YDi+zf3SrXbj63xvNHm94Iu0B3eyAGUrOt/yOs+lY+vHn9c e5NHvvLRtpkYo0QevkBKJUgqCep5ZjxkG2CKZ/pAs9rS0aztwMS80eJc1GYiM2DEr6Y8iY gtf88V3ptGegMw32ZKBdykTaOi3rRNw= DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=suse.cz; s=susede2_ed25519; t=1655352553; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc:cc: mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=80XCTus93V4VJyzxcJdytJ7HEWuGzKbRouBsf/WmDMo=; b=BneAx6t0RLpV5UfG19Xl0bXyYrF/p/wzsOoU6zNQUZpYuOHpSXk/Ve8Z9RZLrnicCtyfzw /Mwlk0mRU6siSuAg== 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 92BC81344E; Thu, 16 Jun 2022 04:09:13 +0000 (UTC) Received: from dovecot-director2.suse.de ([192.168.254.65]) by imap2.suse-dmz.suse.de with ESMTPSA id pRaeIumsqmJyMAAAMHmgww (envelope-from ); Thu, 16 Jun 2022 04:09:13 +0000 Message-ID: Date: Thu, 16 Jun 2022 06:09:13 +0200 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101 Thunderbird/91.10.0 Subject: Re: gdb builder status (Was: Adding binutils to the GNU Toolchain buildbot on sourceware) Content-Language: en-US To: Mark Wielaard Cc: Simon Marchi , buildbot@sourceware.org, Tom de Vries , "gdb-patches@sourceware.org" References: <20220428162803.GD23335@gnu.wildebeest.org> <20220429200422.GB7305@gnu.wildebeest.org> <20220501194445.GB30898@gnu.wildebeest.org> <28a953d1-9fdc-e4f7-18cc-0b7b1a4e88ea@suse.de> <9576d8d18b533c753df75a2cdb6ca9d786d71ff3.camel@klomp.org> From: =?UTF-8?Q?Martin_Li=c5=a1ka?= In-Reply-To: Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=-6.5 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, NICE_REPLY_A, 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 04:09:20 -0000 On 6/15/22 21:48, Mark Wielaard wrote: > $ podman run --name opensuse-leap -ti --entrypoint /bin/bash builder-opensuse-leap > builder@9d1600f0c01e:~> rpm -q libdebuginfod-devel > libdebuginfod-devel-0.185-150400.3.35.x86_64 > > Are the container files pulling from the wrong repositories? Yeah, I was still using 15.3, while we released 15.4 in the meantime. Apparently the following helps: podman build ... --pull=true And about: ls -lah /usr/lib64/libdebuginfod-0.185.so ls: cannot access '/usr/lib64/libdebuginfod-0.185.so': No such file or directory It's really a broken package and I'm going to fix it (it's missing Requires: libdebuginfod1 = %{version} In the meantime I install it manually in this podman file. Cheers, Martin