From patchwork Thu Aug 12 08:45:01 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Kieran Bingham X-Patchwork-Id: 13325 Return-Path: X-Original-To: parsemail@patchwork.libcamera.org Delivered-To: parsemail@patchwork.libcamera.org Received: from lancelot.ideasonboard.com (lancelot.ideasonboard.com [92.243.16.209]) by patchwork.libcamera.org (Postfix) with ESMTPS id 68A7FBD87D for ; Thu, 12 Aug 2021 08:45:07 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id CA74A68886; Thu, 12 Aug 2021 10:45:06 +0200 (CEST) Authentication-Results: lancelot.ideasonboard.com; dkim=fail reason="signature verification failed" (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="APQzpt+W"; dkim-atps=neutral Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [213.167.242.64]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id 21D4860261 for ; Thu, 12 Aug 2021 10:45:05 +0200 (CEST) Received: from Monstersaurus.local (cpc89244-aztw30-2-0-cust3082.18-1.cable.virginm.net [86.31.172.11]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id A8DB2EE; Thu, 12 Aug 2021 10:45:04 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1628757904; bh=7pE2Wxn4EE3EuD8BHBMc0LIyMu/YNFNgVzY4bpQCeFs=; h=From:To:Cc:Subject:Date:From; b=APQzpt+Wb5DDHr6f7vv4VJyx9owQp0vvrSgJa/WMq8V+xIvtjxc99po1cOTVXmp3b 7D6lBlnVyXsdfdHI4iSEys20veF9T5A0YRPIvvzONPo51rH+H5c7YJCOcbwAoCp/ie qAtUUuJNQTK9a+C+c+I2ZpcjrENPh/vVzNEaMfBE= From: Kieran Bingham To: libcamera devel Date: Thu, 12 Aug 2021 09:45:01 +0100 Message-Id: <20210812084501.2883780-1-kieran.bingham@ideasonboard.com> X-Mailer: git-send-email 2.30.2 MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH] clang-format: Bump minimum version requirements X-BeenThere: libcamera-devel@lists.libcamera.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: libcamera-devel-bounces@lists.libcamera.org Sender: "libcamera-devel" The .clang-format file uses CaseSensitive on Regex rules for Include Categories. Without this, it would not be possible to distinguish between QT headers which commence with a 'Q' verses system headers including . While we have more wider support for libcamera to run and build on older platforms, it should be safe to assume that developers who need to run checkstyle can update their clang-format to a modern version. clang-format-12 is supported in Ubuntu 20.04 in the updates category, and in Debian sid. More recent versions of Ubuntu ship with clang-format-12 or later by default, and other distributions may of course vary further. Signed-off-by: Kieran Bingham --- .clang-format | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.clang-format b/.clang-format index ff60b928affc..df1421fe94a8 100644 --- a/.clang-format +++ b/.clang-format @@ -1,6 +1,6 @@ # SPDX-License-Identifier: GPL-2.0-only # -# clang-format configuration file. Intended for clang-format >= 7. +# clang-format configuration file. Intended for clang-format >= 12. # # For more information, see: #