diff options
author | brook <brook@pkgsrc.org> | 2019-08-08 20:55:04 +0000 |
---|---|---|
committer | brook <brook@pkgsrc.org> | 2019-08-08 20:55:04 +0000 |
commit | 51b064a918ccb2aeb0b7dfe3605968b0c0595cee (patch) | |
tree | aab6b3d7c64f2a3a973f6fb6d2ca19b0af85b398 | |
parent | 0d5e53cfefeadf4c8a7247e884e31d550deb4322 (diff) | |
download | pkgsrc-51b064a918ccb2aeb0b7dfe3605968b0c0595cee.tar.gz |
Update all R packages to canonical form.
The canonical form [1] of an R package Makefile includes the
following:
- The first stanza includes R_PKGNAME, R_PKGVER, PKGREVISION (as
needed), and CATEGORIES.
- HOMEPAGE is not present but defined in math/R/Makefile.extension to
refer to the CRAN web page describing the package. Other relevant
web pages are often linked from there via the URL field.
This updates all current R packages to this form, which will make
regular updates _much_ easier, especially using pkgtools/R2pkg.
[1] http://mail-index.netbsd.org/tech-pkg/2019/08/02/msg021711.html
-rw-r--r-- | math/R-classInt/Makefile | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/math/R-classInt/Makefile b/math/R-classInt/Makefile index 3007ee336ed..df2dc1c2a91 100644 --- a/math/R-classInt/Makefile +++ b/math/R-classInt/Makefile @@ -1,15 +1,13 @@ -# $NetBSD: Makefile,v 1.9 2019/07/31 19:09:38 brook Exp $ +# $NetBSD: Makefile,v 1.10 2019/08/08 20:55:04 brook Exp $ -CATEGORIES= math R +R_PKGNAME= classInt +R_PKGVER= 0.3-3 +CATEGORIES= math MAINTAINER= pkgsrc-users@NetBSD.org -HOMEPAGE= ${R_HOMEPAGE_BASE}/genetics/ COMMENT= Choose univariate class intervals LICENSE= gnu-gpl-v2 OR gnu-gpl-v3 -R_PKGNAME= classInt -R_PKGVER= 0.3-3 - DEPENDS+= R-e1071>=1.6.8:../../math/R-e1071 USE_LANGUAGES= c fortran |