-
Notifications
You must be signed in to change notification settings - Fork 81
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
25 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,3 +2,4 @@ | |
^\.Rproj\.user$ | ||
windows | ||
.travis.yml | ||
^cran-comments\.md$ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
Package: xml2 | ||
Version: 0.1 | ||
Title: Bindings to libxml2 | ||
Description: Tools and utilities for working with XML data in R. | ||
Version: 0.1.0 | ||
Title: Parse XML | ||
Description: Work with XML files using a simple, consistent interface. Built on | ||
top of the 'libxml2' C library. | ||
Authors@R: c( | ||
person("Hadley", "Wickham", , "[email protected]", c("aut", "cre")), | ||
person("Jeroen", "Ooms", role = "ctb"), | ||
person("RStudio", role = "cph"), | ||
person("R Foundation", role = "ctb", | ||
comment = "Copy of R-project homepage cache as example") | ||
comment = "Copy of R-project homepage cached as example") | ||
) | ||
License: MIT + file LICENSE | ||
Depends: | ||
R (>= 3.1.0) | ||
Imports: | ||
|
@@ -20,3 +20,4 @@ LinkingTo: | |
Suggests: | ||
testthat, | ||
curl | ||
License: GPL (>= 2) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
## Test environments | ||
* local OS X install, R 3.1.3 | ||
* ubuntu 12.04 (on travis-ci), R 3.1.3 | ||
* win-builder (devel and release) | ||
|
||
## R CMD check results | ||
There were no ERRORs or WARNINGs. | ||
|
||
There were 2 NOTEs: | ||
|
||
* This is a new submission. | ||
|
||
* The installed package size is large because of the large `libs/` directory, | ||
due to the large size of `libxml2`. I don't think there's anything I can | ||
do about this. | ||
|
||
## Downstream dependencies | ||
None. This is a new submission. |