libgpg-error: update to 1.42
authorW. Michael Petullo <mike@flyn.org>
Mon, 10 May 2021 18:19:34 +0000 (13:19 -0500)
committerDaniel Golle <daniel@makrotopia.org>
Mon, 15 Nov 2021 20:01:28 +0000 (20:01 +0000)
Signed-off-by: W. Michael Petullo <mike@flyn.org>
(cherry picked from commit c664e1f20727f7b38d0aa1e7977d904f727d1a24)

libs/libgpg-error/Makefile
libs/libgpg-error/patches/011-macos-compile-fix.patch [deleted file]

index 69e6bad4f104b5aa044558daf9d495c595249114..00f8c6eb208c4502588875c9074bfceb58df4646 100644 (file)
@@ -8,14 +8,14 @@
 include $(TOPDIR)/rules.mk
 
 PKG_NAME:=libgpg-error
-PKG_VERSION:=1.39
-PKG_RELEASE:=2
+PKG_VERSION:=1.42
+PKG_RELEASE:=$(AUTORELEASE)
 
 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
 PKG_SOURCE_URL:=https://mirrors.dotsrc.org/gcrypt/libgpg-error \
                http://ring.ksc.gr.jp/archives/net/gnupg/libgpg-error \
                https://www.gnupg.org/ftp/gcrypt/libgpg-error
-PKG_HASH:=4a836edcae592094ef1c5a4834908f44986ab2b82e0824a0344b49df8cdb298f
+PKG_HASH:=fc07e70f6c615f8c4f590a8e37a9b8dd2e2ca1e9408f8e60459c67452b925e23
 
 PKG_MAINTAINER:=W. Michael Petullo <mike@flyn.org>
 PKG_LICENSE:=LGPL-2.1-or-later
diff --git a/libs/libgpg-error/patches/011-macos-compile-fix.patch b/libs/libgpg-error/patches/011-macos-compile-fix.patch
deleted file mode 100644 (file)
index c615ad1..0000000
+++ /dev/null
@@ -1,24 +0,0 @@
---- a/src/gen-lock-obj.sh
-+++ b/src/gen-lock-obj.sh
-@@ -84,17 +84,16 @@ EOF
- #     USE_LONG_DOUBLE_FOR_ALIGNMENT
- #
--echo -n "#define GPGRT_LOCK_INITIALIZER {$LOCK_ABI_VERSION,{{"
-+printf "#define GPGRT_LOCK_INITIALIZER {$LOCK_ABI_VERSION,{{"
- i=0
- while test "$i" -lt $ac_mtx_size; do
-     if test "$i" -ne 0 -a "$(( $i % 8 ))" -eq 0; then
--        echo ' \'
--        echo -n "                                    "
-+        printf " %s\n                                    " "\\"
-     fi
--    echo -n '0'
-+    printf '0'
-     if test "$i" -lt $(($ac_mtx_size - 1)); then
--        echo -n ','
-+        printf ','
-     fi
-     i=$(( i + 1 ))
- done