pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc R-roxygen2: initial commit
details: https://anonhg.NetBSD.org/pkgsrc/rev/83fc69b54fa3
branches: trunk
changeset: 399466:83fc69b54fa3
user: brook <brook%pkgsrc.org@localhost>
date: Fri Aug 09 19:12:14 2019 +0000
description:
R-roxygen2: initial commit
Generate your Rd documentation, 'NAMESPACE' file, and collation field
using specially formatted comments. Writing documentation in-line with
code makes it easier to keep your documentation up-to-date as your
requirements change. 'Roxygen2' is inspired by the 'Doxygen' system
for C++.
diffstat:
devel/Makefile | 3 ++-
devel/R-roxygen2/DESCR | 5 +++++
devel/R-roxygen2/Makefile | 25 +++++++++++++++++++++++++
devel/R-roxygen2/distinfo | 6 ++++++
doc/CHANGES-2019 | 3 ++-
5 files changed, 40 insertions(+), 2 deletions(-)
diffs (79 lines):
diff -r e7e9c6ec2e81 -r 83fc69b54fa3 devel/Makefile
--- a/devel/Makefile Fri Aug 09 19:11:22 2019 +0000
+++ b/devel/Makefile Fri Aug 09 19:12:14 2019 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.2894 2019/08/09 19:11:22 brook Exp $
+# $NetBSD: Makefile,v 1.2895 2019/08/09 19:12:14 brook Exp $
#
COMMENT= Development utilities
@@ -50,6 +50,7 @@
SUBDIR+= R-repr
SUBDIR+= R-rio
SUBDIR+= R-rlang
+SUBDIR+= R-roxygen2
SUBDIR+= R-rprojroot
SUBDIR+= R-sessioninfo
SUBDIR+= R-tcltk2
diff -r e7e9c6ec2e81 -r 83fc69b54fa3 devel/R-roxygen2/DESCR
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/R-roxygen2/DESCR Fri Aug 09 19:12:14 2019 +0000
@@ -0,0 +1,5 @@
+Generate your Rd documentation, 'NAMESPACE' file, and collation field
+using specially formatted comments. Writing documentation in-line with
+code makes it easier to keep your documentation up-to-date as your
+requirements change. 'Roxygen2' is inspired by the 'Doxygen' system
+for C++.
diff -r e7e9c6ec2e81 -r 83fc69b54fa3 devel/R-roxygen2/Makefile
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/R-roxygen2/Makefile Fri Aug 09 19:12:14 2019 +0000
@@ -0,0 +1,25 @@
+# $NetBSD: Makefile,v 1.1 2019/08/09 19:12:14 brook Exp $
+
+R_PKGNAME= roxygen2
+R_PKGVER= 6.1.1
+CATEGORIES= devel
+
+MAINTAINER= pkgsrc-users%NetBSD.org@localhost
+COMMENT= In-line documentation for R
+LICENSE= gnu-gpl-v2 OR gnu-gpl-v3
+
+DEPENDS+= R-desc>=1.2.0:../../devel/R-desc
+DEPENDS+= R-pkgload>=1.0.2:../../devel/R-pkgload
+DEPENDS+= R-purrr>=0.3.2:../../devel/R-purrr
+DEPENDS+= R-digest>=0.6.20:../../security/R-digest
+DEPENDS+= R-brew>=1.0.6:../../textproc/R-brew
+DEPENDS+= R-commonmark>=1.7:../../textproc/R-commonmark
+DEPENDS+= R-stringi>=1.4.3:../../textproc/R-stringi
+DEPENDS+= R-stringr>=1.0.0:../../textproc/R-stringr
+DEPENDS+= R-xml2>=1.2.2:../../textproc/R-xml2
+
+USE_LANGUAGES= c c++
+
+.include "../../math/R/Makefile.extension"
+.include "../../devel/R-Rcpp/buildlink3.mk"
+.include "../../mk/bsd.pkg.mk"
diff -r e7e9c6ec2e81 -r 83fc69b54fa3 devel/R-roxygen2/distinfo
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/R-roxygen2/distinfo Fri Aug 09 19:12:14 2019 +0000
@@ -0,0 +1,6 @@
+$NetBSD: distinfo,v 1.1 2019/08/09 19:12:14 brook Exp $
+
+SHA1 (R/roxygen2_6.1.1.tar.gz) = 61b3a143e61ff3c565871e2a3046b46bff032060
+RMD160 (R/roxygen2_6.1.1.tar.gz) = bc423d472fb646b995f4304aa9e1dcb09405b1b1
+SHA512 (R/roxygen2_6.1.1.tar.gz) = 7643237182bf56853e99942f4f1db1b104f9401d4f3340a91be273f5ae50b8f21767e894e69f3a48bd2133afaa43385366db880147b3aa5b4d8feac75b2cefd5
+Size (R/roxygen2_6.1.1.tar.gz) = 178346 bytes
diff -r e7e9c6ec2e81 -r 83fc69b54fa3 doc/CHANGES-2019
--- a/doc/CHANGES-2019 Fri Aug 09 19:11:22 2019 +0000
+++ b/doc/CHANGES-2019 Fri Aug 09 19:12:14 2019 +0000
@@ -1,4 +1,4 @@
-$NetBSD: CHANGES-2019,v 1.3368 2019/08/09 19:11:22 brook Exp $
+$NetBSD: CHANGES-2019,v 1.3369 2019/08/09 19:12:14 brook Exp $
Changes to the packages collection and infrastructure in 2019:
@@ -5491,3 +5491,4 @@
Added devel/R-usethis version 1.5.1 [brook 2019-08-09]
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]
Home |
Main Index |
Thread Index |
Old Index