All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH v3 1/2] package/dropbear: fix license infos
@ 2020-06-29  7:16 Francois Perrad
  2020-06-29  7:16 ` [Buildroot] [PATCH v3 2/2] package/dropbear: bump to version 2020.80 Francois Perrad
  2020-06-29 19:55 ` [Buildroot] [PATCH v3 1/2] package/dropbear: fix license infos Yann E. MORIN
  0 siblings, 2 replies; 5+ messages in thread
From: Francois Perrad @ 2020-06-29  7:16 UTC (permalink / raw)
  To: buildroot

this package allows to use optionally bundled libraries (which is exceptional in BR).
so, license infos must be conditional.

Signed-off-by: Francois Perrad <francois.perrad@gadz.org>
---
 package/dropbear/dropbear.hash | 2 ++
 package/dropbear/dropbear.mk   | 2 ++
 2 files changed, 4 insertions(+)

diff --git a/package/dropbear/dropbear.hash b/package/dropbear/dropbear.hash
index ab53197f3..39a116ede 100644
--- a/package/dropbear/dropbear.hash
+++ b/package/dropbear/dropbear.hash
@@ -3,3 +3,5 @@ sha256  084f00546b1610a3422a0773e2c04cbe1a220d984209e033b548b49f379cc441  dropbe
 
 # License file, locally computed
 sha256  2ac2be75a2232ec2473070dd791ee990253dffde6022d364809bbbcbc30f710e  LICENSE
+sha256  8f196cb13afd271f5e267fd29543fc454596382ad580e7592709492843996ac8  libtomcrypt/LICENSE
+sha256  2fa64b163659f41965c9815882a8296d3d03ff546b76153e11445f9bdecf955a  libtommath/LICENSE
diff --git a/package/dropbear/dropbear.mk b/package/dropbear/dropbear.mk
index b7342cef5..bca79da45 100644
--- a/package/dropbear/dropbear.mk
+++ b/package/dropbear/dropbear.mk
@@ -79,6 +79,8 @@ DROPBEAR_POST_EXTRACT_HOOKS += DROPBEAR_ENABLE_REVERSE_DNS
 endif
 
 ifeq ($(BR2_PACKAGE_DROPBEAR_SMALL),y)
+DROPBEAR_LICENSE +=, Unlicense, WTFPL
+DROPBEAR_LICENSE_FILES += libtommath/LICENSE libtomcrypt/LICENSE
 DROPBEAR_CONF_OPTS += --disable-zlib --enable-bundled-libtom
 else
 define DROPBEAR_BUILD_FEATURED
-- 
2.25.1

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

* [Buildroot] [PATCH v3 2/2] package/dropbear: bump to version 2020.80
  2020-06-29  7:16 [Buildroot] [PATCH v3 1/2] package/dropbear: fix license infos Francois Perrad
@ 2020-06-29  7:16 ` Francois Perrad
  2020-06-29  7:35   ` Alexander Dahl
  2020-06-29 19:55   ` Yann E. MORIN
  2020-06-29 19:55 ` [Buildroot] [PATCH v3 1/2] package/dropbear: fix license infos Yann E. MORIN
  1 sibling, 2 replies; 5+ messages in thread
From: Francois Perrad @ 2020-06-29  7:16 UTC (permalink / raw)
  To: buildroot

remove merged patches.

LICENSE diff:
- Copyright (c) 2002-2015 Matt Johnston
+ Copyright (c) 2002-2020 Matt Johnston
- LibTomCrypt and LibTomMath are written by Tom St Denis, and are Public Domain.
+ LibTomCrypt and LibTomMath are written by Tom St Denis and others, see
+ libtomcrypt/LICENSE and libtommath/LICENSE.

