All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/1] package/tinycbor: bump to version 0.5.4
@ 2021-09-08 20:00 Fabrice Fontaine
  2021-09-20 19:22 ` Arnout Vandecappelle
  2021-10-04 13:18 ` Peter Korsgaard
  0 siblings, 2 replies; 3+ messages in thread
From: Fabrice Fontaine @ 2021-09-08 20:00 UTC (permalink / raw)
  To: buildroot; +Cc: Fabrice Fontaine

- Drop patch (already in version)
- Update indentation in hash file (two spaces)

https://github.com/intel/tinycbor/releases/tag/v0.5.4

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
 ...able-build-for-different-c-libraries.patch | 39 -------------------
 package/tinycbor/tinycbor.hash                |  4 +-
 package/tinycbor/tinycbor.mk                  |  2 +-
 3 files changed, 3 insertions(+), 42 deletions(-)
 delete mode 100644 package/tinycbor/0001-Enable-build-for-different-c-libraries.patch

diff --git a/package/tinycbor/0001-Enable-build-for-different-c-libraries.patch b/package/tinycbor/0001-Enable-build-for-different-c-libraries.patch
deleted file mode 100644
index 40f9288604..0000000000
--- a/package/tinycbor/0001-Enable-build-for-different-c-libraries.patch
+++ /dev/null
@@ -1,39 +0,0 @@
-From 085ca40781f7c39febe6d14fb7e5cba342e1804b Mon Sep 17 00:00:00 2001
-From: Ricardo Crudo <ricardo.crudo@gmail.com>
-Date: Sat, 30 May 2020 22:03:01 +0200
-Subject: [PATCH] Enable build for different c libraries
-
-The open_memstream.c was using GLIBC macro definition to test if the
-library is building on a Linux box. This makes impossible to build
-tinycbor against other C libraries, as musl for example.
-
-Signed-off-by: Ricardo Crudo <ricardo.crudo@gmail.com>
-[Retrieved from:
-https://github.com/intel/tinycbor/commit/085ca40781f7c39febe6d14fb7e5cba342e1804b]
-Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
----
- src/open_memstream.c | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/src/open_memstream.c b/src/open_memstream.c
-index 18f3de8..3365378 100644
---- a/src/open_memstream.c
-+++ b/src/open_memstream.c
-@@ -38,7 +38,7 @@
- #ifdef __APPLE__
- typedef int RetType;
- typedef int LenType;
--#elif __GLIBC__
-+#elif __linux__
- typedef ssize_t RetType;
- typedef size_t LenType;
- #else
-@@ -101,7 +101,7 @@ FILE *open_memstream(char **bufptr, size_t *lenptr)
- 
- #ifdef __APPLE__
-     return funopen(b, NULL, write_to_buffer, NULL, close_buffer);
--#elif __GLIBC__
-+#elif __linux__
-     static const cookie_io_functions_t vtable = {
-         NULL,
-         write_to_buffer,
diff --git a/package/tinycbor/tinycbor.hash b/package/tinycbor/tinycbor.hash
index 8ff706bb67..29f0cfabf0 100644
--- a/package/tinycbor/tinycbor.hash
+++ b/package/tinycbor/tinycbor.hash
@@ -1,3 +1,3 @@
 # Locally computed:
-sha256	956eb4b670ea4969eaee67395b5bb6437b153960385b77357d6692e979d1b12d	tinycbor-0.5.3.tar.gz
-sha256	3c6ba0b5bfa7830505301ffb336a17b0748e0d61c4d34216e9dc98f10e40395e	LICENSE
+sha256  e63668a71fd6d7abf1727dc31682ec7f107599a3c024a445c3e5da6af9328983  tinycbor-0.5.4.tar.gz
+sha256  3c6ba0b5bfa7830505301ffb336a17b0748e0d61c4d34216e9dc98f10e40395e  LICENSE
diff --git a/package/tinycbor/tinycbor.mk b/package/tinycbor/tinycbor.mk
index ef095ea67d..476da67363 100644
--- a/package/tinycbor/tinycbor.mk
+++ b/package/tinycbor/tinycbor.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-TINYCBOR_VERSION = 0.5.3
+TINYCBOR_VERSION = 0.5.4
 TINYCBOR_SITE = $(call github,intel,tinycbor,v$(TINYCBOR_VERSION))
 TINYCBOR_LICENSE = MIT
 TINYCBOR_LICENSE_FILES = LICENSE
-- 
2.33.0

_______________________________________________
buildroot mailing list
buildroot@lists.buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH 1/1] package/tinycbor: bump to version 0.5.4
  2021-09-08 20:00 [Buildroot] [PATCH 1/1] package/tinycbor: bump to version 0.5.4 Fabrice Fontaine
@ 2021-09-20 19:22 ` Arnout Vandecappelle
  2021-10-04 13:18 ` Peter Korsgaard
  1 sibling, 0 replies; 3+ messages in thread
From: Arnout Vandecappelle @ 2021-09-20 19:22 UTC (permalink / raw)
  To: Fabrice Fontaine, buildroot



On 08/09/2021 22:00, Fabrice Fontaine wrote:
> - Drop patch (already in version)
> - Update indentation in hash file (two spaces)
> 
> https://github.com/intel/tinycbor/releases/tag/v0.5.4
> 
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>

  Applied to master, thanks.

  Regards,
  Arnout

> ---
>   ...able-build-for-different-c-libraries.patch | 39 -------------------
>   package/tinycbor/tinycbor.hash                |  4 +-
>   package/tinycbor/tinycbor.mk                  |  2 +-
>   3 files changed, 3 insertions(+), 42 deletions(-)
>   delete mode 100644 package/tinycbor/0001-Enable-build-for-different-c-libraries.patch
> 
> diff --git a/package/tinycbor/0001-Enable-build-for-different-c-libraries.patch b/package/tinycbor/0001-Enable-build-for-different-c-libraries.patch
> deleted file mode 100644
> index 40f9288604..0000000000
> --- a/package/tinycbor/0001-Enable-build-for-different-c-libraries.patch
> +++ /dev/null
> @@ -1,39 +0,0 @@
> -From 085ca40781f7c39febe6d14fb7e5cba342e1804b Mon Sep 17 00:00:00 2001
> -From: Ricardo Crudo <ricardo.crudo@gmail.com>
> -Date: Sat, 30 May 2020 22:03:01 +0200
> -Subject: [PATCH] Enable build for different c libraries
> -
> -The open_memstream.c was using GLIBC macro definition to test if the
> -library is building on a Linux box. This makes impossible to build
> -tinycbor against other C libraries, as musl for example.
> -
> -Signed-off-by: Ricardo Crudo <ricardo.crudo@gmail.com>
> -[Retrieved from:
> -https://github.com/intel/tinycbor/commit/085ca40781f7c39febe6d14fb7e5cba342e1804b]
> -Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
> ----
> - src/open_memstream.c | 4 ++--
> - 1 file changed, 2 insertions(+), 2 deletions(-)
> -
> -diff --git a/src/open_memstream.c b/src/open_memstream.c
> -index 18f3de8..3365378 100644
> ---- a/src/open_memstream.c
> -+++ b/src/open_memstream.c
> -@@ -38,7 +38,7 @@
> - #ifdef __APPLE__
> - typedef int RetType;
> - typedef int LenType;
> --#elif __GLIBC__
> -+#elif __linux__
> - typedef ssize_t RetType;
> - typedef size_t LenType;
> - #else
> -@@ -101,7 +101,7 @@ FILE *open_memstream(char **bufptr, size_t *lenptr)
> -
> - #ifdef __APPLE__
> -     return funopen(b, NULL, write_to_buffer, NULL, close_buffer);
> --#elif __GLIBC__
> -+#elif __linux__
> -     static const cookie_io_functions_t vtable = {
> -         NULL,
> -         write_to_buffer,
> diff --git a/package/tinycbor/tinycbor.hash b/package/tinycbor/tinycbor.hash
> index 8ff706bb67..29f0cfabf0 100644
> --- a/package/tinycbor/tinycbor.hash
> +++ b/package/tinycbor/tinycbor.hash
> @@ -1,3 +1,3 @@
>   # Locally computed:
> -sha256	956eb4b670ea4969eaee67395b5bb6437b153960385b77357d6692e979d1b12d	tinycbor-0.5.3.tar.gz
> -sha256	3c6ba0b5bfa7830505301ffb336a17b0748e0d61c4d34216e9dc98f10e40395e	LICENSE
> +sha256  e63668a71fd6d7abf1727dc31682ec7f107599a3c024a445c3e5da6af9328983  tinycbor-0.5.4.tar.gz
> +sha256  3c6ba0b5bfa7830505301ffb336a17b0748e0d61c4d34216e9dc98f10e40395e  LICENSE
> diff --git a/package/tinycbor/tinycbor.mk b/package/tinycbor/tinycbor.mk
> index ef095ea67d..476da67363 100644
> --- a/package/tinycbor/tinycbor.mk
> +++ b/package/tinycbor/tinycbor.mk
> @@ -4,7 +4,7 @@
>   #
>   ################################################################################
>   
> -TINYCBOR_VERSION = 0.5.3
> +TINYCBOR_VERSION = 0.5.4
>   TINYCBOR_SITE = $(call github,intel,tinycbor,v$(TINYCBOR_VERSION))
>   TINYCBOR_LICENSE = MIT
>   TINYCBOR_LICENSE_FILES = LICENSE
> 
_______________________________________________
buildroot mailing list
buildroot@lists.buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH 1/1] package/tinycbor: bump to version 0.5.4
  2021-09-08 20:00 [Buildroot] [PATCH 1/1] package/tinycbor: bump to version 0.5.4 Fabrice Fontaine
  2021-09-20 19:22 ` Arnout Vandecappelle
@ 2021-10-04 13:18 ` Peter Korsgaard
  1 sibling, 0 replies; 3+ messages in thread
From: Peter Korsgaard @ 2021-10-04 13:18 UTC (permalink / raw)
  To: Fabrice Fontaine; +Cc: buildroot

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

 > - Drop patch (already in version)
 > - Update indentation in hash file (two spaces)

 > https://github.com/intel/tinycbor/releases/tag/v0.5.4

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

Committed to 2021.02.x, 2021.05.x and 2021.08.x given the fixes, thanks.

-- 
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

end of thread, other threads:[~2021-10-04 13:18 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-09-08 20:00 [Buildroot] [PATCH 1/1] package/tinycbor: bump to version 0.5.4 Fabrice Fontaine
2021-09-20 19:22 ` Arnout Vandecappelle
2021-10-04 13:18 ` Peter Korsgaard

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.