Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add capability to add a github package to a miniCRAN repo #50

Open
andrie opened this issue Dec 16, 2014 · 8 comments
Open

Add capability to add a github package to a miniCRAN repo #50

andrie opened this issue Dec 16, 2014 · 8 comments

Comments

@andrie
Copy link
Owner

andrie commented Dec 16, 2014

This is a feature that gets requested often

Related to:

@achubaty
Copy link
Collaborator

achubaty commented Apr 15, 2016

see devtools::install_remote() to see how the package source bundle is downloaded. from there, #23's addLocalPackage can take over

@stephlocke
Copy link

This would be handy

@msteijaert
Copy link

msteijaert commented Mar 20, 2018

Here's an example based on achubaty's comment

addGithubPackage <- function(githubPath,...){
    packageName <- basename(githubPath)
    exDir <- file.path(tempdir(),packageName)
    if(file.exists(exDir)) unlink(exDir, recursive=TRUE)
    zipFile <- file.path(tempdir(),paste0(packageName,".zip"))
    download.file(paste0(githubPath,"/","zipball/master"),zipFile)
    unzip(zipFile, exdir = exDir)
    file.rename(list.files(exDir,full.names=TRUE)[1],file.path(exDir,packageName))
    addLocalPackage(packageName,exDir,...)
}
addGithubPackage(githubPath="https://github.com/js229/Vennerable/",path=reposPath,build=TRUE)

@seasmith
Copy link

@msteijaert
I resolved a file path error by setting mode = "wb" in download.file(). Thank you, for the function.

OS: Windows 7
R: 3.4.4

@StaffanBetner
Copy link

@msteijaert's code doesn't work anymore. I get the error Error: No files found in path with extension '.tar.gz'

achubaty added a commit that referenced this issue Jul 16, 2021
implemented a version of @msteijaert's function, though note the following TODOs need to make it fully functional:

* needs to handle `HEAD` instead of `master` (to allow for `main` branch)
* allow arbitrary git reference, à la `devtools::install_github()`
* allow installation from github repo that keeps pkg in a subdir
* use `GITHUB_PAT` to allow downloading from private repos
* `addLocalPackage()` does not add the dependencies of the locally built package!
@achubaty
Copy link
Collaborator

@msteijaert thank you for taking a first crack at this. I've implemented a version of your function on the 50-addPackageGitHub branch, though it needs work. See the commit message there.

@msteijaert's code doesn't work anymore. I get the error Error: No files found in path with extension '.tar.gz'

Can you post the code you used? I can't reporduce the error.

@jonlachmann
Copy link

jonlachmann commented Jan 24, 2022

Hi! I needed this functionality and took the code from the branch 50-addPackageGitHub and extended it to support private repos etc by calling the appropriate functions in the remotes package.

The end result is below. Feel free to add it to the package or let me know if you would like a proper pull request.

addPackageGitHub <- function(repo, username = NULL, ref = "master", subdir = NULL, auth_token = remotes:::github_pat(quiet), ...) {
  packageName <- basename(repo)
  exDir <- file.path(tempdir(), packageName)
  if (dir.exists(exDir)) unlink(exDir, recursive = TRUE)

  remote <- remotes:::github_remote(repo = repo, username = username, ref = ref, subdir = subdir, auth_token = auth_token)
  tarFile <- remotes:::remote_download(remote)

  untar(tarFile, exdir = exDir)
  file.rename(list.files(exDir, full.names = TRUE)[1], file.path(exDir, packageName))

  ## TODO: addLocalPackage() does not add the dependencies of the locally built package!
  addLocalPackage(packageName, exDir, ..., build = TRUE)
}

addPackageGitHub("user/repo", auth_token=github_token, path=miniCRAN_dir)

@daattali
Copy link

Are there any concrete plans on adding this feature, or is it more of a "long term wish list"?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

8 participants