Skip to content

Commit 3868169

Browse files
committed
Remove Imports listing of RcppEigen when using the package skeleton creation helper.
1 parent 9abb401 commit 3868169

File tree

3 files changed

+15
-4
lines changed

3 files changed

+15
-4
lines changed

ChangeLog

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
2019-02-16 James Joseph Balamuta <balamut2@illinois.edu>
2+
3+
* R/runit.RcppEigen.R: Removed listing RcppEigen in Imports during
4+
skeleton package creation.
5+
16
2018-11-24 Dirk Eddelbuettel <edd@debian.org>
27

38
* DESCRIPTION (Version, Date): Release 0.3.3.5.0

R/RcppEigen.package.skeleton.R

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -64,12 +64,11 @@ RcppEigen.package.skeleton <- function(name= "anRpackage", list = character(),
6464
DESCRIPTION <- file.path(root, "DESCRIPTION")
6565
if (file.exists(DESCRIPTION)) {
6666
x <- cbind(read.dcf(DESCRIPTION),
67-
"Imports" = sprintf("Rcpp (>= %s), RcppEigen (>= %s)",
68-
packageDescription("Rcpp")[["Version"]],
69-
packageDescription("RcppEigen")[["Version"]]),
67+
"Imports" = sprintf("Rcpp (>= %s)",
68+
packageDescription("Rcpp")[["Version"]]),
7069
"LinkingTo" = "Rcpp, RcppEigen")
7170
write.dcf(x, file = DESCRIPTION)
72-
message(" >> added Imports: Rcpp, RcppEigen")
71+
message(" >> added Imports: Rcpp")
7372
message(" >> added LinkingTo: Rcpp, RcppEigen")
7473
}
7574

inst/NEWS.Rd

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,13 @@
33
\newcommand{\ghpr}{\href{https://github.com/RcppCore/RcppEigen/pull/#1}{##1}}
44
\newcommand{\ghit}{\href{https://github.com/RcppCore/RcppEigen/issues/#1}{##1}}
55

6+
\section{Changes in RcppEigen version 0.3.3.?.0 (2019-??-??)}{
7+
\itemize{
8+
\item Fixed skeleton package creation listing RcppEigen under Imports
9+
(James Balamuta in \ghpr{68} addressing \ghit{16}).
10+
}
11+
}
12+
613
\section{Changes in RcppEigen version 0.3.3.5.0 (2018-11-24)}{
714
\itemize{
815
\item Updated to version 3.3.5 of Eigen (Dirk in \ghpr{65})

0 commit comments

Comments
 (0)