All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] package/open62541: bump to version 1.2.4
@ 2022-05-08 13:36 Francois Perrad
  2022-05-13 22:10 ` Arnout Vandecappelle
  0 siblings, 1 reply; 2+ messages in thread
From: Francois Perrad @ 2022-05-08 13:36 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Francois Perrad <francois.perrad@gadz.org>
---
 .../0004-CMakeLists.txt-add-UA_FORCE_WERROR.patch         | 8 ++++----
 package/open62541/Config.in                               | 2 +-
 package/open62541/open62541.hash                          | 2 +-
 package/open62541/open62541.mk                            | 2 +-
 4 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/package/open62541/0004-CMakeLists.txt-add-UA_FORCE_WERROR.patch b/package/open62541/0004-CMakeLists.txt-add-UA_FORCE_WERROR.patch
index f912445b7..9e6dda26e 100644
--- a/package/open62541/0004-CMakeLists.txt-add-UA_FORCE_WERROR.patch
+++ b/package/open62541/0004-CMakeLists.txt-add-UA_FORCE_WERROR.patch
@@ -29,16 +29,16 @@ diff --git a/CMakeLists.txt b/CMakeLists.txt
 index bc839f27..963460d0 100644
 --- a/CMakeLists.txt
 +++ b/CMakeLists.txt
-@@ -292,6 +292,8 @@ if(UA_FORCE_CPP)
+@@ -257,6 +257,8 @@ if(UA_FORCE_CPP)
      add_definitions(-D__STDC_CONSTANT_MACROS) # We need the UINT32_C define
  endif()
  
 +option(UA_FORCE_WERROR "Force compilation with -Werror" ON)
 +
  #General PubSub setup
- option(UA_ENABLE_PUBSUB "Enable the PubSub protocol" OFF)
- 
-@@ -589,7 +591,9 @@ if(NOT UA_FORCE_CPP AND (CMAKE_COMPILER_IS_GNUCC OR "x${CMAKE_C_COMPILER_ID}" ST
+ option(UA_ENABLE_PUBSUB "Enable publish/subscribe" OFF)
+ mark_as_advanced(UA_ENABLE_PUBSUB)
+@@ -526,7 +528,9 @@ if(NOT UA_FORCE_CPP AND (CMAKE_COMPILER_IS_GNUCC OR "x${CMAKE_C_COMPILER_ID}" ST
      check_add_cc_flag("-Wall")      # Warnings
      check_add_cc_flag("-Wextra")    # More warnings
      check_add_cc_flag("-Wpedantic") # Standard compliance
diff --git a/package/open62541/Config.in b/package/open62541/Config.in
index a835595e8..220fb3dfa 100644
--- a/package/open62541/Config.in
+++ b/package/open62541/Config.in
@@ -3,7 +3,7 @@ config BR2_PACKAGE_OPEN62541
 	help
 	  open62541 is an open source and free implementation of OPC UA.
 
-	  http://open62541.org
+	  https://open62541.org/
 
 if BR2_PACKAGE_OPEN62541
 
diff --git a/package/open62541/open62541.hash b/package/open62541/open62541.hash
index 5aa340ac1..3257bfe47 100644
--- a/package/open62541/open62541.hash
+++ b/package/open62541/open62541.hash
@@ -1,3 +1,3 @@
 # Locally calculated
-sha256  c59c85b519a18350f5014b6e7b7545ee144ceeb15094e75b0b7ecec7dce43dd0  open62541-v1.2.2-br1.tar.gz
+sha256  e2e1b8e6285c4fd6d8e07f37d61a8728376d525e169fadb3d61918fa6a7c271a  open62541-v1.2.4-br1.tar.gz
 sha256  fab3dd6bdab226f1c08630b1dd917e11fcb4ec5e1e020e2c16f83a0a13863e85  LICENSE
diff --git a/package/open62541/open62541.mk b/package/open62541/open62541.mk
index 627c29e95..87bd3449b 100644
--- a/package/open62541/open62541.mk
+++ b/package/open62541/open62541.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-OPEN62541_VERSION = v1.2.2
+OPEN62541_VERSION = v1.2.4
 OPEN62541_SITE_METHOD = git
 OPEN62541_SITE = https://github.com/open62541/open62541.git
 OPEN62541_GIT_SUBMODULES = YES
-- 
2.32.0

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

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

* Re: [Buildroot] [PATCH] package/open62541: bump to version 1.2.4
  2022-05-08 13:36 [Buildroot] [PATCH] package/open62541: bump to version 1.2.4 Francois Perrad
@ 2022-05-13 22:10 ` Arnout Vandecappelle
  0 siblings, 0 replies; 2+ messages in thread
From: Arnout Vandecappelle @ 2022-05-13 22:10 UTC (permalink / raw)
  To: Francois Perrad, buildroot



