summaryrefslogtreecommitdiff
path: root/pkgtools/R2pkg/Makefile
AgeCommit message (Collapse)AuthorFilesLines
2020-10-12math/blas, math/lapack: Install interchangeable BLAS systembacon1-1/+2
Install the new interchangeable BLAS system created by Thomas Orgis, currently supporting Netlib BLAS/LAPACK, OpenBLAS, cblas, lapacke, and Apple's Accelerate.framework. This system allows the user to select any BLAS implementation without modifying packages or using package options, by setting PKGSRC_BLAS_TYPES in mk.conf. See mk/blas.buildlink3.mk for details. This commit should not alter behavior of existing packages as the system defaults to Netlib BLAS/LAPACK, which until now has been the only supported implementation. Details: Add new mk/blas.buildlink3.mk for inclusion in dependent packages Install compatible Netlib math/blas and math/lapack packages Update math/blas and math/lapack MAINTAINER approved by adam@ OpenBLAS, cblas, and lapacke will follow in separate commits Update direct dependents to use mk/blas.buildlink3.mk Perform recursive revbump
2020-01-13pkgtools/R2pkg: update to 0.6.4rillig1-2/+2
Changes since 0.6.3: * Fix hardcoded use of bmake.
2019-10-19pkgtools/R2pkg: update to 0.6.3rillig1-2/+2
Changes since 0.6.1: * Fix comparison of articles (a, an) in comments.
2019-10-13pkgtools/R2pkg: add more unit testsrillig1-2/+2
2019-10-13pkgtools/R2pkg: add unit testsrillig1-2/+7
2019-10-13pkgtools/R2pkg: separate R code from shell coderillig1-22/+14
Before, it was difficult to edit the R code since all dollars, backslashes and backticks had to be escaped. Separating the code also makes the R part testable on its own.
2019-10-13pkgtools/R2pkg: update to 0.6.1rillig1-2/+2
Changes since 0.6: * Run properly even if TMPDIR is not set. * Quote variables to prevent unintended interpolation. * Write error messages to stderr instead of stdout.
2019-08-08Update to version 0.6.brook1-2/+2
Changes since version 0.5: * Improve the canonical format of an R package Makefile: - Place R_PKGNAME, R_PKGVER, and CATEGORIES in the first stanza. - Simplify CATEGORIES by defining common ones in Makefile.extension. - Use the default value of HOMEPAGE defined in Makefile.extension. * Annotate generated comments with [R2pkg] to make them easier to find.
2019-08-01R2pkg: update to version 0.5.brook1-2/+2
2019-06-24R2pkg: update to 0.4.brook1-2/+2
Changes since 0.3: * Fix recursion. * Add both c and c++ to USE_LANGUAGES. * Add maintainer email handling (-M). * Use buildlink3.mk files for dependencies when available.
2017-07-18Update to v0.3.brook1-2/+4
- Add recursive handling of dependencies. - Simplify updating pre-existing R packages. - Improve handling of packages that conflict with base R packages.
2015-04-25Initial import of the R2pkg package:brook1-0/+41
The R2pkg program, which is modeled after url2pkg, creates a new pkgsrc package for the corresponding R package. It is intended to help pkgsrc developers create new R packages quickly and easily. This package was discussed in a thread beginning with the following: http://mail-index.netbsd.org/tech-pkg/2015/02/04/msg014227.html