diff options
5 files changed, 65 insertions, 27 deletions
diff --git a/meta-oe/recipes-core/dbus-cxx/dbus-cxx_2.5.1.bb b/meta-oe/recipes-core/dbus-cxx/dbus-cxx_2.5.1.bb deleted file mode 100644 index e89d1327e8..0000000000 --- a/meta-oe/recipes-core/dbus-cxx/dbus-cxx_2.5.1.bb +++ /dev/null | |||
@@ -1,25 +0,0 @@ | |||
1 | SUMMARY = "D-Bus wrapper in C++ for dbus" | ||
2 | HOMEPAGE = "https://dbus-cxx.github.io/" | ||
3 | BUGTRACKER = "https://github.com/libsigcplusplus/libsigcplusplus/issues" | ||
4 | SECTION = "base" | ||
5 | LICENSE = "LGPL-3.0-or-later | BSD-3-Clause" | ||
6 | LIC_FILES_CHKSUM = "file://COPYING;md5=24594f493407a4cd401ce9794e0b9308" | ||
7 | |||
8 | SRC_URI = "git://github.com/dbus-cxx/dbus-cxx.git;branch=master;protocol=https" | ||
9 | SRCREV = "732a5becb4349e02ffce407a3fd4d75cc3d82421" | ||
10 | |||
11 | DEPENDS = "\ | ||
12 | dbus \ | ||
13 | libsigc++-3 \ | ||
14 | " | ||
15 | |||
16 | RDEPENDS:${PN} = "\ | ||
17 | dbus \ | ||
18 | libsigc++-3 \ | ||
19 | " | ||
20 | |||
21 | S = "${WORKDIR}/git" | ||
22 | |||
23 | inherit pkgconfig cmake | ||
24 | |||
25 | OECMAKE_FIND_ROOT_PATH_MODE_PROGRAM = "BOTH" | ||
diff --git a/meta-oe/recipes-core/dbus-cxx/dbus-cxx_2.5.2.bb b/meta-oe/recipes-core/dbus-cxx/dbus-cxx_2.5.2.bb new file mode 100644 index 0000000000..fbe1e34751 --- /dev/null +++ b/meta-oe/recipes-core/dbus-cxx/dbus-cxx_2.5.2.bb | |||
@@ -0,0 +1,49 @@ | |||
1 | SUMMARY = "D-Bus implementation in C++" | ||
2 | HOMEPAGE = "https://dbus-cxx.github.io/" | ||
3 | BUGTRACKER = "https://github.com/dbus-cxx/dbus-cxx/issues" | ||
4 | SECTION = "base" | ||
5 | LICENSE = "LGPL-3.0-or-later | BSD-3-Clause" | ||
6 | LIC_FILES_CHKSUM = "file://COPYING;md5=24594f493407a4cd401ce9794e0b9308" | ||
7 | |||
8 | SRC_URI = "git://github.com/dbus-cxx/dbus-cxx.git;branch=master;protocol=https" | ||
9 | SRCREV = "f2637e726207ecfbdaaf02744e1b36e54f929c9d" | ||
10 | |||
11 | DEPENDS = "\ | ||
12 | dbus \ | ||
13 | libsigc++-3 \ | ||
14 | " | ||
15 | |||
16 | RDEPENDS:${PN} = "\ | ||
17 | dbus \ | ||
18 | libsigc++-3 \ | ||
19 | " | ||
20 | |||
21 | S = "${WORKDIR}/git" | ||
22 | |||
23 | inherit pkgconfig cmake | ||
24 | |||
25 | OECMAKE_FIND_ROOT_PATH_MODE_PROGRAM = "BOTH" | ||
26 | EXTRA_OECMAKE = "-DBUILD_TESTING=OFF -DTOOLS_BUNDLED_CPPGENERATE=OFF" | ||
27 | |||
28 | PACKAGECONFIG ??= "" | ||
29 | PACKAGECONFIG:class-native ?= "tools" | ||
30 | PACKAGECONFIG:class-nativesdk ?= "tools" | ||
31 | |||
32 | PACKAGECONFIG[tools] = "-DENABLE_TOOLS=ON,-DENABLE_TOOS=OFF,popt cppgenerate" | ||
33 | PACKAGECONFIG[glib] = "-DENABLE_GLIB_SUPPORT=ON,-DENABLE_GLIB_SUPPORT=OFF,glib-2.0" | ||
34 | PACKAGECONFIG[uv] = "-DENABLE_UV_SUPPORT=ON,-DENABLE_UV_SUPPORT=OFF,libuv" | ||
35 | |||
36 | PACKAGES =+ " ${PN}-tools ${PN}-glib ${PN}-uv ${PN}-glib-dev ${PN}-uv-dev " | ||
37 | FILES:${PN}-tools = "${bindir}/dbus-cxx-xml2cpp ${bindir}/dbus-cxx-introspect" | ||
38 | FILES:${PN}-glib = "${libdir}/libdbus-cxx-glib.so.* " | ||
39 | FILES:${PN}-glib-dev = "${includedir}/dbus-cxx-glib-2.0/* \ | ||
40 | ${libdir}/pkgconfig/dbus-cxx-glib-2.0.pc \ | ||
41 | ${libdir}/libdbus-cxx-glib.so \ | ||
42 | " | ||
43 | FILES:${PN}-uv = "${libdir}/libdbus-cxx-uv.so.* " | ||
44 | FILES:${PN}-uv-dev = "${includedir}/dbus-cxx-uv-2.0/* \ | ||
45 | ${libdir}/pkgconfig/dbus-cxx-uv-2.0.pc\ | ||
46 | ${libdir}/libdbus-cxx-uv.so \ | ||
47 | " | ||
48 | |||
49 | BBCLASSEXTEND="native nativesdk" | ||
diff --git a/meta-oe/recipes-core/libsigc++-2.0/libsigc++-3_3.6.0.bb b/meta-oe/recipes-core/libsigc++-2.0/libsigc++-3_3.6.0.bb index a25e6c1001..b3875e8436 100644 --- a/meta-oe/recipes-core/libsigc++-2.0/libsigc++-3_3.6.0.bb +++ b/meta-oe/recipes-core/libsigc++-2.0/libsigc++-3_3.6.0.bb | |||
@@ -18,5 +18,5 @@ inherit setuptools3 meson | |||
18 | FILES:${PN}-dev += "${libdir}/sigc++-*/" | 18 | FILES:${PN}-dev += "${libdir}/sigc++-*/" |
19 | FILES:${PN}-doc += "${datadir}/devhelp" | 19 | FILES:${PN}-doc += "${datadir}/devhelp" |
20 | 20 | ||
21 | BBCLASSEXTEND = "native" | 21 | BBCLASSEXTEND = "native nativesdk" |
22 | SECURITY_CFLAGS = "${SECURITY_NO_PIE_CFLAGS}" | 22 | SECURITY_CFLAGS = "${SECURITY_NO_PIE_CFLAGS}" |
diff --git a/meta-oe/recipes-core/mm-common/mm-common_1.0.4.bb b/meta-oe/recipes-core/mm-common/mm-common_1.0.4.bb index 56f7b5af6f..3e99b38eb7 100644 --- a/meta-oe/recipes-core/mm-common/mm-common_1.0.4.bb +++ b/meta-oe/recipes-core/mm-common/mm-common_1.0.4.bb | |||
@@ -11,7 +11,7 @@ inherit allarch | |||
11 | SRC_URI[archive.sha256sum] = "e954c09b4309a7ef93e13b69260acdc5738c907477eb381b78bb1e414ee6dbd8" | 11 | SRC_URI[archive.sha256sum] = "e954c09b4309a7ef93e13b69260acdc5738c907477eb381b78bb1e414ee6dbd8" |
12 | SRC_URI += "file://0001-meson.build-do-not-ask-for-python-installation-versi.patch" | 12 | SRC_URI += "file://0001-meson.build-do-not-ask-for-python-installation-versi.patch" |
13 | 13 | ||
14 | BBCLASSEXTEND = "native" | 14 | BBCLASSEXTEND = "native nativesdk" |
15 | 15 | ||
16 | # These files aren't very usefull on target image, package them all in nnPN-dev | 16 | # These files aren't very usefull on target image, package them all in nnPN-dev |
17 | FILES:${PN} = "" | 17 | FILES:${PN} = "" |
diff --git a/meta-oe/recipes-devtools/cppgenerate/cppgenerate_0.3.bb b/meta-oe/recipes-devtools/cppgenerate/cppgenerate_0.3.bb new file mode 100644 index 0000000000..0d7bdc83dc --- /dev/null +++ b/meta-oe/recipes-devtools/cppgenerate/cppgenerate_0.3.bb | |||
@@ -0,0 +1,14 @@ | |||
1 | SUMMARY = "C++ Code Generator library" | ||
2 | BUGTRACKER = "https://github.com/rm5248/libcppgenerate/issues" | ||
3 | SECTION = "libs" | ||
4 | LICENSE = "Apache-2.0" | ||
5 | LIC_FILES_CHKSUM = "file://LICENSE;md5=fa818a259cbed7ce8bc2a22d35a464fc" | ||
6 | |||
7 | SRC_URI = "git://github.com/rm5248/libcppgenerate.git;branch=master;protocol=https" | ||
8 | SRCREV = "930c5503f76c877b72b9ff8546353d6f422bd010" | ||
9 | |||
10 | S = "${WORKDIR}/git" | ||
11 | |||
12 | inherit cmake | ||
13 | |||
14 | BBCLASSEXTEND="native nativesdk" | ||