From f846d3934d0f6ca894a5f442f13dbd8fc2c2d5cb Mon Sep 17 00:00:00 2001 From: Patrick Williams Date: Mon, 29 Aug 2022 16:55:59 -0500 Subject: [PATCH] unifex: remove recipe I don't think anyone else is using this since nobody has requested an update from the original SRCREV I pushed up originally. The original authors of libunifex have moved in another direction so I've decided not to use it in my downstream project(s) also. Anyone wanting to use something like libunifex should probably look to https://github.com/brycelelbach/wg21_p2300_std_execution , which is where the proposals for future C++ standards in this space are being developed. Signed-off-by: Patrick Williams Signed-off-by: Khem Raj --- meta-oe/recipes-devtools/unifex/unifex_git.bb | 24 ------------------- 1 file changed, 24 deletions(-) delete mode 100644 meta-oe/recipes-devtools/unifex/unifex_git.bb diff --git a/meta-oe/recipes-devtools/unifex/unifex_git.bb b/meta-oe/recipes-devtools/unifex/unifex_git.bb deleted file mode 100644 index 85fe39b6de..0000000000 --- a/meta-oe/recipes-devtools/unifex/unifex_git.bb +++ /dev/null @@ -1,24 +0,0 @@ -DESCRIPTION = "C++ Unified Executors library" -HOMEPAGE = "https://github.com/facebookexperimental/libunifex" -SECTION = "libs" -LICENSE = "Apache-2.0-with-LLVM-exception" -LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=5b86506074cb3cdc493b4f96b73b2909" - -SRC_URI = "git://github.com/facebookexperimental/libunifex.git;branch=main;protocol=https" -SRCREV = "9df21c58d34ce8a1cd3b15c3a7347495e29417a0" - -S = "${WORKDIR}/git" - -inherit cmake pkgconfig - -PACKAGECONFIG ??= "liburing" -PACKAGECONFIG[liburing] = ",,liburing" - -EXTRA_OECMAKE += " \ - -DBUILD_SHARED_LIBS=ON \ - -DBUILD_TESTING=OFF \ - -DCMAKE_CXX_STANDARD=20 \ - -DUNIFEX_BUILD_EXAMPLES=OFF \ - " - -BBCLASSEXTEND = "native nativesdk"