From patchwork Thu Sep 29 14:36: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: 17466 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 F08B8C327E for ; Thu, 29 Sep 2022 14:36:40 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id 9F5D162394; Thu, 29 Sep 2022 16:36:38 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=libcamera.org; s=mail; t=1664462198; bh=yTq/W7BEXXrB/E07V4JcKv7nf4H2pejWmU8zH9vfioY=; 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=unz7e40ME1nyncSLwSv+M2fskiUQxyFBgsrIy8yzBK1uD4Rmw83qm864q7oK2ibGR QWUmkhc41ajXEka7ca6KkQNpKxR/uCd4tqv2xXjgThcWP5G76utgLokrWODVJQWJMH +ofuaKf51y0OKcmRTUv+BDfwLeeoCr3FsVDH/FYiEQVphMZiwAtmHlamwfV70pqH3j srWWB8fifxPaRTGoq4v2Ei7OMInb8ceMoi7GskvqprGXp0fWDp7R2dTXRmVaRFAl5Y nQ3pWHj/TiIn+IhFEuojCo7RByiPs+JWGvhxCqjDDlaPD2P1RP0Abru8VtZ7CRCGA8 QCYo13MdGp8/w== Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [213.167.242.64]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id 4CD2962272 for ; Thu, 29 Sep 2022 16:36:35 +0200 (CEST) Authentication-Results: lancelot.ideasonboard.com; dkim=pass (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="hbwF5yNh"; 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 D44BE823; Thu, 29 Sep 2022 16:36:34 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1664462195; bh=yTq/W7BEXXrB/E07V4JcKv7nf4H2pejWmU8zH9vfioY=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=hbwF5yNhWqQVKbnGtZ7cSeuvV9xWa8H7YJokIsuQl1/5fn9q8IQxY/uRBiN5PNeqj y0oVWAo+XL/R7svHYKF3m4NybAn/vDTFvIId8bg+HM991Jy+8x7haNybnGRfnVKdIY jAWhG9fuBC4ieBwN1mz+hve3UqBOnWtAD9a2naXU= To: libcamera devel Date: Thu, 29 Sep 2022 15:36:25 +0100 Message-Id: <20220929143626.3100668-4-kieran.bingham@ideasonboard.com> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20220929143626.3100668-1-kieran.bingham@ideasonboard.com> References: <20220929143626.3100668-1-kieran.bingham@ideasonboard.com> MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH 3/4] 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 --- 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]*'