Received: by mail.netbsd.org (Postfix, from userid 605) id 2974884D41; Mon, 4 Jun 2018 07:44:37 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 5465E84D2D for ; Mon, 4 Jun 2018 07:44:36 +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 9zjUESBUSHCR for ; Mon, 4 Jun 2018 07:44:35 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 89D9084CFC for ; Mon, 4 Jun 2018 07:44:35 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 7E0D7FBEC; Mon, 4 Jun 2018 07:44:35 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1528098275146000" MIME-Version: 1.0 Date: Mon, 4 Jun 2018 07:44:35 +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: <20180604074435.7E0D7FBEC@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. --_----------=_1528098275146000 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: leot Date: Mon Jun 4 07:44:35 UTC 2018 Modified Files: pkgsrc/security/gpgme: options.mk Log Message: gpgme: Improve style and comment in options.mk (NFCI) - Move the CONFIGURE_ARGS in the `gnupg1' logic after DEPENDS to make the two branches symmetric - Adjust the comment, the tests needs gpgsm, not gpg-agent Suggested via a private email by , thanks! To generate a diff of this commit: cvs rdiff -u -r1.10 -r1.11 pkgsrc/security/gpgme/options.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1528098275146000 Content-Disposition: inline Content-Length: 787 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.10 pkgsrc/security/gpgme/options.mk:1.11 --- pkgsrc/security/gpgme/options.mk:1.10 Sun Jun 3 21:18:34 2018 +++ pkgsrc/security/gpgme/options.mk Mon Jun 4 07:44:35 2018 @@ -1,4 +1,4 @@ -# $NetBSD: options.mk,v 1.10 2018/06/03 21:18:34 leot Exp $ +# $NetBSD: options.mk,v 1.11 2018/06/04 07:44:35 leot Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.gpgme PKG_OPTIONS_REQUIRED_GROUPS= gnupg @@ -13,6 +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 +CONFIGURE_ARGS+= --disable-gpgsm-test # XXX: needs gpgsm .endif --_----------=_1528098275146000--