Signed-off-by: Francois Perrad <francois.perrad@gadz.org>
---
 .../0001-_GNU_SOURCE-for-random.patch         | 25 --------------
 .../0002-move-GNU_SOURCE-earlier.patch        | 34 -------------------
 package/dropbear/dropbear.hash                |  4 +--
 package/dropbear/dropbear.mk                  |  2 +-
 4 files changed, 3 insertions(+), 62 deletions(-)
 delete mode 100644 package/dropbear/0001-_GNU_SOURCE-for-random.patch
 delete mode 100644 package/dropbear/0002-move-GNU_SOURCE-earlier.patch

diff --git a/package/dropbear/0001-_GNU_SOURCE-for-random.patch b/package/dropbear/0001-_GNU_SOURCE-for-random.patch
deleted file mode 100644
index dfb851411..000000000
--- a/package/dropbear/0001-_GNU_SOURCE-for-random.patch
+++ /dev/null
@@ -1,25 +0,0 @@
-From 3f5c106a880a02b21739f2022746e6aa7672474c Mon Sep 17 00:00:00 2001
-From: Matt Johnston <matt@ucc.asn.au>
-Date: Tue, 23 Jun 2020 21:38:46 +0800
-Subject: [PATCH] _GNU_SOURCE for random
-
-[Retrieved from:
-https://github.com/mkj/dropbear/commit/3f5c106a880a02b21739f2022746e6aa7672474c]
-Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
----
- includes.h | 2 ++
- 1 file changed, 2 insertions(+)
-
-diff --git a/includes.h b/includes.h
-index e8c3e189..2789f23d 100644
---- a/includes.h
-+++ b/includes.h
-@@ -125,6 +125,8 @@
- #endif
- 
- #ifdef HAVE_SYS_RANDOM_H
-+/* uclibc needs _GNU_SOURCE */
-+#define _GNU_SOURCE
- #include <sys/random.h>
- #endif
- 
diff --git a/package/dropbear/0002-move-GNU_SOURCE-earlier.patch b/package/dropbear/0002-move-GNU_SOURCE-earlier.patch
deleted file mode 100644
index 81282e423..000000000
--- a/package/dropbear/0002-move-GNU_SOURCE-earlier.patch
+++ /dev/null
@@ -1,34 +0,0 @@
-From a7a67585cbc3fe5df85c641618b347a51a943356 Mon Sep 17 00:00:00 2001
-From: Matt Johnston <matt@ucc.asn.au>
-Date: Tue, 23 Jun 2020 22:24:58 +0800
-Subject: [PATCH] move GNU_SOURCE earlier
-
-[Retrieved from:
-https://github.com/mkj/dropbear/commit/a7a67585cbc3fe5df85c641618b347a51a943356]
-Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
----
- includes.h | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/includes.h b/includes.h
-index 2789f23d..884ebf71 100644
---- a/includes.h
-+++ b/includes.h
-@@ -25,6 +25,8 @@
- #ifndef DROPBEAR_INCLUDES_H_
- #define DROPBEAR_INCLUDES_H_
- 
-+/* uclibc needs _GNU_SOURCE, maybe other things? */
-+#define _GNU_SOURCE
- 
- #include "options.h"
- #include "debug.h"
-@@ -125,8 +127,6 @@
- #endif
- 
- #ifdef HAVE_SYS_RANDOM_H
--/* uclibc needs _GNU_SOURCE */
--#define _GNU_SOURCE
- #include <sys/random.h>
- #endif
- 
diff --git a/package/dropbear/dropbear.hash b/package/dropbear/dropbear.hash
index 39a116ede..af69cec53 100644
--- a/package/dropbear/dropbear.hash
+++ b/package/dropbear/dropbear.hash
@@ -1,7 +1,7 @@
 # From https://matt.ucc.asn.au/dropbear/releases/SHA256SUM.asc
-sha256  084f00546b1610a3422a0773e2c04cbe1a220d984209e033b548b49f379cc441  dropbear-2020.79.tar.bz2
+sha256  d927941b91f2da150b2033f1a88b6a47999bf0afb1493a73e9216cffdb5d7949  dropbear-2020.80.tar.bz2
 
 # License file, locally computed
-sha256  2ac2be75a2232ec2473070dd791ee990253dffde6022d364809bbbcbc30f710e  LICENSE
+sha256  a99ce657d790b761c132ee7e0de18edb437ae6361e536d991c6a12f36e770445  LICENSE
 sha256  8f196cb13afd271f5e267fd29543fc454596382ad580e7592709492843996ac8  libtomcrypt/LICENSE
 sha256  2fa64b163659f41965c9815882a8296d3d03ff546b76153e11445f9bdecf955a  libtommath/LICENSE
diff --git a/package/dropbear/dropbear.mk b/package/dropbear/dropbear.mk
index bca79da45..2d0bd52ef 100644
--- a/package/dropbear/dropbear.mk
+++ b/package/dropbear/dropbear.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-DROPBEAR_VERSION = 2020.79
+DROPBEAR_VERSION = 2020.80
 DROPBEAR_SITE = https://matt.ucc.asn.au/dropbear/releases
 DROPBEAR_SOURCE = dropbear-$(DROPBEAR_VERSION).tar.bz2
 DROPBEAR_LICENSE = MIT, BSD-2-Clause, Public domain
-- 
2.25.1

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

* [Buildroot] [PATCH v3 2/2] package/dropbear: bump to version 2020.80
  2020-06-29  7:16 ` [Buildroot] [PATCH v3 2/2] package/dropbear: bump to version 2020.80 Francois Perrad
@ 2020-06-29  7:35   ` Alexander Dahl
  2020-06-29 19:55   ` Yann E. MORIN
  1 sibling, 0 replies; 5+ messages in thread
From: Alexander Dahl @ 2020-06-29  7:35 UTC (permalink / raw)
  To: buildroot

Moin,

On Mon, Jun 29, 2020 at 09:16:56AM +0200, Francois Perrad wrote:
> remove merged patches.
> 
> LICENSE diff:
> - Copyright (c) 2002-2015 Matt Johnston
> + Copyright (c) 2002-2020 Matt Johnston
> - LibTomCrypt and LibTomMath are written by Tom St Denis, and are Public Domain.
> + LibTomCrypt and LibTomMath are written by Tom St Denis and others, see
> + libtomcrypt/LICENSE and libtommath/LICENSE.
> 
> Signed-off-by: Francois Perrad <francois.perrad@gadz.org>
> ---
>  .../0001-_GNU_SOURCE-for-random.patch         | 25 --------------
>  .../0002-move-GNU_SOURCE-earlier.patch        | 34 -------------------
>  package/dropbear/dropbear.hash                |  4 +--
>  package/dropbear/dropbear.mk                  |  2 +-
>  4 files changed, 3 insertions(+), 62 deletions(-)
>  delete mode 100644 package/dropbear/0001-_GNU_SOURCE-for-random.patch
>  delete mode 100644 package/dropbear/0002-move-GNU_SOURCE-earlier.patch
> 
> diff --git a/package/dropbear/0001-_GNU_SOURCE-for-random.patch b/package/dropbear/0001-_GNU_SOURCE-for-random.patch
> deleted file mode 100644
> index dfb851411..000000000
> --- a/package/dropbear/0001-_GNU_SOURCE-for-random.patch
> +++ /dev/null
> @@ -1,25 +0,0 @@
> -From 3f5c106a880a02b21739f2022746e6aa7672474c Mon Sep 17 00:00:00 2001
> -From: Matt Johnston <matt@ucc.asn.au>
> -Date: Tue, 23 Jun 2020 21:38:46 +0800
> -Subject: [PATCH] _GNU_SOURCE for random
> -
> -[Retrieved from:
> -https://github.com/mkj/dropbear/commit/3f5c106a880a02b21739f2022746e6aa7672474c]
> -Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
> ----
> - includes.h | 2 ++
> - 1 file changed, 2 insertions(+)
> -
> -diff --git a/includes.h b/includes.h
> -index e8c3e189..2789f23d 100644
> ---- a/includes.h
> -+++ b/includes.h
> -@@ -125,6 +125,8 @@
> - #endif
> - 
> - #ifdef HAVE_SYS_RANDOM_H
> -+/* uclibc needs _GNU_SOURCE */
> -+#define _GNU_SOURCE
> - #include <sys/random.h>
> - #endif
> - 
> diff --git a/package/dropbear/0002-move-GNU_SOURCE-earlier.patch b/package/dropbear/0002-move-GNU_SOURCE-earlier.patch
> deleted file mode 100644
> index 81282e423..000000000
> --- a/package/dropbear/0002-move-GNU_SOURCE-earlier.patch
> +++ /dev/null
> @@ -1,34 +0,0 @@
> -From a7a67585cbc3fe5df85c641618b347a51a943356 Mon Sep 17 00:00:00 2001
> -From: Matt Johnston <matt@ucc.asn.au>
> -Date: Tue, 23 Jun 2020 22:24:58 +0800
> -Subject: [PATCH] move GNU_SOURCE earlier
> -
> -[Retrieved from:
> -https://github.com/mkj/dropbear/commit/a7a67585cbc3fe5df85c641618b347a51a943356]
> -Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
> ----
> - includes.h | 4 ++--
> - 1 file changed, 2 insertions(+), 2 deletions(-)
> -
> -diff --git a/includes.h b/includes.h
> -index 2789f23d..884ebf71 100644
> ---- a/includes.h
> -+++ b/includes.h
> -@@ -25,6 +25,8 @@
> - #ifndef DROPBEAR_INCLUDES_H_
> - #define DROPBEAR_INCLUDES_H_
> - 
> -+/* uclibc needs _GNU_SOURCE, maybe other things? */
> -+#define _GNU_SOURCE
> - 
> - #include "options.h"
> - #include "debug.h"
> -@@ -125,8 +127,6 @@
> - #endif
> - 
> - #ifdef HAVE_SYS_RANDOM_H
> --/* uclibc needs _GNU_SOURCE */
> --#define _GNU_SOURCE
> - #include <sys/random.h>
> - #endif
> - 
> diff --git a/package/dropbear/dropbear.hash b/package/dropbear/dropbear.hash
> index 39a116ede..af69cec53 100644
> --- a/package/dropbear/dropbear.hash
> +++ b/package/dropbear/dropbear.hash
> @@ -1,7 +1,7 @@
>  # From https://matt.ucc.asn.au/dropbear/releases/SHA256SUM.asc
> -sha256  084f00546b1610a3422a0773e2c04cbe1a220d984209e033b548b49f379cc441  dropbear-2020.79.tar.bz2
> +sha256  d927941b91f2da150b2033f1a88b6a47999bf0afb1493a73e9216cffdb5d7949  dropbear-2020.80.tar.bz2
>  
>  # License file, locally computed
> -sha256  2ac2be75a2232ec2473070dd791ee990253dffde6022d364809bbbcbc30f710e  LICENSE
> +sha256  a99ce657d790b761c132ee7e0de18edb437ae6361e536d991c6a12f36e770445  LICENSE

Confirmed.

>  sha256  8f196cb13afd271f5e267fd29543fc454596382ad580e7592709492843996ac8  libtomcrypt/LICENSE
>  sha256  2fa64b163659f41965c9815882a8296d3d03ff546b76153e11445f9bdecf955a  libtommath/LICENSE
> diff --git a/package/dropbear/dropbear.mk b/package/dropbear/dropbear.mk
> index bca79da45..2d0bd52ef 100644
> --- a/package/dropbear/dropbear.mk
> +++ b/package/dropbear/dropbear.mk
> @@ -4,7 +4,7 @@
>  #
>  ################################################################################
>  
> -DROPBEAR_VERSION = 2020.79
> +DROPBEAR_VERSION = 2020.80
>  DROPBEAR_SITE = https://matt.ucc.asn.au/dropbear/releases
>  DROPBEAR_SOURCE = dropbear-$(DROPBEAR_VERSION).tar.bz2
>  DROPBEAR_LICENSE = MIT, BSD-2-Clause, Public domain
> -- 
> 2.25.1
> 
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot

Acked-by: Alexander Dahl <post@lespocky.de>

Greets
Alex

-- 
/"\ ASCII RIBBON | ?With the first link, the chain is forged. The first
\ / CAMPAIGN     | speech censured, the first thought forbidden, the
 X  AGAINST      | first freedom denied, chains us all irrevocably.?
/ \ HTML MAIL    | (Jean-Luc Picard, quoting Judge Aaron Satie)
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 833 bytes
Desc: not available
URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20200629/dada2b09/attachment.asc>

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

* [Buildroot] [PATCH v3 1/2] package/dropbear: fix license infos
  2020-06-29  7:16 [Buildroot] [PATCH v3 1/2] package/dropbear: fix license infos Francois Perrad
  2020-06-29  7:16 ` [Buildroot] [PATCH v3 2/2] package/dropbear: bump to version 2020.80 Francois Perrad
@ 2020-06-29 19:55 ` Yann E. MORIN
  1 sibling, 0 replies; 5+ messages in thread
From: Yann E. MORIN @ 2020-06-29 19:55 UTC (permalink / raw)
  To: buildroot

Fran?ois, All,

On 2020-06-29 09:16 +0200, Francois Perrad spake thusly:
> this package allows to use optionally bundled libraries (which is exceptional in BR).
> so, license infos must be conditional.
> 
> Signed-off-by: Francois Perrad <francois.perrad@gadz.org>

Applied to master, thanks.

Regards,
Yann E. MORIN.

> ---
>  package/dropbear/dropbear.hash | 2 ++
>  package/dropbear/dropbear.mk   | 2 ++
>  2 files changed, 4 insertions(+)
> 
> diff --git a/package/dropbear/dropbear.hash b/package/dropbear/dropbear.hash
> index ab53197f3..39a116ede 100644
> --- a/package/dropbear/dropbear.hash
> +++ b/package/dropbear/dropbear.hash
> @@ -3,3 +3,5 @@ sha256  084f00546b1610a3422a0773e2c04cbe1a220d984209e033b548b49f379cc441  dropbe
>  
>  # License file, locally computed
>  sha256  2ac2be75a2232ec2473070dd791ee990253dffde6022d364809bbbcbc30f710e  LICENSE
> +sha256  8f196cb13afd271f5e267fd29543fc454596382ad580e7592709492843996ac8  libtomcrypt/LICENSE
> +sha256  2fa64b163659f41965c9815882a8296d3d03ff546b76153e11445f9bdecf955a  libtommath/LICENSE
> diff --git a/package/dropbear/dropbear.mk b/package/dropbear/dropbear.mk
> index b7342cef5..bca79da45 100644
> --- a/package/dropbear/dropbear.mk
> +++ b/package/dropbear/dropbear.mk
> @@ -79,6 +79,8 @@ DROPBEAR_POST_EXTRACT_HOOKS += DROPBEAR_ENABLE_REVERSE_DNS
>  endif
>  
>  ifeq ($(BR2_PACKAGE_DROPBEAR_SMALL),y)
> +DROPBEAR_LICENSE +=, Unlicense, WTFPL
> +DROPBEAR_LICENSE_FILES += libtommath/LICENSE libtomcrypt/LICENSE
>  DROPBEAR_CONF_OPTS += --disable-zlib --enable-bundled-libtom
>  else
>  define DROPBEAR_BUILD_FEATURED
> -- 
> 2.25.1
> 
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/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.  |
'------------------------------^-------^------------------^--------------------'

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

* [Buildroot] [PATCH v3 2/2] package/dropbear: bump to version 2020.80
  2020-06-29  7:16 ` [Buildroot] [PATCH v3 2/2] package/dropbear: bump to version 2020.80 Francois Perrad
  2020-06-29  7:35   ` Alexander Dahl
@ 2020-06-29 19:55   ` Yann E. MORIN
  1 sibling, 0 replies; 5+ messages in thread
From: Yann E. MORIN @ 2020-06-29 19:55 UTC (permalink / raw)
  To: buildroot

Franc?ois, All,

On 2020-06-29 09:16 +0200, Francois Perrad spake thusly:
> remove merged patches.
> 
> LICENSE diff:
> - Copyright (c) 2002-2015 Matt Johnston
> + Copyright (c) 2002-2020 Matt Johnston
> - LibTomCrypt and LibTomMath are written by Tom St Denis, and are Public Domain.
> + LibTomCrypt and LibTomMath are written by Tom St Denis and others, see
> + libtomcrypt/LICENSE and libtommath/LICENSE.
> 
> Signed-off-by: Francois Perrad <francois.perrad@gadz.org>

Applied to master, thanks.

Regards,
Yann E. MORIN.

> ---
>  .../0001-_GNU_SOURCE-for-random.patch         | 25 --------------
>  .../0002-move-GNU_SOURCE-earlier.patch        | 34 -------------------
>  package/dropbear/dropbear.hash                |  4 +--
>  package/dropbear/dropbear.mk                  |  2 +-
>  4 files changed, 3 insertions(+), 62 deletions(-)
>  delete mode 100644 package/dropbear/0001-_GNU_SOURCE-for-random.patch
>  delete mode 100644 package/dropbear/0002-move-GNU_SOURCE-earlier.patch
> 
> diff --git a/package/dropbear/0001-_GNU_SOURCE-for-random.patch b/package/dropbear/0001-_GNU_SOURCE-for-random.patch
> deleted file mode 100644
> index dfb851411..000000000
> --- a/package/dropbear/0001-_GNU_SOURCE-for-random.patch
> +++ /dev/null
> @@ -1,25 +0,0 @@
> -From 3f5c106a880a02b21739f2022746e6aa7672474c Mon Sep 17 00:00:00 2001
> -From: Matt Johnston <matt@ucc.asn.au>
> -Date: Tue, 23 Jun 2020 21:38:46 +0800
> -Subject: [PATCH] _GNU_SOURCE for random
> -
> -[Retrieved from:
> -https://github.com/mkj/dropbear/commit/3f5c106a880a02b21739f2022746e6aa7672474c]
> -Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
> ----
> - includes.h | 2 ++
> - 1 file changed, 2 insertions(+)
> -
> -diff --git a/includes.h b/includes.h
> -index e8c3e189..2789f23d 100644
> ---- a/includes.h
> -+++ b/includes.h
> -@@ -125,6 +125,8 @@
> - #endif
> - 
> - #ifdef HAVE_SYS_RANDOM_H
> -+/* uclibc needs _GNU_SOURCE */
> -+#define _GNU_SOURCE
> - #include <sys/random.h>
> - #endif
> - 
> diff --git a/package/dropbear/0002-move-GNU_SOURCE-earlier.patch b/package/dropbear/0002-move-GNU_SOURCE-earlier.patch
> deleted file mode 100644
> index 81282e423..000000000
> --- a/package/dropbear/0002-move-GNU_SOURCE-earlier.patch
> +++ /dev/null
> @@ -1,34 +0,0 @@
> -From a7a67585cbc3fe5df85c641618b347a51a943356 Mon Sep 17 00:00:00 2001
> -From: Matt Johnston <matt@ucc.asn.au>
> -Date: Tue, 23 Jun 2020 22:24:58 +0800
> -Subject: [PATCH] move GNU_SOURCE earlier
> -
> -[Retrieved from:
> -https://github.com/mkj/dropbear/commit/a7a67585cbc3fe5df85c641618b347a51a943356]
> -Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
> ----
> - includes.h | 4 ++--
> - 1 file changed, 2 insertions(+), 2 deletions(-)
> -
> -diff --git a/includes.h b/includes.h
> -index 2789f23d..884ebf71 100644
> ---- a/includes.h
> -+++ b/includes.h
> -@@ -25,6 +25,8 @@
> - #ifndef DROPBEAR_INCLUDES_H_
> - #define DROPBEAR_INCLUDES_H_
> - 
> -+/* uclibc needs _GNU_SOURCE, maybe other things? */
> -+#define _GNU_SOURCE
> - 
> - #include "options.h"
> - #include "debug.h"
> -@@ -125,8 +127,6 @@
> - #endif
> - 
> - #ifdef HAVE_SYS_RANDOM_H
> --/* uclibc needs _GNU_SOURCE */
> --#define _GNU_SOURCE
> - #include <sys/random.h>
> - #endif
> - 
> diff --git a/package/dropbear/dropbear.hash b/package/dropbear/dropbear.hash
> index 39a116ede..af69cec53 100644
> --- a/package/dropbear/dropbear.hash
> +++ b/package/dropbear/dropbear.hash
> @@ -1,7 +1,7 @@
>  # From https://matt.ucc.asn.au/dropbear/releases/SHA256SUM.asc
> -sha256  084f00546b1610a3422a0773e2c04cbe1a220d984209e033b548b49f379cc441  dropbear-2020.79.tar.bz2
> +sha256  d927941b91f2da150b2033f1a88b6a47999bf0afb1493a73e9216cffdb5d7949  dropbear-2020.80.tar.bz2
>  
>  # License file, locally computed
> -sha256  2ac2be75a2232ec2473070dd791ee990253dffde6022d364809bbbcbc30f710e  LICENSE
> +sha256  a99ce657d790b761c132ee7e0de18edb437ae6361e536d991c6a12f36e770445  LICENSE
>  sha256  8f196cb13afd271f5e267fd29543fc454596382ad580e7592709492843996ac8  libtomcrypt/LICENSE
>  sha256  2fa64b163659f41965c9815882a8296d3d03ff546b76153e11445f9bdecf955a  libtommath/LICENSE
> diff --git a/package/dropbear/dropbear.mk b/package/dropbear/dropbear.mk
> index bca79da45..2d0bd52ef 100644
> --- a/package/dropbear/dropbear.mk
> +++ b/package/dropbear/dropbear.mk
> @@ -4,7 +4,7 @@
>  #
>  ################################################################################
>  
> -DROPBEAR_VERSION = 2020.79
> +DROPBEAR_VERSION = 2020.80
>  DROPBEAR_SITE = https://matt.ucc.asn.au/dropbear/releases
>  DROPBEAR_SOURCE = dropbear-$(DROPBEAR_VERSION).tar.bz2
>  DROPBEAR_LICENSE = MIT, BSD-2-Clause, Public domain
> -- 
> 2.25.1
> 
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/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.  |
'------------------------------^-------^------------------^--------------------'

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

end of thread, other threads:[~2020-06-29 19:55 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-06-29  7:16 [Buildroot] [PATCH v3 1/2] package/dropbear: fix license infos Francois Perrad
2020-06-29  7:16 ` [Buildroot] [PATCH v3 2/2] package/dropbear: bump to version 2020.80 Francois Perrad
2020-06-29  7:35   ` Alexander Dahl
2020-06-29 19:55   ` Yann E. MORIN
2020-06-29 19:55 ` [Buildroot] [PATCH v3 1/2] package/dropbear: fix license infos 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.