From nobody Sat May 4 16:52:22 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of gnu.org designates 209.51.188.17 as permitted sender) client-ip=209.51.188.17; envelope-from=qemu-devel-bounces+importer=patchew.org@nongnu.org; helo=lists.gnu.org; Authentication-Results: mx.zohomail.com; spf=pass (zoho.com: domain of gnu.org designates 209.51.188.17 as permitted sender) smtp.mailfrom=qemu-devel-bounces+importer=patchew.org@nongnu.org; dmarc=fail(p=none dis=none) header.from=redhat.com ARC-Seal: i=1; a=rsa-sha256; t=1567073238; cv=none; d=zoho.com; s=zohoarc; b=I+yu5z4rrOr03mzCsWU8alRxF/K1t/D68hEm9zwBS0D0xjy/jpXNt4wwqTMoXsJsq2VxbrDj9JJwbVsn7IGw/1z6pfm7AppitMTSH6PkuBmOeWMxLdvG7RTfgDq3Amo0ypK5Y98xXh7fW8yUfpYyOr3caHi8+KwR3exyha/oz04= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zoho.com; s=zohoarc; t=1567073238; h=Content-Type:Content-Transfer-Encoding:Cc:Date:From:In-Reply-To:List-Subscribe:List-Post:List-Id:List-Archive:List-Help:List-Unsubscribe:MIME-Version:Message-ID:References:Sender:Subject:To:ARC-Authentication-Results; bh=4f1yqjxTkPs1jDnNMvl6d1zNNzpEGrP7OS6ktyEWcwM=; b=nXbtsMQG5kZA82IDLKtaDswWYiFUVGjh8JLiVMPTRr6a8qEHrXTnpUdKDvvkZzesexM+xeAS7c2WPpOn/ug78ge4w8r+TS15ni4EmzHhVAE/N4cJZwghoghJD1t1keZ5TwpspsXPxvjyEESnkTMvZxvQ2KCHN/3M3YNZaDz0gcU= ARC-Authentication-Results: i=1; mx.zoho.com; spf=pass (zoho.com: domain of gnu.org designates 209.51.188.17 as permitted sender) smtp.mailfrom=qemu-devel-bounces+importer=patchew.org@nongnu.org; dmarc=fail header.from= (p=none dis=none) header.from= Return-Path: Received: from lists.gnu.org (lists.gnu.org [209.51.188.17]) by mx.zohomail.com with SMTPS id 1567073238962665.3144648774529; Thu, 29 Aug 2019 03:07:18 -0700 (PDT) Received: from localhost ([::1]:47628 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1i3HKn-000794-D7 for importer@patchew.org; Thu, 29 Aug 2019 06:07:17 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:44026) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1i3HJD-0005WT-Dz for qemu-devel@nongnu.org; Thu, 29 Aug 2019 06:05:40 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1i3HJC-0008TP-DA for qemu-devel@nongnu.org; Thu, 29 Aug 2019 06:05:39 -0400 Received: from mx1.redhat.com ([209.132.183.28]:48554) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1i3HJ9-0008OG-71; Thu, 29 Aug 2019 06:05:35 -0400 Received: from smtp.corp.redhat.com (int-mx05.intmail.prod.int.phx2.redhat.com [10.5.11.15]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 834303001571; Thu, 29 Aug 2019 10:05:34 +0000 (UTC) Received: from x1w.redhat.com (unknown [10.40.205.194]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 1E64F5D6B2; Thu, 29 Aug 2019 10:05:31 +0000 (UTC) From: =?UTF-8?q?Philippe=20Mathieu-Daud=C3=A9?= To: John Snow , qemu-devel@nongnu.org Date: Thu, 29 Aug 2019 12:05:20 +0200 Message-Id: <20190829100521.12143-2-philmd@redhat.com> In-Reply-To: <20190829100521.12143-1-philmd@redhat.com> References: <20190829100521.12143-1-philmd@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.15 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.46]); Thu, 29 Aug 2019 10:05:34 +0000 (UTC) Content-Transfer-Encoding: quoted-printable X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 209.132.183.28 Subject: [Qemu-devel] [PATCH 1/2] scripts/git.orderfile: Order Python files before unordered ones X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: =?UTF-8?q?Philippe=20Mathieu-Daud=C3=A9?= , qemu-block@nongnu.org Errors-To: qemu-devel-bounces+importer=patchew.org@nongnu.org Sender: "Qemu-devel" Content-Type: text/plain; charset="utf-8" Order Python source files before the rest of unordered files. This helps in particular while reviewing iotests. Signed-off-by: Philippe Mathieu-Daud=C3=A9 Reviewed-by: Eric Blake Reviewed-by: John Snow Reviewed-by: Stefano Garzarella --- scripts/git.orderfile | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/git.orderfile b/scripts/git.orderfile index ac699700b1..0ad5b9b8a8 100644 --- a/scripts/git.orderfile +++ b/scripts/git.orderfile @@ -26,4 +26,5 @@ Makefile* =20 # code *.c +*.py =20 --=20 2.20.1 From nobody Sat May 4 16:52:22 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of gnu.org designates 209.51.188.17 as permitted sender) client-ip=209.51.188.17; envelope-from=qemu-devel-bounces+importer=patchew.org@nongnu.org; helo=lists.gnu.org; Authentication-Results: mx.zohomail.com; spf=pass (zoho.com: domain of gnu.org designates 209.51.188.17 as permitted sender) smtp.mailfrom=qemu-devel-bounces+importer=patchew.org@nongnu.org; dmarc=fail(p=none dis=none) header.from=redhat.com ARC-Seal: i=1; a=rsa-sha256; t=1567073260; cv=none; d=zoho.com; s=zohoarc; b=hSQ5e6Iguq78fgPy0asVfGB3n/k/yEFs5iNT3SkeiWL1RQKYY/TiWQhfGCZBmZ3NbdwnAtJad9DaXRAs0VL+j2Xn51tLvmTPNK9nnKXEyJYytM54HqbqvM+Nj0LLEYniReZN3KyGH/WOsTrqb5W2bmipQa7TV6L9y2/gGRqgZic= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zoho.com; s=zohoarc; t=1567073260; h=Content-Type:Content-Transfer-Encoding:Cc:Date:From:In-Reply-To:List-Subscribe:List-Post:List-Id:List-Archive:List-Help:List-Unsubscribe:MIME-Version:Message-ID:References:Sender:Subject:To:ARC-Authentication-Results; bh=BrlZhbrIHzkiuDMxNkUSdAgNJg365ILoPOcqlJL+Yuc=; b=BZcnIR8QI5RVIkH2/PkvrcdWFSasc9A7nRJde4nJ4O3o5kCROdWSEmcTip+QosuD4xcBNZ+erw8F3/Lfv0tO1CuTi2ei/NdsS/bARzDUAtF2eTWAVUil7WTJ0xUazLFj9aaNONfLCAX0g0WZx9vp4WtG+132vbsxshRWKJzKS4w= ARC-Authentication-Results: i=1; mx.zoho.com; spf=pass (zoho.com: domain of gnu.org designates 209.51.188.17 as permitted sender) smtp.mailfrom=qemu-devel-bounces+importer=patchew.org@nongnu.org; dmarc=fail header.from= (p=none dis=none) header.from= Return-Path: Received: from lists.gnu.org (lists.gnu.org [209.51.188.17]) by mx.zohomail.com with SMTPS id 1567073260415576.7511739482684; Thu, 29 Aug 2019 03:07:40 -0700 (PDT) Received: from localhost ([::1]:47630 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1i3HL7-0007al-Sy for importer@patchew.org; Thu, 29 Aug 2019 06:07:37 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:44037) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1i3HJE-0005YA-FY for qemu-devel@nongnu.org; Thu, 29 Aug 2019 06:05:42 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1i3HJD-0008Up-IO for qemu-devel@nongnu.org; Thu, 29 Aug 2019 06:05:40 -0400 Received: from mx1.redhat.com ([209.132.183.28]:46046) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1i3HJB-0008Qh-C6; Thu, 29 Aug 2019 06:05:37 -0400 Received: from smtp.corp.redhat.com (int-mx05.intmail.prod.int.phx2.redhat.com [10.5.11.15]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 881F118C4264; Thu, 29 Aug 2019 10:05:36 +0000 (UTC) Received: from x1w.redhat.com (unknown [10.40.205.194]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 17C0C5D6B2; Thu, 29 Aug 2019 10:05:34 +0000 (UTC) From: =?UTF-8?q?Philippe=20Mathieu-Daud=C3=A9?= To: John Snow , qemu-devel@nongnu.org Date: Thu, 29 Aug 2019 12:05:21 +0200 Message-Id: <20190829100521.12143-3-philmd@redhat.com> In-Reply-To: <20190829100521.12143-1-philmd@redhat.com> References: <20190829100521.12143-1-philmd@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.15 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.6.2 (mx1.redhat.com [10.5.110.62]); Thu, 29 Aug 2019 10:05:36 +0000 (UTC) Content-Transfer-Encoding: quoted-printable X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 209.132.183.28 Subject: [Qemu-devel] [PATCH 2/2] scripts/git.orderfile: Order shell scripts before unordered files X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: =?UTF-8?q?Philippe=20Mathieu-Daud=C3=A9?= , qemu-block@nongnu.org Errors-To: qemu-devel-bounces+importer=patchew.org@nongnu.org Sender: "Qemu-devel" Content-Type: text/plain; charset="utf-8" Order shell scripts before the rest of unordered files. This helps in particular while reviewing iotests. Signed-off-by: Philippe Mathieu-Daud=C3=A9 Reviewed-by: Eric Blake Reviewed-by: John Snow Reviewed-by: Stefano Garzarella --- scripts/git.orderfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/scripts/git.orderfile b/scripts/git.orderfile index 0ad5b9b8a8..4d25153ea4 100644 --- a/scripts/git.orderfile +++ b/scripts/git.orderfile @@ -28,3 +28,7 @@ Makefile* *.c *.py =20 +# shell scripts +*.rc +*.sh + --=20 2.20.1