pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc Move math/R-knitr to print/R-knitr.



details:   https://anonhg.NetBSD.org/pkgsrc/rev/f7d9df254d5c
branches:  trunk
changeset: 639642:f7d9df254d5c
user:      brook <brook%pkgsrc.org@localhost>
date:      Sat Sep 20 04:11:43 2014 +0000

description:
Move math/R-knitr to print/R-knitr.

Note: this commit is part of reorganizing some of the recently
imported R packages, which are being reimported into more appropriate
categories (and removed from math) as a result of a recent discussion
on tech-pkg and privately with wiz@.  See the thread starting with:

  http://mail-index.netbsd.org/tech-pkg/2014/09/05/msg013558.html

diffstat:

 math/Makefile         |   3 +--
 math/R-knitr/DESCR    |  23 -----------------------
 math/R-knitr/Makefile |  30 ------------------------------
 math/R-knitr/distinfo |   5 -----
 print/Makefile        |   3 ++-
 5 files changed, 3 insertions(+), 61 deletions(-)

diffs (104 lines):

diff -r a9b14d4f2c00 -r f7d9df254d5c math/Makefile
--- a/math/Makefile     Sat Sep 20 04:03:40 2014 +0000
+++ b/math/Makefile     Sat Sep 20 04:11:43 2014 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.295 2014/09/20 03:53:55 brook Exp $
+# $NetBSD: Makefile,v 1.296 2014/09/20 04:11:43 brook Exp $
 
 COMMENT=       Mathematics
 
@@ -37,7 +37,6 @@
 SUBDIR+=       R-httpRequest
 SUBDIR+=       R-hwde
 SUBDIR+=       R-intervals
-SUBDIR+=       R-knitr
 SUBDIR+=       R-lmm
 SUBDIR+=       R-mapproj
 SUBDIR+=       R-maps
diff -r a9b14d4f2c00 -r f7d9df254d5c math/R-knitr/DESCR
--- a/math/R-knitr/DESCR        Sat Sep 20 04:03:40 2014 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,23 +0,0 @@
-This package provides a general-purpose tool for dynamic report
-generation in R, which can be used to deal with any type of (plain
-text) files, including Sweave, HTML, Markdown, reStructuredText,
-AsciiDoc, and Textile. R code is evaluated as if it were copied and
-pasted in an R terminal thanks to the evaluate package (e.g., we do
-not need to explicitly print() plots from ggplot2 or lattice). R code
-can be reformatted by the formatR package so that long lines are
-automatically wrapped, with indent and spaces added, and comments
-preserved. A simple caching mechanism is provided to cache results
-from computations for the first time and the computations will be
-skipped the next time. Almost all common graphics devices, including
-those in base R and add-on packages like Cairo, cairoDevice and
-tikzDevice, are built-in with this package and it is straightforward
-to switch between devices without writing any special functions. The
-width and height as well as alignment of plots in the output document
-can be specified in chunk options (the size of plots for graphics
-devices is also supported). Multiple plots can be recorded in a single
-code chunk, and it is also allowed to rearrange plots to the end of a
-chunk or just keep the last plot. Warnings, messages and errors are
-written in the output document by default (can be turned off). The
-language in code chunks is not restricted to R (there is simple
-support to Python and shell scripts, etc). Many features are borrowed
-from or inspired by Sweave, cacheSweave, pgfSweave, brew and decumar.
diff -r a9b14d4f2c00 -r f7d9df254d5c math/R-knitr/Makefile
--- a/math/R-knitr/Makefile     Sat Sep 20 04:03:40 2014 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,30 +0,0 @@
-# $NetBSD: Makefile,v 1.6 2014/09/20 03:53:55 brook Exp $
-
-CATEGORIES=    math
-MASTER_SITES=  ${MASTER_SITE_R_CRAN:=contrib/}
-
-MAINTAINER=    pkgsrc-users%NetBSD.org@localhost
-HOMEPAGE=      ${R_HOMEPAGE_BASE}/knitr/
-COMMENT=       A general-purpose package for dynamic report generation in R
-# TODO: LICENSE=       GPL
-
-R_PKGNAME=     knitr
-R_PKGVER=      1.6
-
-DEPENDS+=      R-evaluate>=0.5.3:../../devel/R-evaluate
-DEPENDS+=      R-digest>=0.6.4:../../security/R-digest
-DEPENDS+=      R-formatR>=0.10:../../textproc/R-formatR
-DEPENDS+=      R-highr>=0.3:../../textproc/R-highr
-DEPENDS+=      R-markdown>=0.6.5:../../textproc/R-markdown
-DEPENDS+=      R-stringr>=0.6:../../textproc/R-stringr
-
-REPLACE_RSCRIPT+=      inst/bin/knit
-REPLACE_RSCRIPT+=      inst/examples/knit-all.R
-
-REPLACE_INTERPRETER+=  Rscript
-REPLACE.Rscript.old=   .*Rscript
-REPLACE.Rscript.new=   ${PREFIX}/bin/Rscript
-REPLACE_FILES.Rscript= ${REPLACE_RSCRIPT}
-
-.include "../../math/R/Makefile.extension"
-.include "../../mk/bsd.pkg.mk"
diff -r a9b14d4f2c00 -r f7d9df254d5c math/R-knitr/distinfo
--- a/math/R-knitr/distinfo     Sat Sep 20 04:03:40 2014 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,5 +0,0 @@
-$NetBSD: distinfo,v 1.1 2014/09/03 21:33:47 brook Exp $
-
-SHA1 (R/knitr_1.6.tar.gz) = 1d8a04a9e0526a31ac59fc81d34ceb9b92f9eee4
-RMD160 (R/knitr_1.6.tar.gz) = 7ca0e2c42776a5472e822bacd2b82fa171ffce87
-Size (R/knitr_1.6.tar.gz) = 990556 bytes
diff -r a9b14d4f2c00 -r f7d9df254d5c print/Makefile
--- a/print/Makefile    Sat Sep 20 04:03:40 2014 +0000
+++ b/print/Makefile    Sat Sep 20 04:11:43 2014 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.591 2014/08/07 21:25:22 wiz Exp $
+# $NetBSD: Makefile,v 1.592 2014/09/20 04:11:43 brook Exp $
 #
 
 COMMENT=       Desktop publishing
@@ -6,6 +6,7 @@
 SUBDIR+=       LPRng
 SUBDIR+=       LPRng-core
 SUBDIR+=       LPRng-doc
+SUBDIR+=       R-knitr
 SUBDIR+=       a2ps
 SUBDIR+=       abc2ps
 SUBDIR+=       abcm2ps



Home | Main Index | Thread Index | Old Index