From patchwork Thu Oct 13 09:59:54 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Kieran Bingham X-Patchwork-Id: 17590 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 934C8BD16B for ; Thu, 13 Oct 2022 10:00:04 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id 616BF62DB3; Thu, 13 Oct 2022 12:00:03 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=libcamera.org; s=mail; t=1665655203; bh=M/XZLHBZn8saNkS40YElh9uqENt3snyj27ZiVTG318w=; h=To:Date:Subject:List-Id:List-Unsubscribe:List-Archive:List-Post: List-Help:List-Subscribe:From:Reply-To:From; b=ChGKLYgGSduKrpTbFB0qI7tt/vTDtO+LR+Eb3hymDZpneiL/eR+lz6gWp6XTxOWQQ Yh4T+xYKUbnI1J8eu91OUVwYFf0+eV+fOq4NNOIGVH7uqzFfus+JR3sbqNs00nkbYE jdgQCuka8NmgVB5kKFmAsCU+OR7b4kBBWuRraPysSntzBwG/JtmSsIi4NHEUFTfIfZ 4ikgSDMtB9lx2ZrAdWYY+CbXp6BScr7RuhsdAXk77xo0jpiV+cGZpomxqiDzXITxaR OioLeZ9uebYfRlzggt87qxvx6NpJcf6XBrONfJ1ylWMuttWBSyvcviD0BPVT6cDM/S 2JjSJ1s4qQuUA== Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [IPv6:2001:4b98:dc2:55:216:3eff:fef7:d647]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id B84B361F6E for ; Thu, 13 Oct 2022 12:00:01 +0200 (CEST) Authentication-Results: lancelot.ideasonboard.com; dkim=pass (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="CtL3UXKk"; dkim-atps=neutral Received: from Monstersaurus.ksquared.org.uk.beta.tailscale.net (cpc89244-aztw30-2-0-cust3082.18-1.cable.virginm.net [86.31.172.11]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id 2A618492; Thu, 13 Oct 2022 12:00:01 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1665655201; bh=M/XZLHBZn8saNkS40YElh9uqENt3snyj27ZiVTG318w=; h=From:To:Cc:Subject:Date:From; b=CtL3UXKk+AF8MYFFAWYTrE5v3jTVFrODML2Pop5MIBMeLrNHpuRv6nRG8spDggqC8 KaC/3l8nwY57Cs17AqbQOYT6qYUvgDKSTb/rK0ZerOABz9WvEiUF5DHhHoJjlY8nlF W/DSF9Eqn8gZLNXsa/VCc+VzYVnSm7Vfm1OuZZlk= To: libcamera devel Date: Thu, 13 Oct 2022 10:59:54 +0100 Message-Id: <20221013095957.1642901-1-kieran.bingham@ideasonboard.com> X-Mailer: git-send-email 2.34.1 MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH v4 0/3] Add release infrastructure 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" To facilitate making releases of libcamera, extend the shared_library targets for libcamera and libcamera-base to include both the major, minor and patch component in the soname. This could be reduced to only the major and minor when we release any stable branches. Furthermore, add a semver helper script, taken from https://github.com/fsaintjacques/semver-tool to facilitate working with semver values. Finally, provide a helper release script which will update the version of the top level meson.build and tag it accordingly. The releaser has the opportunity to provide a description and release message detailing what this release covers. In the event that the sources (meson.project_version(), and utils/gen-version.sh) disagree, the meson.project_version() becomes the source of truth, while the git version information for the sha1 is retained. A warning message will be printed, both at the time of detection, and within the Versions summary section to highlight this. libcamera 1.0.0 Versions libcamera git version : 0.0.0+3990-cd68bb99-dirty (2022-10-13T10:38:15+01:00) Source version match : NO Sources : 1.0.0+3990-cd68bb99-dirty (2022-10-13T10:38:15+01:00)-nvm Kieran Bingham (3): meson: Shared Object version handling utils: semver: Add version helper utils: Provide a release script Documentation/Doxyfile.in | 2 + meson.build | 32 +++ src/libcamera/base/meson.build | 1 + src/libcamera/meson.build | 1 + utils/release.sh | 46 ++++ utils/semver | 446 +++++++++++++++++++++++++++++++++ 6 files changed, 528 insertions(+) create mode 100755 utils/release.sh create mode 100755 utils/semver