summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta-oe/recipes-core/dbus-cxx/dbus-cxx_2.5.1.bb25
-rw-r--r--meta-oe/recipes-core/dbus-cxx/dbus-cxx_2.5.2.bb49
-rw-r--r--meta-oe/recipes-core/libsigc++-2.0/libsigc++-3_3.6.0.bb2
-rw-r--r--meta-oe/recipes-core/mm-common/mm-common_1.0.4.bb2
-rw-r--r--meta-oe/recipes-devtools/cppgenerate/cppgenerate_0.3.bb14
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 @@
1SUMMARY = "D-Bus wrapper in C++ for dbus"
2HOMEPAGE = "https://dbus-cxx.github.io/"
3BUGTRACKER = "https://github.com/libsigcplusplus/libsigcplusplus/issues"
4SECTION = "base"
5LICENSE = "LGPL-3.0-or-later | BSD-3-Clause"
6LIC_FILES_CHKSUM = "file://COPYING;md5=24594f493407a4cd401ce9794e0b9308"
7
8SRC_URI = "git://github.com/dbus-cxx/dbus-cxx.git;branch=master;protocol=https"
9SRCREV = "732a5becb4349e02ffce407a3fd4d75cc3d82421"
10
11DEPENDS = "\
12 dbus \
13 libsigc++-3 \
14"
15
16RDEPENDS:${PN} = "\
17 dbus \
18 libsigc++-3 \
19"
20
21S = "${WORKDIR}/git"
22
23inherit pkgconfig cmake
24
25OECMAKE_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 @@
1SUMMARY = "D-Bus implementation in C++"
2HOMEPAGE = "https://dbus-cxx.github.io/"
3BUGTRACKER = "https://github.com/dbus-cxx/dbus-cxx/issues"
4SECTION = "base"
5LICENSE = "LGPL-3.0-or-later | BSD-3-Clause"
6LIC_FILES_CHKSUM = "file://COPYING;md5=24594f493407a4cd401ce9794e0b9308"
7
8SRC_URI = "git://github.com/dbus-cxx/dbus-cxx.git;branch=master;protocol=https"
9SRCREV = "f2637e726207ecfbdaaf02744e1b36e54f929c9d"
10
11DEPENDS = "\
12 dbus \
13 libsigc++-3 \
14"
15
16RDEPENDS:${PN} = "\
17 dbus \
18 libsigc++-3 \
19"
20
21S = "${WORKDIR}/git"
22
23inherit pkgconfig cmake
24
25OECMAKE_FIND_ROOT_PATH_MODE_PROGRAM = "BOTH"
26EXTRA_OECMAKE = "-DBUILD_TESTING=OFF -DTOOLS_BUNDLED_CPPGENERATE=OFF"
27
28PACKAGECONFIG ??= ""
29PACKAGECONFIG:class-native ?= "tools"
30PACKAGECONFIG:class-nativesdk ?= "tools"
31
32PACKAGECONFIG[tools] = "-DENABLE_TOOLS=ON,-DENABLE_TOOS=OFF,popt cppgenerate"
33PACKAGECONFIG[glib] = "-DENABLE_GLIB_SUPPORT=ON,-DENABLE_GLIB_SUPPORT=OFF,glib-2.0"
34PACKAGECONFIG[uv] = "-DENABLE_UV_SUPPORT=ON,-DENABLE_UV_SUPPORT=OFF,libuv"
35
36PACKAGES =+ " ${PN}-tools ${PN}-glib ${PN}-uv ${PN}-glib-dev ${PN}-uv-dev "
37FILES:${PN}-tools = "${bindir}/dbus-cxx-xml2cpp ${bindir}/dbus-cxx-introspect"
38FILES:${PN}-glib = "${libdir}/libdbus-cxx-glib.so.* "
39FILES:${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 "
43FILES:${PN}-uv = "${libdir}/libdbus-cxx-uv.so.* "
44FILES:${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
49BBCLASSEXTEND="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
18FILES:${PN}-dev += "${libdir}/sigc++-*/" 18FILES:${PN}-dev += "${libdir}/sigc++-*/"
19FILES:${PN}-doc += "${datadir}/devhelp" 19FILES:${PN}-doc += "${datadir}/devhelp"
20 20
21BBCLASSEXTEND = "native" 21BBCLASSEXTEND = "native nativesdk"
22SECURITY_CFLAGS = "${SECURITY_NO_PIE_CFLAGS}" 22SECURITY_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
11SRC_URI[archive.sha256sum] = "e954c09b4309a7ef93e13b69260acdc5738c907477eb381b78bb1e414ee6dbd8" 11SRC_URI[archive.sha256sum] = "e954c09b4309a7ef93e13b69260acdc5738c907477eb381b78bb1e414ee6dbd8"
12SRC_URI += "file://0001-meson.build-do-not-ask-for-python-installation-versi.patch" 12SRC_URI += "file://0001-meson.build-do-not-ask-for-python-installation-versi.patch"
13 13
14BBCLASSEXTEND = "native" 14BBCLASSEXTEND = "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
17FILES:${PN} = "" 17FILES:${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 @@
1SUMMARY = "C++ Code Generator library"
2BUGTRACKER = "https://github.com/rm5248/libcppgenerate/issues"
3SECTION = "libs"
4LICENSE = "Apache-2.0"
5LIC_FILES_CHKSUM = "file://LICENSE;md5=fa818a259cbed7ce8bc2a22d35a464fc"
6
7SRC_URI = "git://github.com/rm5248/libcppgenerate.git;branch=master;protocol=https"
8SRCREV = "930c5503f76c877b72b9ff8546353d6f422bd010"
9
10S = "${WORKDIR}/git"
11
12inherit cmake
13
14BBCLASSEXTEND="native nativesdk"