Skip to content

Commit 84aee81

Browse files
committed
add Imports: for RcppEigen in skeleton generator
1 parent ae2aa74 commit 84aee81

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

ChangeLog

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
2021-07-17 Dirk Eddelbuettel <[email protected]>
2+
3+
* DESCRIPTION (Date, Version): Roll minor version
4+
5+
* R/RcppEigen.package.skeleton.R (RcppEigen.package.skeleton): Also
6+
import RcppEigen in DESCRIPTION
7+
18
2021-06-07 Dirk Eddelbuettel <[email protected]>
29

310
* DESCRIPTION (Date, Version): Roll minor version

DESCRIPTION

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
Package: RcppEigen
22
Type: Package
33
Title: 'Rcpp' Integration for the 'Eigen' Templated Linear Algebra Library
4-
Version: 0.3.3.9.2
5-
Date: 2021-06-07
4+
Version: 0.3.3.9.3
5+
Date: 2021-07-17
66
Author: Douglas Bates, Dirk Eddelbuettel, Romain Francois, and Yixuan Qiu;
77
the authors of Eigen for the included version of Eigen
88
Maintainer: Dirk Eddelbuettel <[email protected]>

R/RcppEigen.package.skeleton.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ RcppEigen.package.skeleton <- function(name= "anRpackage", list = character(),
6868
DESCRIPTION <- file.path(root, "DESCRIPTION")
6969
if (file.exists(DESCRIPTION)) {
7070
x <- cbind(read.dcf(DESCRIPTION),
71-
"Imports" = sprintf("Rcpp (>= %s)",
71+
"Imports" = sprintf("Rcpp (>= %s), RcppEigen",
7272
packageDescription("Rcpp")[["Version"]]),
7373
"LinkingTo" = "Rcpp, RcppEigen")
7474
write.dcf(x, file = DESCRIPTION)

0 commit comments

Comments
 (0)