On 08/05/2022 15:36, Francois Perrad wrote:
> Signed-off-by: Francois Perrad <francois.perrad@gadz.org>

  Applied to master, thanks.

  Regards,
  Arnout

> ---
>   .../0004-CMakeLists.txt-add-UA_FORCE_WERROR.patch         | 8 ++++----
>   package/open62541/Config.in                               | 2 +-
>   package/open62541/open62541.hash                          | 2 +-
>   package/open62541/open62541.mk                            | 2 +-
>   4 files changed, 7 insertions(+), 7 deletions(-)
> 
> diff --git a/package/open62541/0004-CMakeLists.txt-add-UA_FORCE_WERROR.patch b/package/open62541/0004-CMakeLists.txt-add-UA_FORCE_WERROR.patch
> index f912445b7..9e6dda26e 100644
> --- a/package/open62541/0004-CMakeLists.txt-add-UA_FORCE_WERROR.patch
> +++ b/package/open62541/0004-CMakeLists.txt-add-UA_FORCE_WERROR.patch
> @@ -29,16 +29,16 @@ diff --git a/CMakeLists.txt b/CMakeLists.txt
>   index bc839f27..963460d0 100644
>   --- a/CMakeLists.txt
>   +++ b/CMakeLists.txt
> -@@ -292,6 +292,8 @@ if(UA_FORCE_CPP)
> +@@ -257,6 +257,8 @@ if(UA_FORCE_CPP)
>        add_definitions(-D__STDC_CONSTANT_MACROS) # We need the UINT32_C define
>    endif()
>    
>   +option(UA_FORCE_WERROR "Force compilation with -Werror" ON)
>   +
>    #General PubSub setup
> - option(UA_ENABLE_PUBSUB "Enable the PubSub protocol" OFF)
> -
> -@@ -589,7 +591,9 @@ if(NOT UA_FORCE_CPP AND (CMAKE_COMPILER_IS_GNUCC OR "x${CMAKE_C_COMPILER_ID}" ST
> + option(UA_ENABLE_PUBSUB "Enable publish/subscribe" OFF)
> + mark_as_advanced(UA_ENABLE_PUBSUB)
> +@@ -526,7 +528,9 @@ if(NOT UA_FORCE_CPP AND (CMAKE_COMPILER_IS_GNUCC OR "x${CMAKE_C_COMPILER_ID}" ST
>        check_add_cc_flag("-Wall")      # Warnings
>        check_add_cc_flag("-Wextra")    # More warnings
>        check_add_cc_flag("-Wpedantic") # Standard compliance
> diff --git a/package/open62541/Config.in b/package/open62541/Config.in
> index a835595e8..220fb3dfa 100644
> --- a/package/open62541/Config.in
> +++ b/package/open62541/Config.in
> @@ -3,7 +3,7 @@ config BR2_PACKAGE_OPEN62541
>   	help
>   	  open62541 is an open source and free implementation of OPC UA.
>   
> -	  http://open62541.org
> +	  https://open62541.org/
>   
>   if BR2_PACKAGE_OPEN62541
>   
> diff --git a/package/open62541/open62541.hash b/package/open62541/open62541.hash
> index 5aa340ac1..3257bfe47 100644
> --- a/package/open62541/open62541.hash
> +++ b/package/open62541/open62541.hash
> @@ -1,3 +1,3 @@
>   # Locally calculated
> -sha256  c59c85b519a18350f5014b6e7b7545ee144ceeb15094e75b0b7ecec7dce43dd0  open62541-v1.2.2-br1.tar.gz
> +sha256  e2e1b8e6285c4fd6d8e07f37d61a8728376d525e169fadb3d61918fa6a7c271a  open62541-v1.2.4-br1.tar.gz
>   sha256  fab3dd6bdab226f1c08630b1dd917e11fcb4ec5e1e020e2c16f83a0a13863e85  LICENSE
> diff --git a/package/open62541/open62541.mk b/package/open62541/open62541.mk
> index 627c29e95..87bd3449b 100644
> --- a/package/open62541/open62541.mk
> +++ b/package/open62541/open62541.mk
> @@ -4,7 +4,7 @@
>   #
>   ################################################################################
>   
> -OPEN62541_VERSION = v1.2.2
> +OPEN62541_VERSION = v1.2.4
>   OPEN62541_SITE_METHOD = git
>   OPEN62541_SITE = https://github.com/open62541/open62541.git
>   OPEN62541_GIT_SUBMODULES = YES
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

end of thread, other threads:[~2022-05-13 22:11 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-05-08 13:36 [Buildroot] [PATCH] package/open62541: bump to version 1.2.4 Francois Perrad
2022-05-13 22:10 ` Arnout Vandecappelle

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.