From: Alexander Kanavin Date: Fri, 30 Aug 2019 20:21:11 +0000 (+0200) Subject: libffi: fix upstream version check X-Git-Tag: uninative-2.7~332 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=5850d42187de00db4b0c01ba97fe41aaec3f6613;p=openembedded-core.git libffi: fix upstream version check As there is no version newer than 3.3-rc0 yet, an exception from the check is needed. Signed-off-by: Alexander Kanavin Signed-off-by: Richard Purdie --- diff --git a/meta/recipes-support/libffi/libffi_3.3~rc0.bb b/meta/recipes-support/libffi/libffi_3.3~rc0.bb index 3e2845546e..8acb699d4a 100644 --- a/meta/recipes-support/libffi/libffi_3.3~rc0.bb +++ b/meta/recipes-support/libffi/libffi_3.3~rc0.bb @@ -16,6 +16,9 @@ SRC_URI = "https://github.com/libffi/libffi/releases/download/v3.3-rc0/libffi-3. " SRC_URI[md5sum] = "8d2a82a78faf10a5e53c27d986e8f04e" SRC_URI[sha256sum] = "403d67aabf1c05157855ea2b1d9950263fb6316536c8c333f5b9ab1eb2f20ecf" +UPSTREAM_CHECK_URI = "https://github.com/libffi/libffi/releases/" +UPSTREAM_CHECK_REGEX = "libffi-(?P\d+(\.\d+)+)\.tar" +UPSTREAM_VERSION_UNKNOWN = "1" EXTRA_OECONF += "--disable-builddir" EXTRA_OEMAKE_class-target = "LIBTOOLFLAGS='--tag=CC'"