Received: by mail.netbsd.org (Postfix, from userid 605) id C372984D75; Tue, 22 Sep 2020 10:58:12 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 4A32384D3A for ; Tue, 22 Sep 2020 10:58:12 +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 XG9WC6Zc0C-N for ; Tue, 22 Sep 2020 10:58:11 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id BF9EC84D33 for ; Tue, 22 Sep 2020 10:58:11 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id B82F8FB28; Tue, 22 Sep 2020 10:58:11 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_160077229145450" MIME-Version: 1.0 Date: Tue, 22 Sep 2020 10:58:11 +0000 From: "Makoto Fujiwara" Subject: CVS commit: pkgsrc/devel/R-devtools To: pkgsrc-changes@NetBSD.org Reply-To: mef@netbsd.org X-Mailer: log_accum Message-Id: <20200922105811.B82F8FB28@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. --_----------=_160077229145450 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: mef Date: Tue Sep 22 10:58:11 UTC 2020 Modified Files: pkgsrc/devel/R-devtools: Makefile Log Message: (devel/R-devtools) Make it alive again, tks jperkin@ and wiz@ To generate a diff of this commit: cvs rdiff -u -r1.6 -r1.7 pkgsrc/devel/R-devtools/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_160077229145450 Content-Disposition: inline Content-Length: 2133 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/R-devtools/Makefile diff -u pkgsrc/devel/R-devtools/Makefile:1.6 pkgsrc/devel/R-devtools/Makefile:1.7 --- pkgsrc/devel/R-devtools/Makefile:1.6 Mon Sep 21 23:14:37 2020 +++ pkgsrc/devel/R-devtools/Makefile Tue Sep 22 10:58:11 2020 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.6 2020/09/21 23:14:37 wiz Exp $ +# $NetBSD: Makefile,v 1.7 2020/09/22 10:58:11 mef Exp $ R_PKGNAME= devtools R_PKGVER= 2.3.1 @@ -8,8 +8,6 @@ MAINTAINER= pkgsrc-users@NetBSD.org COMMENT= Tools to make developing R packages easier LICENSE= gnu-gpl-v2 OR gnu-gpl-v3 -BROKEN= "R-pkgbuild>=1.1.0 and R-rversions>=2.0.2 not available in pkgsrc right now." - DEPENDS+= R-callr>=3.4.4:../../devel/R-callr DEPENDS+= R-cli>=2.0.2:../../devel/R-cli DEPENDS+= R-covr>=3.5.1:../../devel/R-covr @@ -33,11 +31,11 @@ DEPENDS+= R-httr>=1.4.2:../../www/R-httr #DEPENDS+= R-rversions>=2.0.2:../../devel/R-rversions # Packages suggested but not available: -# 'BiocManager', 'foghorn', 'gmailr', 'lintr', 'mockery', 'pkgdown', -# 'rhub', 'spelling' +# 'BiocManager', 'foghorn', 'gmailr', 'pkgdown', 'rhub' TEST_DEPENDS+= R-bitops-[0-9]*:../../math/R-bitops TEST_DEPENDS+= R-covr-[0-9]*:../../devel/R-covr +TEST_DEPENDS+= R-curl>=4.3:../../www/R-curl TEST_DEPENDS+= R-knitr-[0-9]*:../../print/R-knitr TEST_DEPENDS+= R-lintr>=2.0.1:../../devel/R-lintr TEST_DEPENDS+= R-mockery-[0-9]*:../../devel/R-mockery @@ -46,17 +44,8 @@ TEST_DEPENDS+= R-rmarkdown>=2.3:../../te TEST_DEPENDS+= R-spelling>=2.1:../../textproc/R-spelling TEST_DEPENDS+= R-testthat>=2.3.2:../../devel/R-testthat TEST_DEPENDS+= R-usethis-[0-9]*:../../devel/R-usethis -TEST_DEPENDS+= R-curl>=4.3:../../www/R-curl -TEST_DEPENDS+= R-mockery-[0-9]*:../../devel/R-mockery -TEST_DEPENDS+= R-spelling-[0-9]*:../../textproc/R-spelling USE_LANGUAGES= # none .include "../../math/R/Makefile.extension" .include "../../mk/bsd.pkg.mk" - -# Packages suggested but not available: -# 'BiocManager', 'foghorn', 'gmailr', 'pkgdown', 'rhub' - -# Packages required and available but unsuitable versions: -# 'DT', 'jsonlite', 'rstudioapi', 'curl', 'rmarkdown' --_----------=_160077229145450--