From patchwork Thu Jul 18 18:41:21 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Florian Weimer X-Patchwork-Id: 1133813 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (mailfrom) smtp.mailfrom=sourceware.org (client-ip=209.132.180.131; helo=sourceware.org; envelope-from=libc-alpha-return-103796-incoming=patchwork.ozlabs.org@sourceware.org; receiver=) Authentication-Results: ozlabs.org; dmarc=fail (p=none dis=none) header.from=redhat.com Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; secure) header.d=sourceware.org header.i=@sourceware.org header.b="pQSBTbIV"; dkim-atps=neutral Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 45qNJW2TZXz9s4Y for ; Fri, 19 Jul 2019 04:41:31 +1000 (AEST) DomainKey-Signature: a=rsa-sha1; c=nofws; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:from:to:subject:date:message-id:mime-version :content-type; q=dns; s=default; b=yQW4Oerqa6Ad64A36V4vBk0sndoqa s8prRh33drfriWgE2DGhop/3SHgFur4AWiHBiD5dR7EjcVrHrkOMW5Ra8K97rOxM Tdqr1XlhIvHz1DGjG69ezgte1tcSpFn0t5LW2mM22bgbfGUw15y2uO/7CkGEWeJe 5nYlQUWW2DuaIA= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:from:to:subject:date:message-id:mime-version :content-type; s=default; bh=PaMGFLjdQA5/J9B6SFtbeatyv04=; b=pQS BTbIV/Q9GZbY4VEAJgscOYyd0HB3i0zs7PzHL4w52RDWaK9lK4xNpHuLAnvOURyC bRQA3GgNKPCuk4E1qaMiY9kB+svqiR8qKfSEihq6JnQHlSzoSYq14KVNwlUlnAnt VojacmpTEp457ytKLLQ2gX8SXXPiPTP0+iSRPj1Q= Received: (qmail 29850 invoked by alias); 18 Jul 2019 18:41:25 -0000 Mailing-List: contact libc-alpha-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-alpha-owner@sourceware.org Delivered-To: mailing list libc-alpha@sourceware.org Received: (qmail 29842 invoked by uid 89); 18 Jul 2019 18:41:25 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-18.4 required=5.0 tests=AWL, BAYES_00, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, SPF_HELO_PASS autolearn=ham version=3.3.1 spammy=gmp X-HELO: mx1.redhat.com From: Florian Weimer To: libc-alpha@sourceware.org Subject: [PATCH] build-many-glibcs.py: Use Linux 5.2 by default Date: Thu, 18 Jul 2019 20:41:21 +0200 Message-ID: <87o91rxk1a.fsf@oldenburg2.str.redhat.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.2 (gnu/linux) MIME-Version: 1.0 2019-07-18 Florian Weimer * scripts/build-many-glibcs.py (Context.checkout): Default to Linux 5.2. Reviewed-by: Carlos O'Donell diff --git a/scripts/build-many-glibcs.py b/scripts/build-many-glibcs.py index dacd116f8e..aa6884e046 100755 --- a/scripts/build-many-glibcs.py +++ b/scripts/build-many-glibcs.py @@ -707,7 +707,7 @@ class Context(object): 'gcc': 'vcs-9', 'glibc': 'vcs-mainline', 'gmp': '6.1.2', - 'linux': '5.0', + 'linux': '5.2', 'mpc': '1.1.0', 'mpfr': '4.0.2', 'mig': 'vcs-mainline',