All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/4] package/snmppp: bump to version 3.4.10
@ 2022-09-17 12:35 luca.ceresoli
  2022-09-17 12:36 ` [Buildroot] [PATCH 2/4] package/agentpp: bump to version 4.5.4 luca.ceresoli
                   ` (3 more replies)
  0 siblings, 4 replies; 7+ messages in thread
From: luca.ceresoli @ 2022-09-17 12:35 UTC (permalink / raw)
  To: buildroot; +Cc: Luca Ceresoli

From: Luca Ceresoli <luca.ceresoli@bootlin.com>

Changelog:

  - Fixed: Winsock has to be included before windows header.
  - Fixed: Added SnmpTarget::version_to_string() function
  - Fixed: Fixed compiler warning on MSYS2 g++

Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
---
 package/snmppp/snmppp.hash | 2 +-
 package/snmppp/snmppp.mk   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/package/snmppp/snmppp.hash b/package/snmppp/snmppp.hash
index db3a4b5f4f0f..6dc3d39ced1a 100644
--- a/package/snmppp/snmppp.hash
+++ b/package/snmppp/snmppp.hash
@@ -1,3 +1,3 @@
 # Locally computed:
-sha256  7c0aaf4ea21db082453f880cc2062a86dcbbf0ee6c8d47c72beb8e0c77c26b6c  snmp++-3.4.9.tar.gz
+sha256  d7a77fd05ecd99b25c51cbab08dfeef22a5edf2677875695c213631af59d5bae  snmp++-3.4.10.tar.gz
 sha256  61337e799c8274e596e5783b22607beea8073ee296c6b27fc5c7487296e56851  src/v3.cpp
diff --git a/package/snmppp/snmppp.mk b/package/snmppp/snmppp.mk
index bc05cad5835c..005a5a9f3526 100644
--- a/package/snmppp/snmppp.mk
+++ b/package/snmppp/snmppp.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-SNMPPP_VERSION = 3.4.9
+SNMPPP_VERSION = 3.4.10
 SNMPPP_SOURCE = snmp++-$(SNMPPP_VERSION).tar.gz
 SNMPPP_SITE = http://www.agentpp.com/download
 SNMPPP_DEPENDENCIES = host-pkgconf
-- 
2.34.1

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

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

* [Buildroot] [PATCH 2/4] package/agentpp: bump to version 4.5.4
  2022-09-17 12:35 [Buildroot] [PATCH 1/4] package/snmppp: bump to version 3.4.10 luca.ceresoli
@ 2022-09-17 12:36 ` luca.ceresoli
  2022-09-17 12:36 ` [Buildroot] [PATCH 3/4] package/snmppp: fix broken URL in help text luca.ceresoli
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 7+ messages in thread
From: luca.ceresoli @ 2022-09-17 12:36 UTC (permalink / raw)
  To: buildroot; +Cc: Luca Ceresoli

From: Luca Ceresoli <luca.ceresoli@bootlin.com>

Changelog:

  * Fixed: If USE_LISTEN_ADDRESS_FOR_SENDING_TRAPS was not defined, traps
    to IPv6 destinations could not be sent.
  * Fixed: Compilation without _SNMPv3 in some example agents
  * Added: Added new function Snmpx::get_session_fds_ipv6()

Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
---
 package/agentpp/agentpp.hash | 2 +-
 package/agentpp/agentpp.mk   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/package/agentpp/agentpp.hash b/package/agentpp/agentpp.hash
index f8399963e51e..99aae7026363 100644
--- a/package/agentpp/agentpp.hash
+++ b/package/agentpp/agentpp.hash
@@ -1,3 +1,3 @@
 # Locally computed:
-sha256  bcfc014cc7ce37afdd6eefb71b59f1eabf23984525905546aa363c2a2c498c79  agent++-4.5.3.tar.gz
+sha256  5f2cfe98fd1d50683e02c65fccd9423351254df427e5825e4f321c488a9234eb  agent++-4.5.4.tar.gz
 sha256  1eb85fc97224598dad1852b5d6483bbcf0aa8608790dcc657a5a2a761ae9c8c6  LICENSE-2_0.txt
