Skip to content

Commit

Permalink
Merge pull request #88 from RevolutionAnalytics/dev
Browse files Browse the repository at this point in the history
Merge dev to master for v0.2.8
  • Loading branch information
andrie authored Jun 19, 2017
2 parents 2cace2a + a85428f commit f7fac46
Show file tree
Hide file tree
Showing 54 changed files with 1,129 additions and 705 deletions.
27 changes: 23 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,35 @@ repos:

env: NOT_CRAN="true"

matrix:
include:

- os: linux
dist: trusty
r: oldrel

- os: linux
dist: trusty
r: release

- os: linux
dist: trusty
r: devel

- os: osx
osx_image: xcode8
latex: false

r_build_args: '--no-build-vignettes'
r_check_args: '--as-cran --ignore-vignettes --no-examples'

branches:
only:
- master
- release
- dev

notifications:
email:
on_success: change
on_failure: change



27 changes: 15 additions & 12 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,35 +1,38 @@
Package: miniCRAN
Authors@R: c(person("Revolution Analytics", role="aut"), person("Andrie", "de
Authors@R: c(person("Microsoft Corporation", role="cph"), person("Andrie", "de
Vries", role=c("aut", "cre"), email="[email protected]"),
person("Alex", "Chubaty", role="ctb", email="[email protected]"))
License: GPL-2
Copyright: Microsoft Corporation
Title: Create a Mini Version of CRAN Containing Only Selected Packages
LazyData: true
LazyLoad: true
Description: Makes it possible to create an internally consistent
repository consisting of selected packages from CRAN-like repositories.
The user specifies a set of desired packages, and miniCRAN recursively
reads the dependency tree for these packages, then downloads only this
subset. The user can then install packages from this repository directly,
rather than from CRAN. This is useful in production settings, e.g. server
behind a firewall, or remote locations with slow broadband access.
Version: 0.2.7
Date: 2017-06-19
Version: 0.2.8
URL: https://github.com/RevolutionAnalytics/miniCRAN
BugReports: https://github.com/RevolutionAnalytics/miniCRAN/issues
Date: 2016-08-19
Imports:
tools,
XML,
graphics,
httr,
magrittr,
methods,
stats,
tools,
utils,
graphics,
stats
XML
Suggests:
testthat(>= 0.9),
devtools,
igraph,
knitr,
rmarkdown,
igraph
testthat(>= 0.9)
LazyData: true
LazyLoad: true
VignetteBuilder: knitr
RoxygenNote: 5.0.1
RoxygenNote: 6.0.1
Roxygen: list(markdown = TRUE)
2 changes: 2 additions & 0 deletions NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

S3method(plot,pkgDepGraph)
S3method(print,pkgDep)
export(addLocalPackage)
export(addOldPackage)
export(addPackage)
export(addPackageListingGithub)
Expand All @@ -23,6 +24,7 @@ importFrom(graphics,title)
importFrom(httr,GET)
importFrom(httr,content)
importFrom(httr,stop_for_status)
importFrom(magrittr,'%>%')
importFrom(methods,is)
importFrom(stats,reshape)
importFrom(stats,setNames)
Expand Down
11 changes: 10 additions & 1 deletion NEWS
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
miniCRAN v0.2.8 (Release date: 2017-06-19)
==============

* new function `addLocalPackage()` to add source or pre-built packages from a local directory (#23).
* updates for R 3.4.0 on macOS (#82; PR #84; PR #86) @vnijs
* improve documentation for `pkgPath` (#85)
* fix bug in `makeRepo()` when creating repo with multiple package types


miniCRAN v0.2-7 (Release date: 2016-08-19)
==============

Expand All @@ -7,7 +16,7 @@ miniCRAN v0.2-7 (Release date: 2016-08-19)
miniCRAN v0.2-6 (Release date: 2016-06-26)
==============

* allow using `makeRepo()` to create a miniCRAN repo from an existing local miniCRAN, i.e. the repos contains file:/// prefix. This enables a use case in the AzureML package. (#76)
* allow using `makeRepo()` to create a miniCRAN repo from an existing local miniCRAN, *i.e.*, the repos contains `file:///` prefix. This enables a use case in the AzureML package. (#76)
* easily manage packages for all three Operating Systems (#24)
* fix inconsistent use of Rversion in `addPackage()` (#42)

Expand Down
Loading

0 comments on commit f7fac46

Please sign in to comment.