meson: Manually fix *DATA_VERSON *PLUGIN_VERSION and *SYSCONF_VERSION for 3.2

This applies the same logic of *DATADIR, *PLUGINDIR and *SYSCONFDIR below.
That is because, on the same stable series, minor versions do not coexist.

I confirmed that on GIMP 2.8 and 2.10 .exe and .dmg installers from gimp.org.

Yet, we don'have anything automated in that regard on the meson.build nor
even documented on https://developer.gimp.org/core/maintainer/versioning/.
This commit is contained in:
Bruno Lopes 2026-01-02 12:50:35 -03:00
parent f4469cd01e
commit d458b242ed

View file

@ -1597,9 +1597,9 @@ conf.set_quoted('GIMP_APP_VERSION_STRING',gimp_app_version)
conf.set_quoted('GIMP_APP_VERSION', gimp_app_version)
conf.set_quoted('GIMP_USER_VERSION', gimp_app_version)
conf.set_quoted('GIMP_DATA_VERSION', gimp_app_version)
conf.set_quoted('GIMP_PLUGIN_VERSION', gimp_app_version)
conf.set_quoted('GIMP_SYSCONF_VERSION', gimp_app_version)
conf.set_quoted('GIMP_DATA_VERSION', gimp_api_version)
conf.set_quoted('GIMP_PLUGIN_VERSION', gimp_api_version)
conf.set_quoted('GIMP_SYSCONF_VERSION', gimp_api_version)
conf.set_quoted('GIMP_TOOL_VERSION', gimp_app_version)
conf.set_quoted('GIMP_PKGCONFIG_VERSION', gimp_api_version)