diff --git a/package/agentpp/agentpp.mk b/package/agentpp/agentpp.mk
index f30e75ef9c05..d020228e44bf 100644
--- a/package/agentpp/agentpp.mk
+++ b/package/agentpp/agentpp.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-AGENTPP_VERSION = 4.5.3
+AGENTPP_VERSION = 4.5.4
 AGENTPP_SOURCE = agent++-$(AGENTPP_VERSION).tar.gz
 AGENTPP_SITE = http://www.agentpp.com/download
 AGENTPP_LICENSE = Apache-2.0
-- 
2.34.1

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

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

* [Buildroot] [PATCH 3/4] package/snmppp: fix broken URL in help text
  2022-09-17 12:35 [Buildroot] [PATCH 1/4] package/snmppp: bump to version 3.4.10 luca.ceresoli
  2022-09-17 12:36 ` [Buildroot] [PATCH 2/4] package/agentpp: bump to version 4.5.4 luca.ceresoli
@ 2022-09-17 12:36 ` luca.ceresoli
  2022-09-22 12:51   ` Peter Korsgaard
  2022-09-17 12:36 ` [Buildroot] [PATCH 4/4] package/agentpp: " luca.ceresoli
  2022-09-17 12:54 ` [Buildroot] [PATCH 1/4] package/snmppp: bump to version 3.4.10 Thomas Petazzoni
  3 siblings, 1 reply; 7+ messages in thread
From: luca.ceresoli @ 2022-09-17 12:36 UTC (permalink / raw)
  To: buildroot; +Cc: Luca Ceresoli

From: Luca Ceresoli <luca.ceresoli@bootlin.com>

The curren URL is specific to an old version, and it is not reachable
anymore.

Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
---
 package/snmppp/Config.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/package/snmppp/Config.in b/package/snmppp/Config.in
index 1f05f53f9fc0..f3a076714d1d 100644
--- a/package/snmppp/Config.in
+++ b/package/snmppp/Config.in
@@ -6,7 +6,7 @@ config BR2_PACKAGE_SNMPPP
 	help
 	  SNMP++v3.x is a C++ API which supports SNMP v1, v2c, and v3.
 
-	  http://www.agentpp.com/snmp_pp3_x/snmp_pp3_x.html
+	  https://www.agentpp.com/api/cpp/snmp_pp.html
 
 if BR2_PACKAGE_SNMPPP
 
-- 
2.34.1

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

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

* [Buildroot] [PATCH 4/4] package/agentpp: fix broken URL in help text
  2022-09-17 12:35 [Buildroot] [PATCH 1/4] package/snmppp: bump to version 3.4.10 luca.ceresoli
  2022-09-17 12:36 ` [Buildroot] [PATCH 2/4] package/agentpp: bump to version 4.5.4 luca.ceresoli
  2022-09-17 12:36 ` [Buildroot] [PATCH 3/4] package/snmppp: fix broken URL in help text luca.ceresoli
@ 2022-09-17 12:36 ` luca.ceresoli
  2022-09-22 12:51   ` Peter Korsgaard
  2022-09-17 12:54 ` [Buildroot] [PATCH 1/4] package/snmppp: bump to version 3.4.10 Thomas Petazzoni
  3 siblings, 1 reply; 7+ messages in thread
From: luca.ceresoli @ 2022-09-17 12:36 UTC (permalink / raw)
  To: buildroot; +Cc: Luca Ceresoli

From: Luca Ceresoli <luca.ceresoli@bootlin.com>

The curren URL is specific to an old version, and it is not reachable
anymore.

Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
---
 package/agentpp/Config.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/package/agentpp/Config.in b/package/agentpp/Config.in
index 8c6b11d644e4..cc7537519aba 100644
--- a/package/agentpp/Config.in
+++ b/package/agentpp/Config.in
@@ -16,7 +16,7 @@ config BR2_PACKAGE_AGENTPP
 
 	  SNMPv3 support is enabled if SNMP++ enables it.
 
-	  http://www.agentpp.com/agentpp3_5/agentpp3_5.html
+	  https://www.agentpp.com/api/cpp/agent_pp.html
 
 comment "agent++ needs a toolchain w/ threads, C++, dynamic library"
 	depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS || \
-- 
2.34.1

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

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

* Re: [Buildroot] [PATCH 1/4] package/snmppp: bump to version 3.4.10
  2022-09-17 12:35 [Buildroot] [PATCH 1/4] package/snmppp: bump to version 3.4.10 luca.ceresoli
                   ` (2 preceding siblings ...)
  2022-09-17 12:36 ` [Buildroot] [PATCH 4/4] package/agentpp: " luca.ceresoli
@ 2022-09-17 12:54 ` Thomas Petazzoni
  3 siblings, 0 replies; 7+ messages in thread
From: Thomas Petazzoni @ 2022-09-17 12:54 UTC (permalink / raw)
  To: luca.ceresoli; +Cc: buildroot

On Sat, 17 Sep 2022 14:35:59 +0200
luca.ceresoli@bootlin.com wrote:

> From: Luca Ceresoli <luca.ceresoli@bootlin.com>
> 
> Changelog:
> 
>   - Fixed: Winsock has to be included before windows header.
>   - Fixed: Added SnmpTarget::version_to_string() function
>   - Fixed: Fixed compiler warning on MSYS2 g++
> 
> Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
> ---
>  package/snmppp/snmppp.hash | 2 +-
>  package/snmppp/snmppp.mk   | 2 +-
>  2 files changed, 2 insertions(+), 2 deletions(-)

Series applied, thanks!

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH 4/4] package/agentpp: fix broken URL in help text
  2022-09-17 12:36 ` [Buildroot] [PATCH 4/4] package/agentpp: " luca.ceresoli
@ 2022-09-22 12:51   ` Peter Korsgaard
  0 siblings, 0 replies; 7+ messages in thread
From: Peter Korsgaard @ 2022-09-22 12:51 UTC (permalink / raw)
  To: luca.ceresoli; +Cc: buildroot

>>>>> "luca" == luca ceresoli <luca.ceresoli@bootlin.com> writes:

 > From: Luca Ceresoli <luca.ceresoli@bootlin.com>
 > The curren URL is specific to an old version, and it is not reachable
 > anymore.

 > Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com>

NIT: For backporting it is nice to put such patches earlier in your
series so it is clear that it doesn't depend on the earlier patches.

Committed to 2022.02.x, 2022.05.x and 2022.08.x, thanks.

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

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

* Re: [Buildroot] [PATCH 3/4] package/snmppp: fix broken URL in help text
  2022-09-17 12:36 ` [Buildroot] [PATCH 3/4] package/snmppp: fix broken URL in help text luca.ceresoli
@ 2022-09-22 12:51   ` Peter Korsgaard
  0 siblings, 0 replies; 7+ messages in thread
From: Peter Korsgaard @ 2022-09-22 12:51 UTC (permalink / raw)
  To: luca.ceresoli; +Cc: buildroot

>>>>> "luca" == luca ceresoli <luca.ceresoli@bootlin.com> writes:

 > From: Luca Ceresoli <luca.ceresoli@bootlin.com>
 > The curren URL is specific to an old version, and it is not reachable
 > anymore.

 > Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com>

Committed to 2022.02.x, 2022.05.x and 2022.08.x, thanks.

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

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

end of thread, other threads:[~2022-09-22 12:51 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-09-17 12:35 [Buildroot] [PATCH 1/4] package/snmppp: bump to version 3.4.10 luca.ceresoli
2022-09-17 12:36 ` [Buildroot] [PATCH 2/4] package/agentpp: bump to version 4.5.4 luca.ceresoli
2022-09-17 12:36 ` [Buildroot] [PATCH 3/4] package/snmppp: fix broken URL in help text luca.ceresoli
2022-09-22 12:51   ` Peter Korsgaard
2022-09-17 12:36 ` [Buildroot] [PATCH 4/4] package/agentpp: " luca.ceresoli
2022-09-22 12:51   ` Peter Korsgaard
2022-09-17 12:54 ` [Buildroot] [PATCH 1/4] package/snmppp: bump to version 3.4.10 Thomas Petazzoni

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.