Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/2] package/spdlog: disable example
@ 2020-01-14 17:59 Fabrice Fontaine
  2020-01-14 17:59 ` [Buildroot] [PATCH 2/2] package/spdlog: bump to version 1.5.0 Fabrice Fontaine
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Fabrice Fontaine @ 2020-01-14 17:59 UTC (permalink / raw)
  To: buildroot

SPDLOG_BUILD_EXAMPLES has been renamed SPDLOG_BUILD_EXAMPLE since
version 1.4.0 and
https://github.com/gabime/spdlog/commit/bb0f3839c1e52948f2ecb66e4e0aa79740a30205

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
 package/spdlog/spdlog.mk | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/package/spdlog/spdlog.mk b/package/spdlog/spdlog.mk
index 315c4ee407..b878170978 100644
--- a/package/spdlog/spdlog.mk
+++ b/package/spdlog/spdlog.mk
@@ -11,7 +11,7 @@ SPDLOG_LICENSE_FILES = LICENSE
 SPDLOG_DEPENDENCIES = fmt
 SPDLOG_CONF_OPTS += \
 	-DSPDLOG_BUILD_TESTS=OFF \
-	-DSPDLOG_BUILD_EXAMPLES=OFF \
+	-DSPDLOG_BUILD_EXAMPLE=OFF \
 	-DSPDLOG_BUILD_BENCH=OFF \
 	-DSPDLOG_FMT_EXTERNAL=ON
 
-- 
2.24.1

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [Buildroot] [PATCH 2/2] package/spdlog: bump to version 1.5.0
  2020-01-14 17:59 [Buildroot] [PATCH 1/2] package/spdlog: disable example Fabrice Fontaine
@ 2020-01-14 17:59 ` Fabrice Fontaine
  2020-01-14 22:02 ` [Buildroot] [PATCH 1/2] package/spdlog: disable example Thomas Petazzoni
  2020-02-29  7:08 ` Peter Korsgaard
  2 siblings, 0 replies; 4+ messages in thread
From: Fabrice Fontaine @ 2020-01-14 17:59 UTC (permalink / raw)
  To: buildroot

Fix build with latest fmt (6.1.2)

Fixes:
 - http://autobuild.buildroot.org/results/7e7f698b620c1726cbeb89cc8709b1b609ba0762

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
 package/spdlog/spdlog.hash | 2 +-
 package/spdlog/spdlog.mk   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/package/spdlog/spdlog.hash b/package/spdlog/spdlog.hash
index 0eb5bee491..2b51877aa2 100644
--- a/package/spdlog/spdlog.hash
+++ b/package/spdlog/spdlog.hash
@@ -1,3 +1,3 @@
 # Locally calculated
-sha256 821c85b120ad15d87ca2bc44185fa9091409777c756029125a02f81354072157  spdlog-1.4.2.tar.gz
+sha256 b38e0bbef7faac2b82fed550a0c19b0d4e7f6737d5321d4fd8f216b80f8aee8a  spdlog-1.5.0.tar.gz
 sha256 7d40b1967fca203d22b0eaf75f54566167ded823863abedf4de869fcea057038  LICENSE
diff --git a/package/spdlog/spdlog.mk b/package/spdlog/spdlog.mk
index b878170978..f8eb9bc0f9 100644
--- a/package/spdlog/spdlog.mk
+++ b/package/spdlog/spdlog.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-SPDLOG_VERSION = 1.4.2
+SPDLOG_VERSION = 1.5.0
 SPDLOG_SITE = $(call github,gabime,spdlog,v$(SPDLOG_VERSION))
 SPDLOG_LICENSE = MIT
 SPDLOG_LICENSE_FILES = LICENSE
-- 
2.24.1

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [Buildroot] [PATCH 1/2] package/spdlog: disable example
  2020-01-14 17:59 [Buildroot] [PATCH 1/2] package/spdlog: disable example Fabrice Fontaine
  2020-01-14 17:59 ` [Buildroot] [PATCH 2/2] package/spdlog: bump to version 1.5.0 Fabrice Fontaine
@ 2020-01-14 22:02 ` Thomas Petazzoni
  2020-02-29  7:08 ` Peter Korsgaard
  2 siblings, 0 replies; 4+ messages in thread
From: Thomas Petazzoni @ 2020-01-14 22:02 UTC (permalink / raw)
  To: buildroot

On Tue, 14 Jan 2020 18:59:12 +0100
Fabrice Fontaine <fontaine.fabrice@gmail.com> wrote:

> SPDLOG_BUILD_EXAMPLES has been renamed SPDLOG_BUILD_EXAMPLE since
> version 1.4.0 and
> https://github.com/gabime/spdlog/commit/bb0f3839c1e52948f2ecb66e4e0aa79740a30205
> 
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
> ---
>  package/spdlog/spdlog.mk | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Both applied. Thanks!

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [Buildroot] [PATCH 1/2] package/spdlog: disable example
  2020-01-14 17:59 [Buildroot] [PATCH 1/2] package/spdlog: disable example Fabrice Fontaine
  2020-01-14 17:59 ` [Buildroot] [PATCH 2/2] package/spdlog: bump to version 1.5.0 Fabrice Fontaine
  2020-01-14 22:02 ` [Buildroot] [PATCH 1/2] package/spdlog: disable example Thomas Petazzoni
@ 2020-02-29  7:08 ` Peter Korsgaard
  2 siblings, 0 replies; 4+ messages in thread
From: Peter Korsgaard @ 2020-02-29  7:08 UTC (permalink / raw)
  To: buildroot

>>>>> "Fabrice" == Fabrice Fontaine <fontaine.fabrice@gmail.com> writes:

 > SPDLOG_BUILD_EXAMPLES has been renamed SPDLOG_BUILD_EXAMPLE since
 > version 1.4.0 and
 > https://github.com/gabime/spdlog/commit/bb0f3839c1e52948f2ecb66e4e0aa79740a30205

 > Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>

Committed to 2019.11.x, thanks.

-- 
Bye, Peter Korsgaard

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2020-02-29  7:08 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-01-14 17:59 [Buildroot] [PATCH 1/2] package/spdlog: disable example Fabrice Fontaine
2020-01-14 17:59 ` [Buildroot] [PATCH 2/2] package/spdlog: bump to version 1.5.0 Fabrice Fontaine
2020-01-14 22:02 ` [Buildroot] [PATCH 1/2] package/spdlog: disable example Thomas Petazzoni
2020-02-29  7:08 ` Peter Korsgaard

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox