Skip to content

Commit

Permalink
orphan package
Browse files Browse the repository at this point in the history
  • Loading branch information
leeper authored Jan 12, 2020
1 parent 62e3244 commit 7566a35
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,11 @@ Type: Package
Title: Amazon Web Services EC2 Client Package
Version: 0.1.17
Date: 2018-07-27
Authors@R: c(person("Thomas J.", "Leeper", role = c("aut", "cre"),
Authors@R: c(person("Thomas J.", "Leeper", role = c("aut"),
email = "[email protected]",
comment = c(ORCID = "0000-0003-4097-6326")),
person("Andrie", "de Vries", role = "ctb"))
Maintainer: ORPHANED
Description: A simple client package for the Amazon Web Services ('AWS') Elastic
Cloud Compute ('EC2') <https://aws.amazon.com/ec2/> 'API'.
License: GPL (>= 2)
Expand Down

4 comments on commit 7566a35

@MarcinKosinski
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hey @leeper this change broke installation of the package at all

renv::install('cloudyr/aws.ec2')
Retrieving 'https://api.github.com/repos/cloudyr/aws.ec2/tarball/7566a353cc92082202f5646c7e1010df10c26dc5' ...
	OK [file is up to date]
Installing aws.ec2 [0.1.17] ...
	FAILED
Error installing package 'aws.ec2':
===================================

Warning in untar2(tarfile, files, list, exdir, restore_times) :
  skipping pax global extended headers
* installing *source* package ‘aws.ec2’ ...
** using staged installation
Error : Invalid DESCRIPTION file

Authors@R field gives no person with maintainer role, valid email
address and non-empty name.

See section 'The DESCRIPTION file' in the 'Writing R Extensions'
manual.

ERROR: installing package DESCRIPTION failed for package ‘aws.ec2’
* removing ‘/home/marcin/projects/pilates/renv/staging/1/aws.ec2’
Error: install of package 'aws.ec2' failed

@MarcinKosinski
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I would suggest adding any artificial e-mail to Maintainer instead of passing ORPHANED

@MarcinKosinski
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Now only the stable version can be installed from DRAT

options(repos = c(getOption("repos"), "http://cloudyr.github.io/drat"))
renv::install("aws.ec2")
library(aws.ec2)

@HenrikBengtsson
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Maintainer: ORPHANED is how CRAN officially does it (e.g. another example https://cran.r-project.org/web/packages/biclust/). Because of this, I think this is something that should be handled by renv::install(<git-repos>). I would report this upstream/there.

Please sign in to comment.