All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/6] libgpg-error: enable riscv64 support
@ 2018-10-30 11:40 Baruch Siach
  2018-10-30 11:40 ` [Buildroot] [PATCH 2/6] libgpg-error: bump to version 1.32 Baruch Siach
                   ` (5 more replies)
  0 siblings, 6 replies; 7+ messages in thread
From: Baruch Siach @ 2018-10-30 11:40 UTC (permalink / raw)
  To: buildroot

libgpg-error version 1.28 added support for riscv64.

Cc: Mark Corbin <mark.corbin@embecosm.com>
Signed-off-by: Baruch Siach <baruch@tkos.co.il>
---
 package/libgpg-error/Config.in | 9 ++++++---
 1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/package/libgpg-error/Config.in b/package/libgpg-error/Config.in
index 40424e41cfff..0659a834bf2f 100644
--- a/package/libgpg-error/Config.in
+++ b/package/libgpg-error/Config.in
@@ -6,9 +6,10 @@ config BR2_PACKAGE_LIBGPG_ERROR_ARCH_SUPPORTS
 		BR2_armeb	|| BR2_i386		|| BR2_mips	|| \
 		BR2_mipsel	|| BR2_mips64		|| BR2_mips64el	|| \
 		BR2_m68k	|| BR2_nios2		|| BR2_powerpc	|| \
-		BR2_powerpc64 	|| BR2_powerpc64le 	|| BR2_sh4	|| \
-		BR2_sh4eb	|| BR2_sh4a		|| BR2_sh4aeb	|| \
-		BR2_sparc	|| BR2_sparc64		|| BR2_x86_64
+		BR2_powerpc64 	|| BR2_powerpc64le 	|| BR2_RISCV_64	|| \
+		BR2_sh4		|| BR2_sh4eb		|| BR2_sh4a	|| \
+		BR2_sh4aeb	|| BR2_sparc		|| BR2_sparc64	|| \
+		BR2_x86_64
 
 config BR2_PACKAGE_LIBGPG_ERROR
 	bool "libgpg-error"
@@ -39,6 +40,8 @@ config BR2_PACKAGE_LIBGPG_ERROR_SYSCFG
 		if BR2_powerpc
 	default "powerpc64-unknown-linux-gnu" \
 		if BR2_powerpc64 || BR2_powerpc64le
+	default "riscv64-unknown-linux-gnu" \
+		if BR2_RISCV_64
 	default "sh4-unknown-linux-gnu" \
 		if BR2_sh4 || BR2_sh4eb || BR2_sh4a || BR2_sh4aeb
 	default "sparc-unknown-linux-gnu" \
-- 
2.19.1

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

* [Buildroot] [PATCH 2/6] libgpg-error: bump to version 1.32
  2018-10-30 11:40 [Buildroot] [PATCH 1/6] libgpg-error: enable riscv64 support Baruch Siach
@ 2018-10-30 11:40 ` Baruch Siach
  2018-10-30 11:40 ` [Buildroot] [PATCH 3/6] libgpgme: bump to version 1.12.0 Baruch Siach
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: Baruch Siach @ 2018-10-30 11:40 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Baruch Siach <baruch@tkos.co.il>
---
 package/libgpg-error/libgpg-error.hash | 5 +++--
 package/libgpg-error/libgpg-error.mk   | 2 +-
 2 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/package/libgpg-error/libgpg-error.hash b/package/libgpg-error/libgpg-error.hash
index 608f9c62d710..93593b14116e 100644
--- a/package/libgpg-error/libgpg-error.hash
+++ b/package/libgpg-error/libgpg-error.hash
@@ -1,6 +1,7 @@
 # Locally calculated after checking pgp signature
-# https://gnupg.org/ftp/gcrypt/libgpg-error/libgpg-error-1.31.tar.bz2.sig
-sha256 40d0a823c9329478063903192a1f82496083b277265904878f4bc09e0db7a4ef  libgpg-error-1.31.tar.bz2
+# https://gnupg.org/ftp/gcrypt/libgpg-error/libgpg-error-1.32.tar.bz2.sig
+# using key D8692123C4065DEA5E0F3AB5249B39D24F25E3B6
+sha256 c345c5e73cc2332f8d50db84a2280abfb1d8f6d4f1858b9daa30404db44540ca  libgpg-error-1.32.tar.bz2
 # Locally calculated
 sha256 231f7edcc7352d7734a96eef0b8030f77982678c516876fcb81e25b32d68564c  COPYING
 sha256 a9bdde5616ecdd1e980b44f360600ee8783b1f99b8cc83a2beb163a0a390e861  COPYING.LIB
