devtools / GitHub error de descarga

A partir de hoy no puedo usardevtools para instalar un paquete desde GitHub. No sé si el error está en:

YodevtoolsGitHub

Estoy usandoinstall_github de la siguiente manera y recibe el siguiente error:

library(devtools)
install_github("reports", "trinker")

## > library(devtools)
## > install_github("reports", "trinker")
## Installing github repo(s) reports/master from trinker
## Installing reports.zip from https://github.com/trinker/reports/archive/master.zip
## Error in function (type, msg, asError = TRUE)  : 
##   transfer closed with outstanding read data remaining
##
## TRIED WITH SECOND REPO:
##
## > install_github("acc.roxygen2", "trinker")
## Installing github repo(s) acc.roxygen2/master from trinker
## Installing acc.roxygen2.zip from https://github.com/trinker/acc.roxygen2/archive/master.zip
## Error in function (type, msg, asError = TRUE)  : 
##   transfer closed with outstanding read data remaining

Intenté esto con un segundo repo y obtengo el mismo error. Yo se que otroerrores similares Están relacionados con el certificado de seguridad.

Aquí está mi repo githubhttps://github.com/trinker/reports

Parece que tampoco puedo descargar e instalar. Puedo instalar eltar.gz archivo producido por una compilación R sin embargo.

¿Dónde está ocurriendo el error y por qué está ocurriendo?

PS puedo instalar para github de otras personas:

library(devtools)
install_github("findPackage", "Dasonk")

EDITAR

Puedo instalar mi propio qdap también:

library(devtools)
install_github("qdap", "trinker")

Respuestas a la pregunta(1)

Su respuesta a la pregunta