Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] libcoap: bump to version 4.1.2
@ 2017-09-04  5:35 yegorslists at googlemail.com
  2017-09-06 20:15 ` Thomas Petazzoni
  0 siblings, 1 reply; 2+ messages in thread
From: yegorslists at googlemail.com @ 2017-09-04  5:35 UTC (permalink / raw)
  To: buildroot

From: Yegor Yefremov <yegorslists@googlemail.com>

Remove upstreamed patch.

Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
---
 ...nly-add-Wunused-result-if-supported-by-th.patch | 38 ----------------------
 package/libcoap/libcoap.hash                       |  2 +-
 package/libcoap/libcoap.mk                         |  2 +-
 3 files changed, 2 insertions(+), 40 deletions(-)
 delete mode 100644 package/libcoap/0001-configure-only-add-Wunused-result-if-supported-by-th.patch

diff --git a/package/libcoap/0001-configure-only-add-Wunused-result-if-supported-by-th.patch b/package/libcoap/0001-configure-only-add-Wunused-result-if-supported-by-th.patch
deleted file mode 100644
index bc93890..0000000
--- a/package/libcoap/0001-configure-only-add-Wunused-result-if-supported-by-th.patch
+++ /dev/null
@@ -1,38 +0,0 @@
-From d5914ecbb0285aea1eb2b9432d6e91155877fd95 Mon Sep 17 00:00:00 2001
-From: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-Date: Thu, 9 Jun 2016 21:53:59 +0200
-Subject: [PATCH] configure: only add -Wunused-result if supported by the
- compiler
-
-Old gcc versions such as 4.3.x do not support -Wunused-result, so
-instead of unconditionally using this warning, only use it if supported
-by the compiler.
-
-Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
----
-Submitted upstream: https://github.com/obgm/libcoap/pull/32
-
- configure.ac | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/configure.ac b/configure.ac
-index f4452ac..6354fcf 100644
---- a/configure.ac
-+++ b/configure.ac
-@@ -110,12 +110,12 @@ WARNING_CFLAGS="\
- -Wswitch-default \
- -Wswitch-enum \
- -Wunused \
---Wunused-result \
- "
- 
- # check whether or not the compiler supports -Wlogical-op (clang does not...)
- AX_CHECK_COMPILE_FLAG([-Wlogical-op], [WARNING_CFLAGS="$WARNING_CFLAGS -Wlogical-op"],,[-Werror])
- AX_CHECK_COMPILE_FLAG([-fdiagnostics-color], [CFLAGS="$CFLAGS -fdiagnostics-color"],,[-Werror])
-+AX_CHECK_COMPILE_FLAG([-Wunused-result], [WARNING_CFLAGS="$WARNING_CFLAGS -Wunused-result"])
- 
- AC_SUBST([WARNING_CFLAGS])
- 
--- 
-2.7.4
-
diff --git a/package/libcoap/libcoap.hash b/package/libcoap/libcoap.hash
index dce491b..708ca1b 100644
--- a/package/libcoap/libcoap.hash
+++ b/package/libcoap/libcoap.hash
@@ -1,2 +1,2 @@
 # Locally calculated
-sha256 f66e91742c2b027fcd7c575d8e7b53d79d3624aad1b3baba481dd88f6e2bc44d libcoap-c909bf802034b7762a2182848304b2530e58444f.tar.gz
+sha256 f7e26dc232c177336474a14487771037a8fb32e311f5ccd076a00dc04b6d7b7a libcoap-v4.1.2.tar.gz
diff --git a/package/libcoap/libcoap.mk b/package/libcoap/libcoap.mk
index fb5d2bf..31a6822 100644
--- a/package/libcoap/libcoap.mk
+++ b/package/libcoap/libcoap.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-LIBCOAP_VERSION = c909bf802034b7762a2182848304b2530e58444f
+LIBCOAP_VERSION = v4.1.2
 LIBCOAP_SITE = $(call github,obgm,libcoap,$(LIBCOAP_VERSION))
 LIBCOAP_INSTALL_STAGING = YES
 LIBCOAP_LICENSE = GPL-2.0+ or BSD-2-Clause
-- 
2.1.4

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

* [Buildroot] [PATCH] libcoap: bump to version 4.1.2
  2017-09-04  5:35 [Buildroot] [PATCH] libcoap: bump to version 4.1.2 yegorslists at googlemail.com
@ 2017-09-06 20:15 ` Thomas Petazzoni
  0 siblings, 0 replies; 2+ messages in thread
From: Thomas Petazzoni @ 2017-09-06 20:15 UTC (permalink / raw)
  To: buildroot

Hello,

On Mon,  4 Sep 2017 07:35:15 +0200, yegorslists at googlemail.com wrote:
> From: Yegor Yefremov <yegorslists@googlemail.com>
> 
> Remove upstreamed patch.
> 
> Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
> ---
>  ...nly-add-Wunused-result-if-supported-by-th.patch | 38 ----------------------
>  package/libcoap/libcoap.hash                       |  2 +-
>  package/libcoap/libcoap.mk                         |  2 +-
>  3 files changed, 2 insertions(+), 40 deletions(-)
>  delete mode 100644 package/libcoap/0001-configure-only-add-Wunused-result-if-supported-by-th.patch

Applied to master, thanks.

Thomas
-- 
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com

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

end of thread, other threads:[~2017-09-06 20:15 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-09-04  5:35 [Buildroot] [PATCH] libcoap: bump to version 4.1.2 yegorslists at googlemail.com
2017-09-06 20:15 ` Thomas Petazzoni

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