pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc R-devtools: initial commit
details: https://anonhg.NetBSD.org/pkgsrc/rev/9ed3ffbe4c71
branches: trunk
changeset: 399467:9ed3ffbe4c71
user: brook <brook%pkgsrc.org@localhost>
date: Fri Aug 09 19:13:05 2019 +0000
description:
R-devtools: initial commit
Collection of package development tools.
diffstat:
devel/Makefile | 3 ++-
devel/R-devtools/DESCR | 1 +
devel/R-devtools/Makefile | 32 ++++++++++++++++++++++++++++++++
devel/R-devtools/distinfo | 6 ++++++
doc/CHANGES-2019 | 3 ++-
5 files changed, 43 insertions(+), 2 deletions(-)
diffs (82 lines):
diff -r 83fc69b54fa3 -r 9ed3ffbe4c71 devel/Makefile
--- a/devel/Makefile Fri Aug 09 19:12:14 2019 +0000
+++ b/devel/Makefile Fri Aug 09 19:13:05 2019 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.2895 2019/08/09 19:12:14 brook Exp $
+# $NetBSD: Makefile,v 1.2896 2019/08/09 19:13:05 brook Exp $
#
COMMENT= Development utilities
@@ -27,6 +27,7 @@
SUBDIR+= R-clipr
SUBDIR+= R-crayon
SUBDIR+= R-desc
+SUBDIR+= R-devtools
SUBDIR+= R-evaluate
SUBDIR+= R-fansi
SUBDIR+= R-fs
diff -r 83fc69b54fa3 -r 9ed3ffbe4c71 devel/R-devtools/DESCR
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/R-devtools/DESCR Fri Aug 09 19:13:05 2019 +0000
@@ -0,0 +1,1 @@
+Collection of package development tools.
diff -r 83fc69b54fa3 -r 9ed3ffbe4c71 devel/R-devtools/Makefile
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/R-devtools/Makefile Fri Aug 09 19:13:05 2019 +0000
@@ -0,0 +1,32 @@
+# $NetBSD: Makefile,v 1.1 2019/08/09 19:13:05 brook Exp $
+
+R_PKGNAME= devtools
+R_PKGVER= 2.1.0
+CATEGORIES= devel
+
+MAINTAINER= pkgsrc-users%NetBSD.org@localhost
+COMMENT= Tools to make developing R packages easier
+LICENSE= gnu-gpl-v2 OR gnu-gpl-v3
+
+DEPENDS+= R-callr>=3.3.1:../../devel/R-callr
+DEPENDS+= R-cli>=1.1.0:../../devel/R-cli
+DEPENDS+= R-git2r>=0.23.0:../../devel/R-git2r
+DEPENDS+= R-memoise>=1.0.0:../../devel/R-memoise
+DEPENDS+= R-pkgbuild>=1.0.3:../../devel/R-pkgbuild
+DEPENDS+= R-pkgload>=1.0.2:../../devel/R-pkgload
+DEPENDS+= R-rcmdcheck>=1.3.3:../../devel/R-rcmdcheck
+DEPENDS+= R-remotes>=2.1.0:../../devel/R-remotes
+DEPENDS+= R-roxygen2>=6.1.1:../../devel/R-roxygen2
+DEPENDS+= R-sessioninfo>=1.1.1:../../devel/R-sessioninfo
+DEPENDS+= R-testthat>=2.1.1:../../devel/R-testthat
+DEPENDS+= R-usethis>=1.5.0:../../devel/R-usethis
+DEPENDS+= R-withr>=2.1.2:../../devel/R-withr
+DEPENDS+= R-rstudioapi>=0.7:../../math/R-rstudioapi
+DEPENDS+= R-digest>=0.6.20:../../security/R-digest
+DEPENDS+= R-jsonlite>=1.6:../../textproc/R-jsonlite
+DEPENDS+= R-httr>=0.4:../../www/R-httr
+
+USE_LANGUAGES= # none
+
+.include "../../math/R/Makefile.extension"
+.include "../../mk/bsd.pkg.mk"
diff -r 83fc69b54fa3 -r 9ed3ffbe4c71 devel/R-devtools/distinfo
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/R-devtools/distinfo Fri Aug 09 19:13:05 2019 +0000
@@ -0,0 +1,6 @@
+$NetBSD: distinfo,v 1.1 2019/08/09 19:13:05 brook Exp $
+
+SHA1 (R/devtools_2.1.0.tar.gz) = 46ba1650e550325c6b7ebbce49f4c7d81849f868
+RMD160 (R/devtools_2.1.0.tar.gz) = 22e144a6281bcf758e310e79a58756de3e7bd486
+SHA512 (R/devtools_2.1.0.tar.gz) = 0e562f954a0840b0b049f7acce6854f09b4501233f4e23f5c43c6991c35040fa62337154596fde2ad4f813225d23db822096ea77db7cb37af8a82f3fca46d30b
+Size (R/devtools_2.1.0.tar.gz) = 378899 bytes
diff -r 83fc69b54fa3 -r 9ed3ffbe4c71 doc/CHANGES-2019
--- a/doc/CHANGES-2019 Fri Aug 09 19:12:14 2019 +0000
+++ b/doc/CHANGES-2019 Fri Aug 09 19:13:05 2019 +0000
@@ -1,4 +1,4 @@
-$NetBSD: CHANGES-2019,v 1.3369 2019/08/09 19:12:14 brook Exp $
+$NetBSD: CHANGES-2019,v 1.3370 2019/08/09 19:13:05 brook Exp $
Changes to the packages collection and infrastructure in 2019:
@@ -5492,3 +5492,4 @@
Added devel/R-rcmdcheck version 1.3.3 [brook 2019-08-09]
Added devel/R-pkgload version 1.0.2 [brook 2019-08-09]
Added devel/R-roxygen2 version 6.1.1 [brook 2019-08-09]
+ Added devel/R-devtools version 2.1.0 [brook 2019-08-09]
Home |
Main Index |
Thread Index |
Old Index