All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] package/gloox: bump version to 1.0.27
@ 2023-04-25 13:34 Yair Ben-Avraham via buildroot
  2023-05-08 20:59 ` Yann E. MORIN
  0 siblings, 1 reply; 2+ messages in thread
From: Yair Ben-Avraham via buildroot @ 2023-04-25 13:34 UTC (permalink / raw)
  To: buildroot@buildroot.org

Signed-off-by: Yair Ben-Avraham <yairba@protonmail.com>
---
 ...src-connectiontcpserver-cpp-fix-musl.patch | 25 -------------------
 package/gloox/gloox.hash                      |  2 +-
 package/gloox/gloox.mk                        |  2 +-
 3 files changed, 2 insertions(+), 27 deletions(-)
 delete mode 100644 package/gloox/0001-src-connectiontcpserver-cpp-fix-musl.patch

diff --git a/package/gloox/0001-src-connectiontcpserver-cpp-fix-musl.patch b/package/gloox/0001-src-connectiontcpserver-cpp-fix-musl.patch
deleted file mode 100644
index 56a2d4982c..0000000000
--- a/package/gloox/0001-src-connectiontcpserver-cpp-fix-musl.patch
+++ /dev/null
@@ -1,25 +0,0 @@
-src/connectiontcpserver.cpp: fix musl build
-
-Build on musl fails on:
-
-connectiontcpserver.cpp:131:13: error: 'strerror' was not declared in this scope
-           + strerror( err ) + " (errno: " + util::int2string( err ) + ")";
-             ^~~~~~~~
-
-Fixes:
- - http://autobuild.buildroot.org/results/a61a91bb6e1156eff5fb756f9dccfc2bb6c0f277
-
-Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
-[Upstream status: https://bugs.camaya.net/ticket/?id=291]
-
-diff -Nuar gloox-1.0.23-orig/src/connectiontcpserver.cpp gloox-1.0.23/src/connectiontcpserver.cpp
---- gloox-1.0.23-orig/src/connectiontcpserver.cpp	2020-06-05 23:22:59.624018949 +0200
-+++ gloox-1.0.23/src/connectiontcpserver.cpp	2020-06-05 23:26:20.708027221 +0200
-@@ -36,6 +36,7 @@
- # include <resolv.h>
- # include <netdb.h>
- # include <arpa/inet.h>
-+# include <string.h>
- # include <sys/socket.h>
- # include <sys/un.h>
- # include <sys/select.h>
diff --git a/package/gloox/gloox.hash b/package/gloox/gloox.hash
index 6419db90f8..66a3c2d1be 100644
--- a/package/gloox/gloox.hash
+++ b/package/gloox/gloox.hash
@@ -1,3 +1,3 @@
 # Locally calculated
-sha256  ae1462be2a2eb8fe5cd054825143617c53c2c9c7195606cb5a5ba68c0f68f9c9  gloox-1.0.24.tar.bz2
+sha256  0b8b7371439bc58d9e51384b616c964b18b7b41b87af1b7855104380eda86ffb  gloox-1.0.27.tar.bz2
 sha256  40a20c41c8dabb8ba61bea983fa8f2f6989e67fac56bb62c2249053807fd26af  LICENSE
diff --git a/package/gloox/gloox.mk b/package/gloox/gloox.mk
index b741d5ebc1..3495db96f0 100644
--- a/package/gloox/gloox.mk
+++ b/package/gloox/gloox.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-GLOOX_VERSION = 1.0.24
+GLOOX_VERSION = 1.0.27
 GLOOX_SOURCE = gloox-$(GLOOX_VERSION).tar.bz2
 GLOOX_SITE = https://camaya.net/download
 GLOOX_LICENSE = GPL-3.0 with OpenSSL exception
-- 
2.30.2
_______________________________________________
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] package/gloox: bump version to 1.0.27
  2023-04-25 13:34 [Buildroot] package/gloox: bump version to 1.0.27 Yair Ben-Avraham via buildroot
@ 2023-05-08 20:59 ` Yann E. MORIN
  0 siblings, 0 replies; 2+ messages in thread
From: Yann E. MORIN @ 2023-05-08 20:59 UTC (permalink / raw)
  To: Yair Ben-Avraham; +Cc: buildroot@buildroot.org

