package/open62541: fix CPE_ID_VERSION

Remove the prepended 'v' coming from the git version to correctly match
with vulnerability such as [1]

[1] https://nvd.nist.gov/vuln/detail/CVE-2022-25761

Signed-off-by: Thomas Perale <thomas.perale@mind.be>
Signed-off-by: Julien Olivain <ju.o@free.fr>
This commit is contained in:
Thomas Perale
2026-07-06 12:03:00 +02:00
committed by Julien Olivain
parent fe1f45c133
commit 03d952c5e2

View File

@@ -4,7 +4,8 @@
# #
################################################################################ ################################################################################
OPEN62541_VERSION = v1.3.15 OPEN62541_VERSION_UPSTREAM = 1.3.15
OPEN62541_VERSION = v$(OPEN62541_VERSION_UPSTREAM)
OPEN62541_SITE_METHOD = git OPEN62541_SITE_METHOD = git
OPEN62541_SITE = https://github.com/open62541/open62541.git OPEN62541_SITE = https://github.com/open62541/open62541.git
OPEN62541_GIT_SUBMODULES = YES OPEN62541_GIT_SUBMODULES = YES
@@ -12,6 +13,7 @@ OPEN62541_INSTALL_STAGING = YES
OPEN62541_LICENSE = MPL-2.0 OPEN62541_LICENSE = MPL-2.0
OPEN62541_LICENSE_FILES = LICENSE OPEN62541_LICENSE_FILES = LICENSE
OPEN62541_CPE_ID_VENDOR = open62541 OPEN62541_CPE_ID_VENDOR = open62541
OPEN62541_CPE_ID_VERSION = $(OPEN62541_VERSION_UPSTREAM)
# Force Release build to remove -Werror. # Force Release build to remove -Werror.
# Don't use git describe to get the version number. # Don't use git describe to get the version number.