Change version to 3.17.1-rc0
authorBernd Schubert <bernd@bsbernd.com>
Mon, 10 Feb 2025 01:36:39 +0000 (02:36 +0100)
committerBernd Schubert <bernd@bsbernd.com>
Mon, 10 Feb 2025 15:56:45 +0000 (16:56 +0100)
Somehow really hard to set -rcX with meson.

Signed-off-by: Bernd Schubert <bernd@bsbernd.com>
lib/meson.build
meson.build

index e201a5a98134cefc8357c856b7a8cf316df28fdd..6a52d06a9a170973f2f948d150c9f9bdebf376d2 100644 (file)
@@ -33,9 +33,13 @@ else
 endif
 
 fusermount_path = join_paths(get_option('prefix'), get_option('bindir'))
-libfuse = library('fuse3', libfuse_sources, version: meson.project_version(),
-                  soversion: '4', include_directories: include_dirs,
-                  dependencies: deps, install: true,
+libfuse = library('fuse3',
+                  libfuse_sources,
+                  version: base_version,
+                  soversion: '4',
+                  include_directories: include_dirs,
+                  dependencies: deps,
+                  install: true,
                   link_depends: 'fuse_versionscript',
                   c_args: [ '-DFUSE_USE_VERSION=317',
                             '-DFUSERMOUNT_DIR="@0@"'.format(fusermount_path) ],
index f05b94fb0c20a01b0b615469c5f07f6fc8990afb..e191fc62c1e721774f24cc4dd70a8648940a762f 100644 (file)
@@ -1,5 +1,6 @@
-project('libfuse3', ['c'], version: '3.17.0',
-        meson_version: '>= 0.51',
+project('libfuse3', ['c'],
+        version: '3.17.1-rc0',  # Version with RC suffix
+        meson_version: '>= 0.51.0',
         default_options: [
             'buildtype=debugoptimized',
             'c_std=gnu11',
@@ -11,10 +12,16 @@ project('libfuse3', ['c'], version: '3.17.0',
 # from integers, i.e. concatenating strings instead
 # of splitting a string, but 'project' needs to be
 # the first meson.build keyword...
-version_list = meson.project_version().split('.')
+
+# split version into base and rc
+version_parts = meson.project_version().split('-')
+base_version = version_parts[0]
+
+version_list = base_version.split('.')
 FUSE_MAJOR_VERSION = version_list[0]
 FUSE_MINOR_VERSION = version_list[1]
 FUSE_HOTFIX_VERSION = version_list[2]
+FUSE_RC_VERSION = version_parts.length() > 1 ? version_parts[1] : ''
 
 platform = host_machine.system()
 if platform == 'darwin'
@@ -28,12 +35,6 @@ endif
 
 cc = meson.get_compiler('c')
 
-#
-# Feature detection, only available at libfuse compilation time,
-# but not for application linking to libfuse.
-#
-private_cfg = configuration_data()
-
 #
 # Feature detection, the resulting config file is installed
 # with the package.
@@ -46,6 +47,7 @@ public_cfg = configuration_data()
 public_cfg.set('FUSE_MAJOR_VERSION', FUSE_MAJOR_VERSION)
 public_cfg.set('FUSE_MINOR_VERSION', FUSE_MINOR_VERSION)
 public_cfg.set('FUSE_HOTFIX_VERSION', FUSE_HOTFIX_VERSION)
+public_cfg.set('FUSE_RC_VERSION', FUSE_RC_VERSION)
 
 # Default includes when checking for presence of functions and
 # struct members
@@ -60,6 +62,11 @@ include_default = '''
 '''
 args_default = [ '-D_GNU_SOURCE' ]
 
+#
+# Feature detection, only available at libfuse compilation time,
+# but not for application linking to libfuse.
+#
+private_cfg = configuration_data()
 private_cfg.set_quoted('PACKAGE_VERSION', meson.project_version())
 
 # Test for presence of some functions