[libcamera-devel,0/4] Add release infrastructure
mbox series

Message ID 20220929143626.3100668-1-kieran.bingham@ideasonboard.com
Headers show
Series
  • Add release infrastructure
Related show

Message

Kieran Bingham Sept. 29, 2022, 2:36 p.m. UTC
To facilitate making releases of libcamera, extend the shared_library
targets for libcamera and libcamera-base to include both the major and
minor component in the soname.

Add a semver helper script, taken from
https://github.com/fsaintjacques/semver-tool and separately update this
with an SPDX tag and source.

Finally, provide a helper release script which will update the version
of the top level meson.build and tag it accordingly.

Kieran Bingham (4):
  meson: Shared Object version handling
  utils: semver: Add version helper
  utils: semver: Document licence and source
  utils: Provide a release script

 meson.build                    |  15 ++
 src/libcamera/base/meson.build |   1 +
 src/libcamera/meson.build      |   1 +
 utils/release.sh               |  48 ++++
 utils/semver                   | 422 +++++++++++++++++++++++++++++++++
 5 files changed, 487 insertions(+)
 create mode 100755 utils/release.sh
 create mode 100755 utils/semver