added my Recipes

This commit is contained in:
2024-07-11 14:16:35 +02:00
parent 38bc4f53ac
commit 09b621d929
7118 changed files with 525762 additions and 3 deletions

View File

@@ -0,0 +1,26 @@
SUMMARY = "D-Bus wrapper in C++ for dbus"
HOMEPAGE = "https://dbus-cxx.github.io/"
BUGTRACKER = "https://github.com/libsigcplusplus/libsigcplusplus/issues"
SECTION = "base"
LICENSE = "LGPL-3.0-or-later | BSD-3-Clause"
LIC_FILES_CHKSUM = "file://COPYING;md5=24594f493407a4cd401ce9794e0b9308"
SRC_URI = "git://github.com/dbus-cxx/dbus-cxx.git;branch=master;protocol=https \
file://0001-Include-missing-cstdint.patch"
SRCREV = "898f6ea8f7ffe454e81a9337002df555728d4199"
DEPENDS = "\
dbus \
libsigc++-3 \
"
RDEPENDS:${PN} = "\
dbus \
libsigc++-3 \
"
S = "${WORKDIR}/git"
inherit pkgconfig cmake
OECMAKE_FIND_ROOT_PATH_MODE_PROGRAM = "BOTH"

View File

@@ -0,0 +1,30 @@
From 56e2cce87445d514c9992ecc19d03bb2115c82d6 Mon Sep 17 00:00:00 2001
From: Khem Raj <raj.khem@gmail.com>
Date: Wed, 25 Jan 2023 22:17:31 -0800
Subject: [PATCH] Include missing <cstdint>
gcc 13 moved some includes around and as a result <cstdint> is no longer transitively included [1]. Explicitly include it for uint{32,64}_t.
[1] https://gcc.gnu.org/gcc-13/porting_to.html#header-dep-changes
Upstream-Status: Submitted [https://github.com/dbus-cxx/dbus-cxx/pull/111]
Signed-off-by: Khem Raj <raj.khem@gmail.com>
---
dbus-cxx/enums.h | 1 +
1 file changed, 1 insertion(+)
diff --git a/dbus-cxx/enums.h b/dbus-cxx/enums.h
index 8253a4b..c793fad 100644
--- a/dbus-cxx/enums.h
+++ b/dbus-cxx/enums.h
@@ -5,6 +5,7 @@
* *
* This file is part of the dbus-cxx library. *
***************************************************************************/
+#include <cstdint>
#include <ostream>
#ifndef DBUSCXX_ENUMS_H
--
2.39.1