r-hub / pkgsearch

Search R packages on CRAN
https://r-hub.github.io/pkgsearch
Other
108 stars 8 forks source link

API: add 'archived' field to /:pkg #27

Open gaborcsardi opened 9 years ago

maelle commented 4 years ago
pkgsearch::cran_package("iNEXT")$releases
#> list()
pkgsearch::cran_package("iNEXT")
#> $Package
#> [1] "iNEXT"
#> 
#> $Type
#> [1] "Package"
#> 
#> $Title
#> [1] "Interpolation and Extrapolation for Species Diversity"
#> 
#> $Version
#> [1] "2.0.19"
#> 
#> $Author
#> [1] "T. C. Hsieh, K. H. Ma and Anne Chao"
#> 
#> $Description
#> [1] "Provides simple functions to compute and plot two\ntypes (sample-size- and coverage-based) rarefaction and extrapolation of species\ndiversity (Hill numbers) for individual-based (abundance) data or sampling-unit-\nbased (incidence) data."
#> 
#> $License
#> [1] "GPL (>= 3)"
#> 
#> $URL
#> [1] "http://chao.stat.nthu.edu.tw/blog/software-download/"
#> 
#> $Maintainer
#> [1] "T. C. Hsieh <euler96@gmail.com>"
#> 
#> $Depends
#> $Depends$R
#> [1] ">= 3.4"
#> 
#> 
#> $Imports
#> $Imports$stats
#> [1] "*"
#> 
#> $Imports$graphics
#> [1] "*"
#> 
#> $Imports$ggplot2
#> [1] "*"
#> 
#> $Imports$reshape2
#> [1] "*"
#> 
#> 
#> $BugReports
#> [1] "https://github.com/JohnsonHsieh/iNEXT/issues"
#> 
#> $LazyLoad
#> [1] "yes"
#> 
#> $RoxygenNote
#> [1] "6.1.0"
#> 
#> $Suggests
#> $Suggests$testthat
#> [1] "*"
#> 
#> $Suggests$knitr
#> [1] "*"
#> 
#> $Suggests$rmarkdown
#> [1] "*"
#> 
#> $Suggests$gridExtra
#> [1] "*"
#> 
#> $Suggests$ggthemes
#> [1] "*"
#> 
#> 
#> $VignetteBuilder
#> [1] "knitr"
#> 
#> $ByteCompile
#> [1] "true"
#> 
#> $NeedsCompilation
#> [1] "no"
#> 
#> $Packaged
#> [1] "2019-01-24 08:39:35 UTC; johnson"
#> 
#> $Repository
#> [1] "CRAN"
#> 
#> $`Date/Publication`
#> [1] "2019-01-24 09:10:04 UTC"
#> 
#> $crandb_file_date
#> [1] "2019-01-24 09:14:32"
#> 
#> $MD5sum
#> [1] "76d05f17878443d5a9ff99aa671d0865"
#> 
#> $date
#> [1] "2019-01-24T08:10:04+00:00"
#> 
#> $releases
#> list()
#> 
#> attr(,"class")
#> [1] "cran_package"
pkgsearch::cran_packages("iNEXT")
#> NULL

Created on 2020-01-28 by the reprex package (v0.3.0)

maelle commented 4 years ago

actually even the workaround above doesn't work (no releases for rhub either)