From patchwork Fri Sep 30 23:28:25 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Kieran Bingham X-Patchwork-Id: 17480 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 89CC1C327F for ; Fri, 30 Sep 2022 23:28:40 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id 07DF762866; Sat, 1 Oct 2022 01:28:39 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=libcamera.org; s=mail; t=1664580519; bh=PuN9rlgrcfTyXtsjXTygTaekiAWQVl5FCxfMIkr3pDI=; h=To:Date:In-Reply-To:References:Subject:List-Id:List-Unsubscribe: List-Archive:List-Post:List-Help:List-Subscribe:From:Reply-To: From; b=TL9PjWtQfGbFSOb/Wa+Dvo2kYYflM2XzArtRjfgicWL8uqWG34723jmGh5fyv/2Cu klfLBTk3lEKTsy986ebFd6BKf4MC2M/960fygppVZdpxCQRccUyeg0ntoe2cD4JRg+ 99ue1nffMls6aqQB98pmyip3X5/6+EDPsIizg+XXgky89+I9dcXO1Ldp3S67Nnt+H6 yhR+iqpGh7ksFC7I/L7ZI6YiU4yn+oaiunWDSz+x1tNgvduo0Ol/dooI46WkpGfw1U 2D3XWnmJmHAL2q4wU7LREWoNcJE7eygYkRHs758gqdeMUEvxnEQOgYmRL+/1cBgl99 Y8vxBzcXKEQbg== Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [213.167.242.64]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id 2B38062854 for ; Sat, 1 Oct 2022 01:28:36 +0200 (CEST) Authentication-Results: lancelot.ideasonboard.com; dkim=pass (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="iKy3VfyB"; dkim-atps=neutral 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 B33DE1057; Sat, 1 Oct 2022 01:28:35 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1664580515; bh=PuN9rlgrcfTyXtsjXTygTaekiAWQVl5FCxfMIkr3pDI=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=iKy3VfyBflDE0bLLKlU3hn3U2XlmBlhetgI82MVwafBXhCj7xRVOCxs8pf8BYhH0P sZcuywgHxlPAR53Yq9PFcW5tvR3p8pWEa/w+UmQFC70wVru33vltxEg/jsvhvq2RS2 A/lS3sBkd25lHL+S+zLqHVxGNPmp/J9mrgoLZFk0= To: libcamera devel Date: Sat, 1 Oct 2022 00:28:25 +0100 Message-Id: <20220930232826.82753-5-kieran.bingham@ideasonboard.com> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20220930232826.82753-1-kieran.bingham@ideasonboard.com> References: <20220930232826.82753-1-kieran.bingham@ideasonboard.com> MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH v2 4/5] utils: semver: Document licence and source 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: , X-Patchwork-Original-From: Kieran Bingham via libcamera-devel From: Kieran Bingham Reply-To: Kieran Bingham Errors-To: libcamera-devel-bounces@lists.libcamera.org Sender: "libcamera-devel" Add the SPDX header, and a reference to the upstream source for this helper script. Signed-off-by: Kieran Bingham Reviewed-by: Laurent Pinchart Reviewed-by: Jacopo Mondi --- This is kept separate to highlight this is a modification from the original. utils/semver | 3 +++ 1 file changed, 3 insertions(+) diff --git a/utils/semver b/utils/semver index 5b25f40ba48c..e9d092d94446 100755 --- a/utils/semver +++ b/utils/semver @@ -1,5 +1,8 @@ #!/usr/bin/env bash +# SPDX-License-Identifier: Apache-2.0 +# https://github.com/fsaintjacques/semver-tool + set -o errexit -o nounset -o pipefail NAT='0|[1-9][0-9]*'