diff --git a/package/libgpg-error/libgpg-error.mk b/package/libgpg-error/libgpg-error.mk
index aed5a517b0a5..ef817c7cc689 100644
--- a/package/libgpg-error/libgpg-error.mk
+++ b/package/libgpg-error/libgpg-error.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-LIBGPG_ERROR_VERSION = 1.31
+LIBGPG_ERROR_VERSION = 1.32
 LIBGPG_ERROR_SITE = https://www.gnupg.org/ftp/gcrypt/libgpg-error
 LIBGPG_ERROR_SOURCE = libgpg-error-$(LIBGPG_ERROR_VERSION).tar.bz2
 LIBGPG_ERROR_LICENSE = GPL-2.0+, LGPL-2.1+
-- 
2.19.1

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

* [Buildroot] [PATCH 3/6] libgpgme: bump to version 1.12.0
  2018-10-30 11:40 [Buildroot] [PATCH 1/6] libgpg-error: enable riscv64 support Baruch Siach
  2018-10-30 11:40 ` [Buildroot] [PATCH 2/6] libgpg-error: bump to version 1.32 Baruch Siach
@ 2018-10-30 11:40 ` Baruch Siach
  2018-10-30 11:40 ` [Buildroot] [PATCH 4/6] libnpth: bump to version 1.6 Baruch Siach
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: Baruch Siach @ 2018-10-30 11:40 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Baruch Siach <baruch@tkos.co.il>
---
 package/libgpgme/libgpgme.hash | 9 +++++----
 package/libgpgme/libgpgme.mk   | 2 +-
 2 files changed, 6 insertions(+), 5 deletions(-)

diff --git a/package/libgpgme/libgpgme.hash b/package/libgpgme/libgpgme.hash
index 54c7bf7a0984..1e61fbd833b2 100644
--- a/package/libgpgme/libgpgme.hash
+++ b/package/libgpgme/libgpgme.hash
@@ -1,7 +1,8 @@
-# From https://lists.gnupg.org/pipermail/gnupg-announce/2018q2/000423.html
-sha1 95b1fc427871ca8d30d6d3b1985c816fe0b5077b  gpgme-1.11.1.tar.bz2
+# From https://lists.gnupg.org/pipermail/gnupg-announce/2018q4/000429.html
+sha1 6f1828fcd7de4366ca063e57f35e4ab24bc91baf  gpgme-1.12.0.tar.bz2
 # Locally calculated after checking pgp signature
-# https://gnupg.org/ftp/gcrypt/gpgme/gpgme-1.11.1.tar.bz2.sig
-sha256 2d1b111774d2e3dd26dcd7c251819ce4ef774ec5e566251eb9308fa7542fbd6f  gpgme-1.11.1.tar.bz2
+# https://gnupg.org/ftp/gcrypt/gpgme/gpgme-1.12.0.tar.bz2.sig
+# using key D8692123C4065DEA5E0F3AB5249B39D24F25E3B6
+sha256 b4dc951c3743a60e2e120a77892e9e864fb936b2e58e7c77e8581f4d050e8cd8  gpgme-1.12.0.tar.bz2
 # Locally calculated
 sha256 ca0061fc1381a3ab242310e4b3f56389f28e3d460eb2fd822ed7a21c6f030532  COPYING.LESSER
diff --git a/package/libgpgme/libgpgme.mk b/package/libgpgme/libgpgme.mk
index 03402cf38286..a70ffcf11d2f 100644
--- a/package/libgpgme/libgpgme.mk
+++ b/package/libgpgme/libgpgme.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-LIBGPGME_VERSION = 1.11.1
+LIBGPGME_VERSION = 1.12.0
 LIBGPGME_SITE = https://gnupg.org/ftp/gcrypt/gpgme
 LIBGPGME_SOURCE = gpgme-$(LIBGPGME_VERSION).tar.bz2
 LIBGPGME_LICENSE = LGPL-2.1+
-- 
2.19.1

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

* [Buildroot] [PATCH 4/6] libnpth: bump to version 1.6
  2018-10-30 11:40 [Buildroot] [PATCH 1/6] libgpg-error: enable riscv64 support Baruch Siach
  2018-10-30 11:40 ` [Buildroot] [PATCH 2/6] libgpg-error: bump to version 1.32 Baruch Siach
  2018-10-30 11:40 ` [Buildroot] [PATCH 3/6] libgpgme: bump to version 1.12.0 Baruch Siach
@ 2018-10-30 11:40 ` Baruch Siach
  2018-10-30 11:40 ` [Buildroot] [PATCH 5/6] libgcrypt: bump to version 1.8.4 Baruch Siach
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: Baruch Siach @ 2018-10-30 11:40 UTC (permalink / raw)
  To: buildroot

Cc: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Baruch Siach <baruch@tkos.co.il>
---
 package/libnpth/libnpth.hash | 4 +++-
 package/libnpth/libnpth.mk   | 2 +-
 2 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/package/libnpth/libnpth.hash b/package/libnpth/libnpth.hash
index 251d54badfca..8d0b6bd54764 100644
--- a/package/libnpth/libnpth.hash
+++ b/package/libnpth/libnpth.hash
@@ -1,5 +1,7 @@
 # Locally calculated after checking signature
-sha256 294a690c1f537b92ed829d867bee537e46be93fbd60b16c04630fbbfcd9db3c2  npth-1.5.tar.bz2
+# https://gnupg.org/ftp/gcrypt/npth/npth-1.6.tar.bz2.sig
+# using key D8692123C4065DEA5E0F3AB5249B39D24F25E3B6
+sha256 1393abd9adcf0762d34798dc34fdcf4d0d22a8410721e76f1e3afcd1daa4e2d1  npth-1.6.tar.bz2
 
 # Hash for license file:
 sha256 ce64d5f7b49ea6d80fdb6d4cdee6839d1a94274f7493dc797c3b55b65ec8e9ed  COPYING.LIB
diff --git a/package/libnpth/libnpth.mk b/package/libnpth/libnpth.mk
index 7b2eb2ae258c..ecfef863f41f 100644
--- a/package/libnpth/libnpth.mk
+++ b/package/libnpth/libnpth.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-LIBNPTH_VERSION = 1.5
+LIBNPTH_VERSION = 1.6
 LIBNPTH_SOURCE = npth-$(LIBNPTH_VERSION).tar.bz2
 LIBNPTH_SITE = https://www.gnupg.org/ftp/gcrypt/npth
 LIBNPTH_LICENSE = LGPL-2.0+
-- 
2.19.1

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

* [Buildroot] [PATCH 5/6] libgcrypt: bump to version 1.8.4
  2018-10-30 11:40 [Buildroot] [PATCH 1/6] libgpg-error: enable riscv64 support Baruch Siach
                   ` (2 preceding siblings ...)
  2018-10-30 11:40 ` [Buildroot] [PATCH 4/6] libnpth: bump to version 1.6 Baruch Siach
@ 2018-10-30 11:40 ` Baruch Siach
  2018-10-30 11:40 ` [Buildroot] [PATCH 6/6] gnupg2: bump to version 2.2.10 Baruch Siach
  2018-11-01 13:19 ` [Buildroot] [PATCH 1/6] libgpg-error: enable riscv64 support Thomas Petazzoni
  5 siblings, 0 replies; 7+ messages in thread
From: Baruch Siach @ 2018-10-30 11:40 UTC (permalink / raw)
  To: buildroot

Drop patch 0001. We patch the configure script directly in patch 0002,
and we don't autoreconf. So this patch has no effect (never had).

Rename patch 0002. The next version bump should drop this patch as well.

Signed-off-by: Baruch Siach <baruch@tkos.co.il>
---
 .../0001-ac_cv_sys_symbol_underscore.patch    | 27 -------------------
 ...configure.patch => 0001-reconfigure.patch} |  0
 package/libgcrypt/libgcrypt.hash              |  9 ++++---
 package/libgcrypt/libgcrypt.mk                |  2 +-
 4 files changed, 6 insertions(+), 32 deletions(-)
 delete mode 100644 package/libgcrypt/0001-ac_cv_sys_symbol_underscore.patch
 rename package/libgcrypt/{0002-reconfigure.patch => 0001-reconfigure.patch} (100%)

diff --git a/package/libgcrypt/0001-ac_cv_sys_symbol_underscore.patch b/package/libgcrypt/0001-ac_cv_sys_symbol_underscore.patch
deleted file mode 100644
index 95db0fbba88a..000000000000
--- a/package/libgcrypt/0001-ac_cv_sys_symbol_underscore.patch
+++ /dev/null
@@ -1,27 +0,0 @@
-diff --git a/acinclude.m4 b/acinclude.m4
-index a7bc0fa..1a5bffc 100644
---- a/acinclude.m4
-+++ b/acinclude.m4
-@@ -76,13 +76,14 @@ case "${host}" in
-     i386-emx-os2 | i[3456]86-pc-os2*emx | i386-pc-msdosdjgpp)
-         ac_cv_sys_symbol_underscore=yes
-         ;;
--    *)
--      if test "$cross_compiling" = yes; then
--        if test "x$ac_cv_sys_symbol_underscore" = x ; then
--           ac_cv_sys_symbol_underscore=yes
--        fi
--      else
--         tmp_do_check="yes"
-+    *) if test -z "$ac_cv_sys_symbol_underscore"; then
-+         if test "$cross_compiling" = yes; then
-+           if test "x$ac_cv_sys_symbol_underscore" = x ; then
-+              ac_cv_sys_symbol_underscore=yes
-+           fi
-+         else
-+            tmp_do_check="yes"
-+         fi
-       fi
-        ;;
- esac
- 
diff --git a/package/libgcrypt/0002-reconfigure.patch b/package/libgcrypt/0001-reconfigure.patch
similarity index 100%
rename from package/libgcrypt/0002-reconfigure.patch
rename to package/libgcrypt/0001-reconfigure.patch
diff --git a/package/libgcrypt/libgcrypt.hash b/package/libgcrypt/libgcrypt.hash
index dce6522959da..000f26dd2d90 100644
--- a/package/libgcrypt/libgcrypt.hash
+++ b/package/libgcrypt/libgcrypt.hash
@@ -1,6 +1,7 @@
-# From https://lists.gnupg.org/pipermail/gnupg-announce/2018q2/000426.html
-sha1 13bd2ce69e59ab538e959911dfae80ea309636e3  libgcrypt-1.8.3.tar.bz2
+# From https://lists.gnupg.org/pipermail/gnupg-announce/2018q4/000431.html
+sha1 4a8ef9db6922f3a31992aca5640b4198a69b58fc  libgcrypt-1.8.4.tar.bz2
 # Locally calculated after checking signature
-# https://gnupg.org/ftp/gcrypt/libgcrypt/libgcrypt-1.8.3.tar.bz2.sig
-sha256  66ec90be036747602f2b48f98312361a9180c97c68a690a5f376fa0f67d0af7c  libgcrypt-1.8.3.tar.bz2
+# https://gnupg.org/ftp/gcrypt/libgcrypt/libgcrypt-1.8.4.tar.bz2.sig
+# using key D8692123C4065DEA5E0F3AB5249B39D24F25E3B6
+sha256  f638143a0672628fde0cad745e9b14deb85dffb175709cacc1f4fe24b93f2227  libgcrypt-1.8.4.tar.bz2
 sha256  ca0061fc1381a3ab242310e4b3f56389f28e3d460eb2fd822ed7a21c6f030532  COPYING.LIB
diff --git a/package/libgcrypt/libgcrypt.mk b/package/libgcrypt/libgcrypt.mk
index f25944da6455..452cf17ce1f2 100644
--- a/package/libgcrypt/libgcrypt.mk
+++ b/package/libgcrypt/libgcrypt.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-LIBGCRYPT_VERSION = 1.8.3
+LIBGCRYPT_VERSION = 1.8.4
 LIBGCRYPT_SOURCE = libgcrypt-$(LIBGCRYPT_VERSION).tar.bz2
 LIBGCRYPT_LICENSE = LGPL-2.1+
 LIBGCRYPT_LICENSE_FILES = COPYING.LIB
-- 
2.19.1

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

* [Buildroot] [PATCH 6/6] gnupg2: bump to version 2.2.10
  2018-10-30 11:40 [Buildroot] [PATCH 1/6] libgpg-error: enable riscv64 support Baruch Siach
                   ` (3 preceding siblings ...)
  2018-10-30 11:40 ` [Buildroot] [PATCH 5/6] libgcrypt: bump to version 1.8.4 Baruch Siach
@ 2018-10-30 11:40 ` Baruch Siach
  2018-11-01 13:19 ` [Buildroot] [PATCH 1/6] libgpg-error: enable riscv64 support Thomas Petazzoni
  5 siblings, 0 replies; 7+ messages in thread
From: Baruch Siach @ 2018-10-30 11:40 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Baruch Siach <baruch@tkos.co.il>
---
 package/gnupg2/gnupg2.hash | 9 +++++----
 package/gnupg2/gnupg2.mk   | 2 +-
 2 files changed, 6 insertions(+), 5 deletions(-)

