Received: by mail.netbsd.org (Postfix, from userid 605) id 2CE0184F90; Sun, 3 Jun 2018 21:18:36 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 969E384EA1 for ; Sun, 3 Jun 2018 21:18:35 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id R2duD6lp3F1h for ; Sun, 3 Jun 2018 21:18:35 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id D80BE84D2D for ; Sun, 3 Jun 2018 21:18:34 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id CF902FBEC; Sun, 3 Jun 2018 21:18:34 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1528060714269220" MIME-Version: 1.0 Date: Sun, 3 Jun 2018 21:18:34 +0000 From: "Leonardo Taccari" Subject: CVS commit: pkgsrc/security/gpgme To: pkgsrc-changes@NetBSD.org Reply-To: leot@netbsd.org X-Mailer: log_accum Message-Id: <20180603211834.CF902FBEC@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. --_----------=_1528060714269220 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: leot Date: Sun Jun 3 21:18:34 UTC 2018 Modified Files: pkgsrc/security/gpgme: options.mk Log Message: gpgme: Disable tests that needs gpg-agent when built with gnupg1 option When building with the gnupg1 option some tests force the need of gpg-agent and fails as noticed by via PR pkg/53160. Adjust options.mk accordingly disabling gpgsm tests for the gnupg1 option. Should fix PR pkg/53160 reported by . To generate a diff of this commit: cvs rdiff -u -r1.9 -r1.10 pkgsrc/security/gpgme/options.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1528060714269220 Content-Disposition: inline Content-Length: 727 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/security/gpgme/options.mk diff -u pkgsrc/security/gpgme/options.mk:1.9 pkgsrc/security/gpgme/options.mk:1.10 --- pkgsrc/security/gpgme/options.mk:1.9 Thu Dec 21 13:30:40 2017 +++ pkgsrc/security/gpgme/options.mk Sun Jun 3 21:18:34 2018 @@ -1,4 +1,4 @@ -# $NetBSD: options.mk,v 1.9 2017/12/21 13:30:40 ryoon Exp $ +# $NetBSD: options.mk,v 1.10 2018/06/03 21:18:34 leot Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.gpgme PKG_OPTIONS_REQUIRED_GROUPS= gnupg @@ -13,5 +13,6 @@ REPLACE_SH+= tests/gpg/pinentry GPG_DEFAULT= ${LOCALBASE}/bin/gpg2 MAKE_FLAGS+= GPG=${GPG_DEFAULT} .else +CONFIGURE_ARGS+= --disable-gpgsm-test # XXX: needs gpg-agent DEPENDS+= gnupg>=1.4.2:../../security/gnupg .endif --_----------=_1528060714269220--