pkgsrc/devel/R-Rcpp/Makefile
mef b17ac42763 (devel/R-Rcpp) Updated 1.0.5 to 1.0.6
(pkgsrc)
  - Add tex-ec, tex-pdflscape for TEST_DEPENDS.
   Check the permision of /var/lib/texmf/fonts/pk/ if make test fails with
   !pdfTeX error: pdflatex (file tcrm1000): Font tcrm1000 at 600 not found

(upstream)
Info by w3m -dump https://cran.r-project.org/web/packages/Rcpp/news.html | cat -
Changes in Rcpp patch release version 1.0.6 (2021-01-14)

  - Changes in Rcpp API:
      * Replace remaining few uses of EXTPTR_PTR with R_ExternalPtrAddr (Kevin
        in #1098 fixing #1097).
      * Add push_back and push_front for DataFrame (Walter Somerville in #1099
        fixing #1094).
      * Remove a misleading-to-wrong comment (Mattias Ellert in #1109 cleaning
        up after #1049).
      * Address a sanitizer report by initializing two private bool variables
        (Benjamin Christoffersen in #1113).
      * External pointer finalizer toggle default values were corrected to true
        (Dirk in #1115).
  - Changes in Rcpp Documentation:
      * Several URLs were updated to https and/or new addresses (Dirk).
  - Changes in Rcpp Deployment:
      * Added GitHub Actions CI using the same container-based setup used
        previously, and also carried code coverage over (Dirk in #1128).
  - Changes in Rcpp support functions:
      * Rcpp.package.skeleton() avoids warning from R. (Dirk)
2021-02-06 14:41:29 +00:00

48 lines
1.6 KiB
Makefile

# $NetBSD: Makefile,v 1.22 2021/02/06 14:41:29 mef Exp $
R_PKGNAME= Rcpp
R_PKGVER= 1.0.6
CATEGORIES= devel
MAINTAINER= pkgsrc-users@NetBSD.org
COMMENT= Seamless R and C++ integration
LICENSE= gnu-gpl-v2 OR gnu-gpl-v3
TEST_DEPENDS+= R-RUnit-[0-9]*:../../devel/R-RUnit
TEST_DEPENDS+= R-inline-[0-9]*:../../devel/R-inline
TEST_DEPENDS+= R-knitr-[0-9]*:../../print/R-knitr
TEST_DEPENDS+= R-markdown-[0-9]*:../../textproc/R-markdown
TEST_DEPENDS+= R-pkgKitten>=0.1.2:../../devel/R-pkgKitten
TEST_DEPENDS+= R-rbenchmark>=1.0.0:../../benchmarks/R-rbenchmark
TEST_DEPENDS+= R-tinytest-[0-9]*:../../devel/R-tinytest
TEST_DEPENDS+= tex-pdfpages-[0-9]*q:../../print/tex-pdfpages
TEST_DEPENDS+= tex-fancyvrb-[0-9]*:../../print/tex-fancyvrb
TEST_DEPENDS+= tex-iftex-[0-9]*d:../../print/tex-iftex
TEST_DEPENDS+= tex-pdflscape-[0-9]*:../../print/tex-pdflscape
TEST_DEPENDS+= tex-ec-[0-9]*:../../fonts/tex-ec
USE_LANGUAGES+= c++
REPLACE_R+= inst/examples/*/*.r
REPLACE_R+= inst/examples/SugarPerformance/sugarBenchmarks.R
REPLACE_RSCRIPT+= inst/discovery/cxx0x.R
REPLACE_SH+= inst/examples/ConvolveBenchmarks/buildAndRun.sh
REPLACE_SH+= inst/examples/ConvolveBenchmarks/overhead.sh
REPLACE_INTERPRETER+= R
REPLACE.R.old= /usr/bin/env r
REPLACE.R.new= ${PREFIX}/bin/R
REPLACE_FILES.R= ${REPLACE_R}
REPLACE_INTERPRETER+= Rscript
REPLACE.Rscript.old= .*Rscript
REPLACE.Rscript.new= ${PREFIX}/bin/Rscript
REPLACE_FILES.Rscript= ${REPLACE_RSCRIPT}
CHECK_SSP_SKIP+= lib/R/library/Rcpp/*/bin/*/*.deb
CHECK_RELRO_SKIP+= ${CHECK_SSP_SKIP}
.include "../../math/R/Makefile.extension"
.include "../../mk/bsd.pkg.mk"