Yair, All,

On 2023-04-25 13:34 +0000, Yair Ben-Avraham via buildroot spake thusly:
> Signed-off-by: Yair Ben-Avraham <yairba@protonmail.com>

Applied to master, thanks.

Regards,
Yann E. MORIN.

> ---
>  ...src-connectiontcpserver-cpp-fix-musl.patch | 25 -------------------
>  package/gloox/gloox.hash                      |  2 +-
>  package/gloox/gloox.mk                        |  2 +-
>  3 files changed, 2 insertions(+), 27 deletions(-)
>  delete mode 100644 package/gloox/0001-src-connectiontcpserver-cpp-fix-musl.patch
> 
> diff --git a/package/gloox/0001-src-connectiontcpserver-cpp-fix-musl.patch b/package/gloox/0001-src-connectiontcpserver-cpp-fix-musl.patch
> deleted file mode 100644
> index 56a2d4982c..0000000000
> --- a/package/gloox/0001-src-connectiontcpserver-cpp-fix-musl.patch
> +++ /dev/null
> @@ -1,25 +0,0 @@
> -src/connectiontcpserver.cpp: fix musl build
> -
> -Build on musl fails on:
> -
> -connectiontcpserver.cpp:131:13: error: 'strerror' was not declared in this scope
> -           + strerror( err ) + " (errno: " + util::int2string( err ) + ")";
> -             ^~~~~~~~
> -
> -Fixes:
> - - http://autobuild.buildroot.org/results/a61a91bb6e1156eff5fb756f9dccfc2bb6c0f277
> -
> -Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
> -[Upstream status: https://bugs.camaya.net/ticket/?id=291]
> -
> -diff -Nuar gloox-1.0.23-orig/src/connectiontcpserver.cpp gloox-1.0.23/src/connectiontcpserver.cpp
> ---- gloox-1.0.23-orig/src/connectiontcpserver.cpp	2020-06-05 23:22:59.624018949 +0200
> -+++ gloox-1.0.23/src/connectiontcpserver.cpp	2020-06-05 23:26:20.708027221 +0200
> -@@ -36,6 +36,7 @@
> - # include <resolv.h>
> - # include <netdb.h>
> - # include <arpa/inet.h>
> -+# include <string.h>
> - # include <sys/socket.h>
> - # include <sys/un.h>
> - # include <sys/select.h>
> diff --git a/package/gloox/gloox.hash b/package/gloox/gloox.hash
> index 6419db90f8..66a3c2d1be 100644
> --- a/package/gloox/gloox.hash
> +++ b/package/gloox/gloox.hash
> @@ -1,3 +1,3 @@
>  # Locally calculated
> -sha256  ae1462be2a2eb8fe5cd054825143617c53c2c9c7195606cb5a5ba68c0f68f9c9  gloox-1.0.24.tar.bz2
> +sha256  0b8b7371439bc58d9e51384b616c964b18b7b41b87af1b7855104380eda86ffb  gloox-1.0.27.tar.bz2
>  sha256  40a20c41c8dabb8ba61bea983fa8f2f6989e67fac56bb62c2249053807fd26af  LICENSE
> diff --git a/package/gloox/gloox.mk b/package/gloox/gloox.mk
> index b741d5ebc1..3495db96f0 100644
> --- a/package/gloox/gloox.mk
> +++ b/package/gloox/gloox.mk
> @@ -4,7 +4,7 @@
>  #
>  ################################################################################
>  
> -GLOOX_VERSION = 1.0.24
> +GLOOX_VERSION = 1.0.27
>  GLOOX_SOURCE = gloox-$(GLOOX_VERSION).tar.bz2
>  GLOOX_SITE = https://camaya.net/download
>  GLOOX_LICENSE = GPL-3.0 with OpenSSL exception
> -- 
> 2.30.2
> _______________________________________________
> buildroot mailing list
> buildroot@buildroot.org
> https://lists.buildroot.org/mailman/listinfo/buildroot

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 561 099 427 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'
_______________________________________________
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:[~2023-05-08 21:00 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-04-25 13:34 [Buildroot] package/gloox: bump version to 1.0.27 Yair Ben-Avraham via buildroot
2023-05-08 20:59 ` Yann E. MORIN

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.