* [Buildroot] [PATCH 1/1] sdbus-cpp: new package
@ 2020-10-29 14:23 Sergey Bobrenok
2020-10-31 22:55 ` Thomas Petazzoni
2020-11-13 17:18 ` [Buildroot] [PATCH v3 " Sergey Bobrenok
0 siblings, 2 replies; 5+ messages in thread
From: Sergey Bobrenok @ 2020-10-29 14:23 UTC (permalink / raw)
To: buildroot
sdbus-c++ is a high-level C++ D-Bus library for Linux.
The target build produces sdbus-c++ library itself. The host build
produces helper tool sdbus-c++-xml2cpp. sdbus-c++-xml2cpp can be used
to generate sdbus-c++ stub .h files from xml files.
Signed-off-by: Sergey Bobrenok <bobrofon@gmail.com>
---
package/Config.in | 1 +
package/sdbus-cpp/Config.in | 18 ++++++++++++++++++
package/sdbus-cpp/sdbus-cpp.hash | 3 +++
package/sdbus-cpp/sdbus-cpp.mk | 18 ++++++++++++++++++
4 files changed, 40 insertions(+)
create mode 100644 package/sdbus-cpp/Config.in
create mode 100644 package/sdbus-cpp/sdbus-cpp.hash
create mode 100644 package/sdbus-cpp/sdbus-cpp.mk
diff --git a/package/Config.in b/package/Config.in
index ee05467479..a6de867a1d 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -2442,6 +2442,7 @@ menu "System tools"
source "package/s6-rc/Config.in"
source "package/scrub/Config.in"
source "package/scrypt/Config.in"
+ source "package/sdbus-cpp/Config.in"
source "package/sdbusplus/Config.in"
source "package/smack/Config.in"
source "package/start-stop-daemon/Config.in"
diff --git a/package/sdbus-cpp/Config.in b/package/sdbus-cpp/Config.in
new file mode 100644
index 0000000000..7a952d78a5
--- /dev/null
+++ b/package/sdbus-cpp/Config.in
@@ -0,0 +1,18 @@
+config BR2_PACKAGE_SDBUS_CPP
+ bool "sdbus-c++"
+ depends on BR2_INSTALL_LIBSTDCPP
+ depends on BR2_PACKAGE_SYSTEMD
+ depends on BR2_TOOLCHAIN_GCC_AT_LEAST_7 # C++17
+ select BR2_PACKAGE_EXPAT # host package
+ help
+ sdbus-c++ is a high-level C++ D-Bus library for Linux
+ designed to provide expressive, easy-to-use API in modern C++.
+
+ This will build the target library and the host side native
+ stub generator tool (sdbus-c++-xml2cpp).
+
+ https://github.com/Kistler-Group/sdbus-cpp
+
+comment "sdbus-c++ needs systemd and a toolchain w/ C++, gcc >= 7"
+ depends on !BR2_INSTALL_LIBSTDCPP || !BR2_PACKAGE_SYSTEMD || \
+ !BR2_TOOLCHAIN_GCC_AT_LEAST_7
diff --git a/package/sdbus-cpp/sdbus-cpp.hash b/package/sdbus-cpp/sdbus-cpp.hash
new file mode 100644
index 0000000000..8b87653dfd
--- /dev/null
+++ b/package/sdbus-cpp/sdbus-cpp.hash
@@ -0,0 +1,3 @@
+# Locally computed:
+sha256 0fd575ae0f463773dd9141242d1133731e2b780fd6526650ce992ba711d88628 v0.8.3.tar.gz
+sha256 20c17d8b8c48a600800dfd14f95d5cb9ff47066a9641ddeab48dc54aec96e331 COPYING
diff --git a/package/sdbus-cpp/sdbus-cpp.mk b/package/sdbus-cpp/sdbus-cpp.mk
new file mode 100644
index 0000000000..608919a050
--- /dev/null
+++ b/package/sdbus-cpp/sdbus-cpp.mk
@@ -0,0 +1,18 @@
+################################################################################
+#
+# sdbus-c++
+#
+################################################################################
+
+SDBUS_CPP_VERSION = 0.8.3
+SDBUS_CPP_SOURCE = v$(SDBUS_CPP_VERSION).tar.gz
+SDBUS_CPP_SITE = https://github.com/Kistler-Group/sdbus-cpp/archive
+SDBUS_CPP_INSTALL_STAGING = YES
+SDBUS_CPP_DEPENDENCIES = systemd
+SDBUS_CPP_LICENSE = LGPL-2.1-or-later
+SDBUS_CPP_LICENSE_FILES = COPYING
+HOST_SDBUS_CPP_SUBDIR = tools
+HOST_SDBUS_CPP_DEPENDENCIES = host-expat
+
+$(eval $(cmake-package))
+$(eval $(host-cmake-package))
--
2.28.0
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [Buildroot] [PATCH 1/1] sdbus-cpp: new package
2020-10-29 14:23 [Buildroot] [PATCH 1/1] sdbus-cpp: new package Sergey Bobrenok
@ 2020-10-31 22:55 ` Thomas Petazzoni
2020-11-01 16:12 ` Sergey Bobrenok
2020-11-02 16:23 ` [Buildroot] [PATCH v2 1/1] package/sdbus-cpp: " Sergey Bobrenok
2020-11-13 17:18 ` [Buildroot] [PATCH v3 " Sergey Bobrenok
1 sibling, 2 replies; 5+ messages in thread
From: Thomas Petazzoni @ 2020-10-31 22:55 UTC (permalink / raw)
To: buildroot
Hello Sergey,
Thanks for this contribution. First just to make sure: this is really a
different library than package/sdbusplus/ that we already have in
Buildroot ?
The commit title should be:
package/sdbus-cpp: new package
On Thu, 29 Oct 2020 21:23:46 +0700
Sergey Bobrenok <bobrofon@gmail.com> wrote:
> sdbus-c++ is a high-level C++ D-Bus library for Linux.
>
> The target build produces sdbus-c++ library itself. The host build
> produces helper tool sdbus-c++-xml2cpp. sdbus-c++-xml2cpp can be used
> to generate sdbus-c++ stub .h files from xml files.
>
> Signed-off-by: Sergey Bobrenok <bobrofon@gmail.com>
> ---
> package/Config.in | 1 +
> package/sdbus-cpp/Config.in | 18 ++++++++++++++++++
> package/sdbus-cpp/sdbus-cpp.hash | 3 +++
> package/sdbus-cpp/sdbus-cpp.mk | 18 ++++++++++++++++++
> 4 files changed, 40 insertions(+)
Please add an entry in the DEVELOPERS file.
> diff --git a/package/sdbus-cpp/Config.in b/package/sdbus-cpp/Config.in
> new file mode 100644
> index 0000000000..7a952d78a5
> --- /dev/null
> +++ b/package/sdbus-cpp/Config.in
> @@ -0,0 +1,18 @@
> +config BR2_PACKAGE_SDBUS_CPP
> + bool "sdbus-c++"
> + depends on BR2_INSTALL_LIBSTDCPP
> + depends on BR2_PACKAGE_SYSTEMD
> + depends on BR2_TOOLCHAIN_GCC_AT_LEAST_7 # C++17
> + select BR2_PACKAGE_EXPAT # host package
It's only the host package that needs host-expat. Selecting
BR2_PACKAGE_EXPAT means "I need the target expat", which is not the
case here.
> + help
> + sdbus-c++ is a high-level C++ D-Bus library for Linux
> + designed to provide expressive, easy-to-use API in modern C++.
> +
> + This will build the target library and the host side native
> + stub generator tool (sdbus-c++-xml2cpp).
No, your package as it is written today will not build the host side.
> diff --git a/package/sdbus-cpp/sdbus-cpp.mk b/package/sdbus-cpp/sdbus-cpp.mk
> new file mode 100644
> index 0000000000..608919a050
> --- /dev/null
> +++ b/package/sdbus-cpp/sdbus-cpp.mk
> @@ -0,0 +1,18 @@
> +################################################################################
> +#
> +# sdbus-c++
> +#
> +################################################################################
> +
> +SDBUS_CPP_VERSION = 0.8.3
> +SDBUS_CPP_SOURCE = v$(SDBUS_CPP_VERSION).tar.gz
> +SDBUS_CPP_SITE = https://github.com/Kistler-Group/sdbus-cpp/archive
These are auto-generated archives. In this case, please use our $(call
github,...) macro instead.
> +SDBUS_CPP_INSTALL_STAGING = YES
> +SDBUS_CPP_DEPENDENCIES = systemd
> +SDBUS_CPP_LICENSE = LGPL-2.1-or-later
I know LGPL-2.1-or-later is the correct SPDX encoding, but we use
LGPL-2.1+ in Buildroot, for historical reasons.
> +SDBUS_CPP_LICENSE_FILES = COPYING
> +HOST_SDBUS_CPP_SUBDIR = tools
> +HOST_SDBUS_CPP_DEPENDENCIES = host-expat
> +
> +$(eval $(cmake-package))
> +$(eval $(host-cmake-package))
Could you rework your patch and send an updated version?
Thanks!
Thomas
--
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com
^ permalink raw reply [flat|nested] 5+ messages in thread
* [Buildroot] [PATCH 1/1] sdbus-cpp: new package
2020-10-31 22:55 ` Thomas Petazzoni
@ 2020-11-01 16:12 ` Sergey Bobrenok
2020-11-02 16:23 ` [Buildroot] [PATCH v2 1/1] package/sdbus-cpp: " Sergey Bobrenok
1 sibling, 0 replies; 5+ messages in thread
From: Sergey Bobrenok @ 2020-11-01 16:12 UTC (permalink / raw)
To: buildroot
Hello Thomas,
On Sat, 31 Oct 2020 23:55:31 +0100
Thomas Petazzoni <thomas.petazzoni@bootlin.com> wrote:
> Hello Sergey,
>
> Thanks for this contribution. First just to make sure: this is really
> a different library than package/sdbusplus/ that we already have in
> Buildroot ?
Yes. sdbusplus and sdbus-cpp are different libraries.
>
> The commit title should be:
>
> package/sdbus-cpp: new package
Ok. I missed it when I was reading the contribution manual. Will fix it.
>
> On Thu, 29 Oct 2020 21:23:46 +0700
> Sergey Bobrenok <bobrofon@gmail.com> wrote:
>
> > sdbus-c++ is a high-level C++ D-Bus library for Linux.
> >
> > The target build produces sdbus-c++ library itself. The host build
> > produces helper tool sdbus-c++-xml2cpp. sdbus-c++-xml2cpp can be
> > used to generate sdbus-c++ stub .h files from xml files.
> >
> > Signed-off-by: Sergey Bobrenok <bobrofon@gmail.com>
> > ---
> > package/Config.in | 1 +
> > package/sdbus-cpp/Config.in | 18 ++++++++++++++++++
> > package/sdbus-cpp/sdbus-cpp.hash | 3 +++
> > package/sdbus-cpp/sdbus-cpp.mk | 18 ++++++++++++++++++
> > 4 files changed, 40 insertions(+)
>
> Please add an entry in the DEVELOPERS file.
I'll fix it.
>
> > diff --git a/package/sdbus-cpp/Config.in
> > b/package/sdbus-cpp/Config.in new file mode 100644
> > index 0000000000..7a952d78a5
> > --- /dev/null
> > +++ b/package/sdbus-cpp/Config.in
> > @@ -0,0 +1,18 @@
> > +config BR2_PACKAGE_SDBUS_CPP
> > + bool "sdbus-c++"
> > + depends on BR2_INSTALL_LIBSTDCPP
> > + depends on BR2_PACKAGE_SYSTEMD
> > + depends on BR2_TOOLCHAIN_GCC_AT_LEAST_7 # C++17
> > + select BR2_PACKAGE_EXPAT # host package
>
> It's only the host package that needs host-expat. Selecting
> BR2_PACKAGE_EXPAT means "I need the target expat", which is not the
> case here.
You're right. The host-sdbus-cpp package doesn't need to select
BR2_PACKAGE_EXPAT. It just needs to declare a dependency on host-expat.
I will delete BR2_PACKAGE_EXPAT from here.
>
> > + help
> > + sdbus-c++ is a high-level C++ D-Bus library for Linux
> > + designed to provide expressive, easy-to-use API in
> > modern C++. +
> > + This will build the target library and the host side
> > native
> > + stub generator tool (sdbus-c++-xml2cpp).
>
> No, your package as it is written today will not build the host side.
Can you explain what do you mean? This package is providing
'host-sdbus-cpp' target that can be used to build 'sdbus-c++-xml2cpp'
generator tool by dependency. This is that I was trying to achieve and
that how I use it (and it works). I am not sure what should I change.
>
> > diff --git a/package/sdbus-cpp/sdbus-cpp.mk
> > b/package/sdbus-cpp/sdbus-cpp.mk new file mode 100644
> > index 0000000000..608919a050
> > --- /dev/null
> > +++ b/package/sdbus-cpp/sdbus-cpp.mk
> > @@ -0,0 +1,18 @@
> > +################################################################################
> > +#
> > +# sdbus-c++
> > +#
> > +################################################################################
> > +
> > +SDBUS_CPP_VERSION = 0.8.3
> > +SDBUS_CPP_SOURCE = v$(SDBUS_CPP_VERSION).tar.gz
> > +SDBUS_CPP_SITE =
> > https://github.com/Kistler-Group/sdbus-cpp/archive
>
> These are auto-generated archives. In this case, please use our $(call
> github,...) macro instead.
I'll fix it.
>
> > +SDBUS_CPP_INSTALL_STAGING = YES
> > +SDBUS_CPP_DEPENDENCIES = systemd
> > +SDBUS_CPP_LICENSE = LGPL-2.1-or-later
>
> I know LGPL-2.1-or-later is the correct SPDX encoding, but we use
> LGPL-2.1+ in Buildroot, for historical reasons.
I'll fix it.
^ permalink raw reply [flat|nested] 5+ messages in thread
* [Buildroot] [PATCH v2 1/1] package/sdbus-cpp: new package
2020-10-31 22:55 ` Thomas Petazzoni
2020-11-01 16:12 ` Sergey Bobrenok
@ 2020-11-02 16:23 ` Sergey Bobrenok
1 sibling, 0 replies; 5+ messages in thread
From: Sergey Bobrenok @ 2020-11-02 16:23 UTC (permalink / raw)
To: buildroot
sdbus-c++ is a high-level C++ D-Bus library for Linux.
The target build produces sdbus-c++ library itself. The host build
produces helper tool sdbus-c++-xml2cpp. sdbus-c++-xml2cpp can be used
to generate sdbus-c++ stub .h files from xml files.
Signed-off-by: Sergey Bobrenok <bobrofon@gmail.com>
---
DEVELOPERS | 3 +++
package/Config.in | 1 +
package/sdbus-cpp/Config.in | 16 ++++++++++++++++
package/sdbus-cpp/sdbus-cpp.hash | 3 +++
package/sdbus-cpp/sdbus-cpp.mk | 18 ++++++++++++++++++
5 files changed, 41 insertions(+)
create mode 100644 package/sdbus-cpp/Config.in
create mode 100644 package/sdbus-cpp/sdbus-cpp.hash
create mode 100644 package/sdbus-cpp/sdbus-cpp.mk
diff --git a/DEVELOPERS b/DEVELOPERS
index 7643722f3c..d96605983f 100644
--- a/DEVELOPERS
+++ b/DEVELOPERS
@@ -2329,6 +2329,9 @@ F: package/libbson/
F: package/lua-resty-http/
F: package/mpir/
+N: Sergey Bobrenok <bobrofon@gmail.com>
+F: package/sdbus-cpp/
+
N: Sergey Matyukevich <geomatsi@gmail.com>
F: boot/arm-trusted-firmware/
F: boot/binaries-marvell/
diff --git a/package/Config.in b/package/Config.in
index 016a99ed1a..be054cbf0d 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -2441,6 +2441,7 @@ menu "System tools"
source "package/s6-rc/Config.in"
source "package/scrub/Config.in"
source "package/scrypt/Config.in"
+ source "package/sdbus-cpp/Config.in"
source "package/sdbusplus/Config.in"
source "package/smack/Config.in"
source "package/start-stop-daemon/Config.in"
diff --git a/package/sdbus-cpp/Config.in b/package/sdbus-cpp/Config.in
new file mode 100644
index 0000000000..85f149eaa1
--- /dev/null
+++ b/package/sdbus-cpp/Config.in
@@ -0,0 +1,16 @@
+config BR2_PACKAGE_SDBUS_CPP
+ bool "sdbus-c++"
+ depends on BR2_INSTALL_LIBSTDCPP
+ depends on BR2_PACKAGE_SYSTEMD
+ depends on BR2_TOOLCHAIN_GCC_AT_LEAST_7 # C++17
+ help
+ sdbus-c++ is a high-level C++ D-Bus library for Linux
+ designed to provide expressive, easy-to-use API in modern C++.
+
+ This will build the target library.
+
+ https://github.com/Kistler-Group/sdbus-cpp
+
+comment "sdbus-c++ needs systemd and a toolchain w/ C++, gcc >= 7"
+ depends on !BR2_INSTALL_LIBSTDCPP || !BR2_PACKAGE_SYSTEMD || \
+ !BR2_TOOLCHAIN_GCC_AT_LEAST_7
diff --git a/package/sdbus-cpp/sdbus-cpp.hash b/package/sdbus-cpp/sdbus-cpp.hash
new file mode 100644
index 0000000000..8b87653dfd
--- /dev/null
+++ b/package/sdbus-cpp/sdbus-cpp.hash
@@ -0,0 +1,3 @@
+# Locally computed:
+sha256 0fd575ae0f463773dd9141242d1133731e2b780fd6526650ce992ba711d88628 v0.8.3.tar.gz
+sha256 20c17d8b8c48a600800dfd14f95d5cb9ff47066a9641ddeab48dc54aec96e331 COPYING
diff --git a/package/sdbus-cpp/sdbus-cpp.mk b/package/sdbus-cpp/sdbus-cpp.mk
new file mode 100644
index 0000000000..1b892ae943
--- /dev/null
+++ b/package/sdbus-cpp/sdbus-cpp.mk
@@ -0,0 +1,18 @@
+################################################################################
+#
+# sdbus-c++
+#
+################################################################################
+
+SDBUS_CPP_VERSION = 0.8.3
+SDBUS_CPP_SOURCE = v$(SDBUS_CPP_VERSION).tar.gz
+SDBUS_CPP_SITE = $(call github,Kistler-Group,sdbus-cpp,v$(SDBUS_CPP_VERSION))
+SDBUS_CPP_INSTALL_STAGING = YES
+SDBUS_CPP_DEPENDENCIES = systemd
+SDBUS_CPP_LICENSE = LGPL-2.1+
+SDBUS_CPP_LICENSE_FILES = COPYING
+HOST_SDBUS_CPP_SUBDIR = tools
+HOST_SDBUS_CPP_DEPENDENCIES = host-expat
+
+$(eval $(cmake-package))
+$(eval $(host-cmake-package))
--
2.28.0
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [Buildroot] [PATCH v3 1/1] package/sdbus-cpp: new package
2020-10-29 14:23 [Buildroot] [PATCH 1/1] sdbus-cpp: new package Sergey Bobrenok
2020-10-31 22:55 ` Thomas Petazzoni
@ 2020-11-13 17:18 ` Sergey Bobrenok
1 sibling, 0 replies; 5+ messages in thread
From: Sergey Bobrenok @ 2020-11-13 17:18 UTC (permalink / raw)
To: buildroot
sdbus-c++ is a high-level C++ D-Bus library for Linux.
The target build produces sdbus-c++ library itself. The host build
produces helper tool sdbus-c++-xml2cpp. sdbus-c++-xml2cpp can be used
to generate sdbus-c++ stub .h files from xml files.
Signed-off-by: Sergey Bobrenok <bobrofon@gmail.com>
---
DEVELOPERS | 3 +++
package/Config.in | 1 +
package/sdbus-cpp/Config.in | 16 ++++++++++++++++
package/sdbus-cpp/sdbus-cpp.hash | 3 +++
package/sdbus-cpp/sdbus-cpp.mk | 18 ++++++++++++++++++
5 files changed, 41 insertions(+)
create mode 100644 package/sdbus-cpp/Config.in
create mode 100644 package/sdbus-cpp/sdbus-cpp.hash
create mode 100644 package/sdbus-cpp/sdbus-cpp.mk
diff --git a/DEVELOPERS b/DEVELOPERS
index 6b8083eb47..cbb3c82ff8 100644
--- a/DEVELOPERS
+++ b/DEVELOPERS
@@ -2328,6 +2328,9 @@ F: package/libbson/
F: package/lua-resty-http/
F: package/mpir/
+N: Sergey Bobrenok <bobrofon@gmail.com>
+F: package/sdbus-cpp/
+
N: Sergey Matyukevich <geomatsi@gmail.com>
F: boot/arm-trusted-firmware/
F: boot/binaries-marvell/
diff --git a/package/Config.in b/package/Config.in
index 016a99ed1a..be054cbf0d 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -2441,6 +2441,7 @@ menu "System tools"
source "package/s6-rc/Config.in"
source "package/scrub/Config.in"
source "package/scrypt/Config.in"
+ source "package/sdbus-cpp/Config.in"
source "package/sdbusplus/Config.in"
source "package/smack/Config.in"
source "package/start-stop-daemon/Config.in"
diff --git a/package/sdbus-cpp/Config.in b/package/sdbus-cpp/Config.in
new file mode 100644
index 0000000000..85f149eaa1
--- /dev/null
+++ b/package/sdbus-cpp/Config.in
@@ -0,0 +1,16 @@
+config BR2_PACKAGE_SDBUS_CPP
+ bool "sdbus-c++"
+ depends on BR2_INSTALL_LIBSTDCPP
+ depends on BR2_PACKAGE_SYSTEMD
+ depends on BR2_TOOLCHAIN_GCC_AT_LEAST_7 # C++17
+ help
+ sdbus-c++ is a high-level C++ D-Bus library for Linux
+ designed to provide expressive, easy-to-use API in modern C++.
+
+ This will build the target library.
+
+ https://github.com/Kistler-Group/sdbus-cpp
+
+comment "sdbus-c++ needs systemd and a toolchain w/ C++, gcc >= 7"
+ depends on !BR2_INSTALL_LIBSTDCPP || !BR2_PACKAGE_SYSTEMD || \
+ !BR2_TOOLCHAIN_GCC_AT_LEAST_7
diff --git a/package/sdbus-cpp/sdbus-cpp.hash b/package/sdbus-cpp/sdbus-cpp.hash
new file mode 100644
index 0000000000..8b87653dfd
--- /dev/null
+++ b/package/sdbus-cpp/sdbus-cpp.hash
@@ -0,0 +1,3 @@
+# Locally computed:
+sha256 0fd575ae0f463773dd9141242d1133731e2b780fd6526650ce992ba711d88628 v0.8.3.tar.gz
+sha256 20c17d8b8c48a600800dfd14f95d5cb9ff47066a9641ddeab48dc54aec96e331 COPYING
diff --git a/package/sdbus-cpp/sdbus-cpp.mk b/package/sdbus-cpp/sdbus-cpp.mk
new file mode 100644
index 0000000000..1b892ae943
--- /dev/null
+++ b/package/sdbus-cpp/sdbus-cpp.mk
@@ -0,0 +1,18 @@
+################################################################################
+#
+# sdbus-c++
+#
+################################################################################
+
+SDBUS_CPP_VERSION = 0.8.3
+SDBUS_CPP_SOURCE = v$(SDBUS_CPP_VERSION).tar.gz
+SDBUS_CPP_SITE = $(call github,Kistler-Group,sdbus-cpp,v$(SDBUS_CPP_VERSION))
+SDBUS_CPP_INSTALL_STAGING = YES
+SDBUS_CPP_DEPENDENCIES = systemd
+SDBUS_CPP_LICENSE = LGPL-2.1+
+SDBUS_CPP_LICENSE_FILES = COPYING
+HOST_SDBUS_CPP_SUBDIR = tools
+HOST_SDBUS_CPP_DEPENDENCIES = host-expat
+
+$(eval $(cmake-package))
+$(eval $(host-cmake-package))
--
2.28.0
^ permalink raw reply related [flat|nested] 5+ messages in thread
end of thread, other threads:[~2020-11-13 17:18 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-10-29 14:23 [Buildroot] [PATCH 1/1] sdbus-cpp: new package Sergey Bobrenok
2020-10-31 22:55 ` Thomas Petazzoni
2020-11-01 16:12 ` Sergey Bobrenok
2020-11-02 16:23 ` [Buildroot] [PATCH v2 1/1] package/sdbus-cpp: " Sergey Bobrenok
2020-11-13 17:18 ` [Buildroot] [PATCH v3 " Sergey Bobrenok
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox