gnunet: update to version 0.19.4
authorDaniel Golle <daniel@makrotopia.org>
Sat, 8 Jul 2023 11:29:30 +0000 (12:29 +0100)
committerDaniel Golle <daniel@makrotopia.org>
Sat, 5 Aug 2023 11:18:44 +0000 (12:18 +0100)
v0.19.4:
  - No changes

v0.19.3:
  - We now detect MySQL's strange, version-dependent my_bool type on configure.
  - Add pkg-config definitions for gnunet messenger.

Signed-off-by: Daniel Golle <daniel@makrotopia.org>
net/gnunet/Makefile
net/gnunet/patches/010-endian.patch [deleted file]

index 193c6c1020c67a263d595500cd50e9740cf53a8e..0b212fe44df329da031975936b1f685b70f21555 100644 (file)
@@ -2,11 +2,11 @@ include $(TOPDIR)/rules.mk
 
 PKG_NAME:=gnunet
 
-PKG_VERSION:=0.19.2
+PKG_VERSION:=0.19.4
 PKG_RELEASE:=1
 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
 PKG_SOURCE_URL:=@GNU/gnunet
-PKG_HASH:=86034d92ebf8f6623dad95f1031ded1466e064b96ffac9d3e9d47229ac2c22ff
+PKG_HASH:=00a63df408d5987f5ba9a50441f2a77182bd9fb32f1e302ae563ac94e7ac009b
 
 PKG_LICENSE:=AGPL-3.0
 PKG_LICENSE_FILES:=COPYING
diff --git a/net/gnunet/patches/010-endian.patch b/net/gnunet/patches/010-endian.patch
deleted file mode 100644 (file)
index cbb83c2..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
---- a/src/include/gnunet_common.h
-+++ b/src/include/gnunet_common.h
-@@ -164,7 +164,6 @@ enum GNUNET_GenericReturnValue
-  * Endian operations
-  */
--#if __BYTE_ORDER == __LITTLE_ENDIAN
- #if defined(bswap_16) || defined(bswap_32) || defined(bswap_64)
- #define BYTE_SWAP_16(x) bswap_16 (x)
- #define BYTE_SWAP_32(x) bswap_32 (x)
-@@ -184,6 +183,7 @@ enum GNUNET_GenericReturnValue
-                                              56))
- #endif
-+#if __BYTE_ORDER == __LITTLE_ENDIAN
- #define GNUNET_htobe16(x) BYTE_SWAP_16 (x)
- #define GNUNET_htole16(x) (x)
- #define GNUNET_be16toh(x) BYTE_SWAP_16 (x)