# $NetBSD$
-DISTNAME= gnunet-0.11.7
+DISTNAME= gnunet-0.11.8
CATEGORIES= net
MASTER_SITES= ${MASTER_SITE_GNU:=gnunet/}
COMMENT= Framework for secure P2P networking
LICENSE= gnu-agpl-v3
-USE_TOOLS+= msgfmt pkg-config gmake
+USE_TOOLS+= msgfmt pkg-config # gmake
USE_LANGUAGES= c
GNU_CONFIGURE= yes
USE_LIBTOOL= yes
$NetBSD$
-SHA1 (gnunet-0.11.7.tar.gz) = 64b6fe28c0ce78026a2bc5885fbdff795d76234f
-RMD160 (gnunet-0.11.7.tar.gz) = b29dbfedd6e35d30aee61e4fadf5b0ac43dee1e2
-SHA512 (gnunet-0.11.7.tar.gz) = bd92e0c7ba1f87684f348eecd097b0c7de3d6c370bd7a3745555fc83518f17cbe49a30821d3d1338b45f14052d4a77f2f3673b961ccab36e6a82220b9acdf76b
-Size (gnunet-0.11.7.tar.gz) = 7352977 bytes
-SHA1 (patch-src_gns_test_plugin_rest_gns.sh) = b420b6ee51d174c5975b68a63d84461edb3bd0d4
-SHA1 (patch-src_namestore_test_plugin_rest_gns.sh) = 98729f9d1c4af5318a30682bb82aea6843756a6e
+SHA1 (gnunet-0.11.8.tar.gz) = d82e896c1017f8370e183671f98cfb69ae40296a
+RMD160 (gnunet-0.11.8.tar.gz) = ee0d41d3d38f66d04f928611229845b53467a2dc
+SHA512 (gnunet-0.11.8.tar.gz) = bcdcd9452a905dcc0c474517f2941ae5822bda23e918c4ba5d61d085016d69eba5b1477bb30cf8179a6d6290898ea23ec485e3f1acfb3cf4ed0979ce8054af7e
+Size (gnunet-0.11.8.tar.gz) = 7352208 bytes
# Should we name this qrcode instead?
PKG_SUPPORTED_OPTIONS+= zbar
-# in 0.11.7 when fixed, swap doc for mdoc
-# in 0.11.7 when fixed, add back idn
+# mdoc should be fixed in 0.11.9, missing files were included
+# post-0.11.8.
+# in 0.11.9 when fixed for pkgsrc, add back idn.
PKG_SUGGESTED_OPTIONS+= doc sqlite3 json opus ogg gstreamer zbar
# bluez is still in pkgsrc-wip, and I should test this
PLIST_VARS+= experimental json
PLIST_VARS+= pgsql mysql sqlite3
PLIST_VARS+= linux freebsd bluez
-PLIST_VARS+= linuxfreebsd
+PLIST_VARS+= linuxfreebsd zbar
# openssl is currently required by:
# src/transport/gnunet-transport-certificate-creation
+++ /dev/null
-$NetBSD$
-
-pick from 95485f2f9b181cc710ddbf806b5f8601f23edb33
-
---- src/gns/test_plugin_rest_gns.sh~
-+++ src/gns/test_plugin_rest_gns.sh
-@@ -24,7 +24,7 @@ curl_get () {
- #$2 is grep
- cache="$(gnurl -v "$1" 2>&1 | grep "$2")"
- #echo "$cache"
-- if [ "" == "$cache" ]
-+ if [ "" = "$cache" ]
- then
- gnunet-identity -D "$TEST_TLD" -c test_gns_lookup.conf > /dev/null 2>&1
- gnunet-arm -e -c test_gns_lookup.conf
+++ /dev/null
-$NetBSD$
-
-pick from cf9440cc40334ed87755615ecf6d5d2c2445f17b
-
---- src/namestore/test_plugin_rest_namestore.sh~
-+++ src/namestore/test_plugin_rest_namestore.sh
-@@ -25,7 +25,7 @@ curl_get () {
- resp=$(curl -v "$1" 2>&1)
- cache="$(echo $resp | grep "$2")"
- #echo $cache
-- if [ "" == "$cache" ]
-+ if [ "" = "$cache" ]
- then
- echo "Error in get response: $resp, expected $2"
- gnunet-arm -e -c test_namestore_api.conf
-@@ -40,7 +40,7 @@ curl_post () {
- resp=$(curl -v -X "POST" "$1" --data "$2" 2>&1)
- cache="$(echo $resp | grep "$3")"
- #echo $cache
-- if [ "" == "$cache" ]
-+ if [ "" = "$cache" ]
- then
- echo "Error in post response: $resp ($2), expected $3"
- gnunet-arm -e -c test_namestore_api.conf
-@@ -54,7 +54,7 @@ curl_delete () {
- resp=$(curl -v -X "DELETE" "$1" 2>&1)
- cache="$(echo $resp | grep "$2")"
- #echo $cache
-- if [ "" == "$cache" ]
-+ if [ "" = "$cache" ]
- then
- echo "Error in delete response: $resp, expected $2"
- gnunet-arm -e -c test_namestore_api.conf