Received: by mail.netbsd.org (Postfix, from userid 605) id 250EB84D6C; Wed, 14 Aug 2019 22:03:17 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id A1A7E84D67 for ; Wed, 14 Aug 2019 22:03:16 +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 cG2PSdRpjDsy for ; Wed, 14 Aug 2019 22:03:16 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 0276484D58 for ; Wed, 14 Aug 2019 22:03:16 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id EF28FFBF4; Wed, 14 Aug 2019 22:03:15 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1565820195159040" MIME-Version: 1.0 Date: Wed, 14 Aug 2019 22:03:15 +0000 From: "Brook Milligan" Subject: CVS commit: pkgsrc/graphics/R-ggtern To: pkgsrc-changes@NetBSD.org Reply-To: brook@netbsd.org X-Mailer: log_accum Message-Id: <20190814220315.EF28FFBF4@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. --_----------=_1565820195159040 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: brook Date: Wed Aug 14 22:03:15 UTC 2019 Modified Files: pkgsrc/graphics/R-ggtern: Makefile Log Message: R-ggtern: fix an incorrect dependency. The missing dependency added in the previous commit was wrong, so fix it. To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 pkgsrc/graphics/R-ggtern/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1565820195159040 Content-Disposition: inline Content-Length: 896 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/graphics/R-ggtern/Makefile diff -u pkgsrc/graphics/R-ggtern/Makefile:1.2 pkgsrc/graphics/R-ggtern/Makefile:1.3 --- pkgsrc/graphics/R-ggtern/Makefile:1.2 Sun Aug 11 15:39:28 2019 +++ pkgsrc/graphics/R-ggtern/Makefile Wed Aug 14 22:03:15 2019 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.2 2019/08/11 15:39:28 brook Exp $ +# $NetBSD: Makefile,v 1.3 2019/08/14 22:03:15 brook Exp $ R_PKGNAME= ggtern R_PKGVER= 3.1.0 @@ -9,8 +9,8 @@ COMMENT= Extension to 'ggplot2', for the LICENSE= gnu-gpl-v2 DEPENDS+= R-proto>=1.0.0:../../devel/R-proto -DEPENDS+= R-ggExtra>=0.8:../../graphics/R-ggExtra DEPENDS+= R-ggplot2>=3.1.0:../../graphics/R-ggplot2 +DEPENDS+= R-gridExtra>=2.3:../../graphics/R-gridExtra DEPENDS+= R-latex2exp>=0.4:../../graphics/R-latex2exp DEPENDS+= R-scales>=0.3.0:../../graphics/R-scales DEPENDS+= R-compositions>=1.40.2:../../math/R-compositions --_----------=_1565820195159040--