Received: by mail.netbsd.org (Postfix, from userid 605) id 25D9884D8C; Sat, 14 Dec 2019 12:35:22 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id A364C84D82 for ; Sat, 14 Dec 2019 12:35:21 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id aIoR0_5fBJts for ; Sat, 14 Dec 2019 12:35:21 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 131C284CF1 for ; Sat, 14 Dec 2019 12:35:21 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 1062DFA97; Sat, 14 Dec 2019 12:35:21 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1576326921274150" MIME-Version: 1.0 Date: Sat, 14 Dec 2019 12:35:21 +0000 From: "ng0" Subject: CVS commit: pkgsrc/www/gnurl To: pkgsrc-changes@NetBSD.org Reply-To: ng0@netbsd.org X-Mailer: log_accum Message-Id: <20191214123521.1062DFA97@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1576326921274150 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: ng0 Date: Sat Dec 14 12:35:20 UTC 2019 Modified Files: pkgsrc/www/gnurl: Makefile options.mk Log Message: www/gnurl: perl is only required for tests. --without-gssapi seems to be no longer required, gss isn't picked up for base or pkgsrc. To generate a diff of this commit: cvs rdiff -u -r1.7 -r1.8 pkgsrc/www/gnurl/Makefile cvs rdiff -u -r1.1 -r1.2 pkgsrc/www/gnurl/options.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1576326921274150 Content-Disposition: inline Content-Length: 2331 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/www/gnurl/Makefile diff -u pkgsrc/www/gnurl/Makefile:1.7 pkgsrc/www/gnurl/Makefile:1.8 --- pkgsrc/www/gnurl/Makefile:1.7 Mon Nov 18 18:34:10 2019 +++ pkgsrc/www/gnurl/Makefile Sat Dec 14 12:35:20 2019 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.7 2019/11/18 18:34:10 ng0 Exp $ +# $NetBSD: Makefile,v 1.8 2019/12/14 12:35:20 ng0 Exp $ DISTNAME= gnurl-7.67.0 CATEGORIES= www @@ -13,7 +13,7 @@ LICENSE= mit BUILD_DEFS+= IPV6_READY -USE_TOOLS+= perl pkg-config +USE_TOOLS+= pkg-config USE_LIBTOOL= yes GNU_CONFIGURE= yes # make install depends on it PKGCONFIG_OVERRIDE= libgnurl.pc.in @@ -30,6 +30,7 @@ CONFIGURE_ARGS+= --without-winidn CONFIGURE_ARGS+= --without-librtmp CONFIGURE_ARGS+= --without-nghttp2 CONFIGURE_ARGS+= --without-nss +# \todo: is cyassl deprecated? CONFIGURE_ARGS+= --without-cyassl CONFIGURE_ARGS+= --without-ssl CONFIGURE_ARGS+= --without-winssl @@ -51,14 +52,15 @@ CONFIGURE_ARGS+= --disable-smb CONFIGURE_ARGS+= --disable-ntlm-wb CONFIGURE_ARGS+= --with-gnutls CONFIGURE_ARGS+= --with-libidn2 +# \todo: is with libz deprecated? CONFIGURE_ARGS+= --with-libz=${BUILDLINK_PREFIX.zlib} # Fallback to gnutls preferred CA certificates CONFIGURE_ARGS+= --without-ca-bundle CONFIGURE_ARGS+= --without-ca-path CONFIGURE_ARGS+= --with-ca-fallback -# Do not pick up GSS, should be fixed in upstream. +# Do not pick up GSS. # https://bugs.gnunet.org/view.php?id=5610 -CONFIGURE_ARGS+= --without-gssapi +# CONFIGURE_ARGS+= --without-gssapi CONFIGURE_ARGS+= --disable-valgrind # We do not want HTTP3 support yet, see release announcement CONFIGURE_ARGS+= --without-ngtcp2 Index: pkgsrc/www/gnurl/options.mk diff -u pkgsrc/www/gnurl/options.mk:1.1 pkgsrc/www/gnurl/options.mk:1.2 --- pkgsrc/www/gnurl/options.mk:1.1 Fri Feb 1 15:21:29 2019 +++ pkgsrc/www/gnurl/options.mk Sat Dec 14 12:35:20 2019 @@ -1,7 +1,7 @@ -# $NetBSD: options.mk,v 1.1 2019/02/01 15:21:29 gdt Exp $ +# $NetBSD: options.mk,v 1.2 2019/12/14 12:35:20 ng0 Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.gnurl -PKG_SUPPORTED_OPTIONS= inet6 +PKG_SUPPORTED_OPTIONS= inet6 tests PKG_SUGGESTED_OPTIONS= inet6 .include "../../mk/bsd.options.mk" @@ -11,3 +11,7 @@ CONFIGURE_ARGS+= --enable-ipv6 .else CONFIGURE_ARGS+= --disable-ipv6 .endif + +.if !empty(PKG_OPTIONS:Mtests) +USE_TOOLS+= perl +.endif --_----------=_1576326921274150--