diff --git a/package/gnupg2/gnupg2.hash b/package/gnupg2/gnupg2.hash
index f5890c5e2aa1..a367effcab72 100644
--- a/package/gnupg2/gnupg2.hash
+++ b/package/gnupg2/gnupg2.hash
@@ -1,6 +1,7 @@
-# From https://lists.gnupg.org/pipermail/gnupg-announce/2018q2/000425.html
-sha1 d87553a125832ea90e8aeb3ceeecf24f88de56fb  gnupg-2.2.8.tar.bz2
+# From https://lists.gnupg.org/pipermail/gnupg-announce/2018q3/000428.html
+sha1 3e87504e2ca317718aa9b6299947ebf7e906b54e  gnupg-2.2.10.tar.bz2
 # Calculated based on the hash above and signature
-# https://gnupg.org/ftp/gcrypt/gnupg/gnupg-2.2.8.tar.bz2.sig
-sha256 777b4cb8ced21965a5053d4fa20fe11484f0a478f3d011cef508a1a49db50dcd  gnupg-2.2.8.tar.bz2
+# https://gnupg.org/ftp/gcrypt/gnupg/gnupg-2.2.10.tar.bz2.sig
+# using key D8692123C4065DEA5E0F3AB5249B39D24F25E3B6
+sha256 799dd37a86a1448732e339bd20440f4f5ee6e69755f6fd7a73ee8af30840c915  gnupg-2.2.10.tar.bz2
 sha256 bc2d6664f6276fa0a72d57633b3ae68dc7dcb677b71018bf08c8e93e509f1357  COPYING
diff --git a/package/gnupg2/gnupg2.mk b/package/gnupg2/gnupg2.mk
index 3151860f3779..64329522d513 100644
--- a/package/gnupg2/gnupg2.mk
+++ b/package/gnupg2/gnupg2.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-GNUPG2_VERSION = 2.2.8
+GNUPG2_VERSION = 2.2.10
 GNUPG2_SOURCE = gnupg-$(GNUPG2_VERSION).tar.bz2
 GNUPG2_SITE = https://gnupg.org/ftp/gcrypt/gnupg
 GNUPG2_LICENSE = GPL-3.0+
-- 
2.19.1

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

* [Buildroot] [PATCH 1/6] libgpg-error: enable riscv64 support
  2018-10-30 11:40 [Buildroot] [PATCH 1/6] libgpg-error: enable riscv64 support Baruch Siach
                   ` (4 preceding siblings ...)
  2018-10-30 11:40 ` [Buildroot] [PATCH 6/6] gnupg2: bump to version 2.2.10 Baruch Siach
@ 2018-11-01 13:19 ` Thomas Petazzoni
  5 siblings, 0 replies; 7+ messages in thread
From: Thomas Petazzoni @ 2018-11-01 13:19 UTC (permalink / raw)
  To: buildroot

Hello,

On Tue, 30 Oct 2018 13:40:19 +0200, Baruch Siach wrote:
> libgpg-error version 1.28 added support for riscv64.
> 
> Cc: Mark Corbin <mark.corbin@embecosm.com>
> Signed-off-by: Baruch Siach <baruch@tkos.co.il>
> ---
>  package/libgpg-error/Config.in | 9 ++++++---
>  1 file changed, 6 insertions(+), 3 deletions(-)

Entire series applied. Thanks!

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com

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

end of thread, other threads:[~2018-11-01 13:19 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-10-30 11:40 [Buildroot] [PATCH 1/6] libgpg-error: enable riscv64 support Baruch Siach
2018-10-30 11:40 ` [Buildroot] [PATCH 2/6] libgpg-error: bump to version 1.32 Baruch Siach
2018-10-30 11:40 ` [Buildroot] [PATCH 3/6] libgpgme: bump to version 1.12.0 Baruch Siach
2018-10-30 11:40 ` [Buildroot] [PATCH 4/6] libnpth: bump to version 1.6 Baruch Siach
2018-10-30 11:40 ` [Buildroot] [PATCH 5/6] libgcrypt: bump to version 1.8.4 Baruch Siach
2018-10-30 11:40 ` [Buildroot] [PATCH 6/6] gnupg2: bump to version 2.2.10 Baruch Siach
2018-11-01 13:19 ` [Buildroot] [PATCH 1/6] libgpg-error: enable riscv64 support 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.