Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.netbsd.org", Issuer "Postmaster NetBSD.org" (verified OK)) by mollari.NetBSD.org (Postfix) with ESMTPS id EFB6F7A1BE for ; Wed, 31 May 2017 21:30:16 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 66BC684DE0; Wed, 31 May 2017 21:30:16 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id E96FF84DDE for ; Wed, 31 May 2017 21:30:15 +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 6-zVDrN2o7Yd for ; Wed, 31 May 2017 21:30:15 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 46D1884D75 for ; Wed, 31 May 2017 21:30:15 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 41CB9FBEE; Wed, 31 May 2017 21:30:15 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1496266215246010" MIME-Version: 1.0 Date: Wed, 31 May 2017 21:30:15 +0000 From: "Jean-Yves Migeon" Subject: CVS commit: pkgsrc/security/pinentry-mac To: pkgsrc-changes@NetBSD.org Reply-To: jym@netbsd.org X-Mailer: log_accum Message-Id: <20170531213015.41CB9FBEE@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. --_----------=_1496266215246010 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: jym Date: Wed May 31 21:30:15 UTC 2017 Modified Files: pkgsrc/security/pinentry-mac: Makefile pkgsrc/security/pinentry-mac/files: pinentry-mac.sh Log Message: Fix exec command by adding the missing "$@" to pass down arguments. Bump rev. Caught by wizd(8), thanks! To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 pkgsrc/security/pinentry-mac/Makefile cvs rdiff -u -r1.2 -r1.3 pkgsrc/security/pinentry-mac/files/pinentry-mac.sh Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1496266215246010 Content-Disposition: inline Content-Length: 1190 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/security/pinentry-mac/Makefile diff -u pkgsrc/security/pinentry-mac/Makefile:1.1 pkgsrc/security/pinentry-mac/Makefile:1.2 --- pkgsrc/security/pinentry-mac/Makefile:1.1 Wed May 31 12:19:16 2017 +++ pkgsrc/security/pinentry-mac/Makefile Wed May 31 21:30:15 2017 @@ -1,10 +1,11 @@ -# $NetBSD: Makefile,v 1.1 2017/05/31 12:19:16 jym Exp $ +# $NetBSD: Makefile,v 1.2 2017/05/31 21:30:15 jym Exp $ DISTNAME= pinentry-mac-${PINENTRY_VERSION} MASTER_SITES= ${MASTER_SITE_GITHUB:=GPGTools/} PINENTRY_VERSION=0.9.4 GITHUB_TAG= v${PKGVERSION_NOREV} EXTRACT_SUFX= .zip +PKGREVISION= 1 MAINTAINER= pkgsrc-users@NetBSD.org HOMEPAGE= https://github.com/GPGTools/pinentry-mac/ Index: pkgsrc/security/pinentry-mac/files/pinentry-mac.sh diff -u pkgsrc/security/pinentry-mac/files/pinentry-mac.sh:1.2 pkgsrc/security/pinentry-mac/files/pinentry-mac.sh:1.3 --- pkgsrc/security/pinentry-mac/files/pinentry-mac.sh:1.2 Wed May 31 17:10:01 2017 +++ pkgsrc/security/pinentry-mac/files/pinentry-mac.sh Wed May 31 21:30:15 2017 @@ -1,3 +1,3 @@ #!/bin/sh -exec '@PINENTRY_APP_DIR@/Contents/MacOS/pinentry-mac' +exec '@PINENTRY_APP_DIR@/Contents/MacOS/pinentry-mac' "$@" --_----------=_1496266215246010--