forked from ropensci/codemetar
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add pre-commit hook for DESCRIPTION vs codemeta.json * oops had forgotten the dependencies 😱 * had also forgotten to import the function * puts the code in the right place and documents what the first call to write_codemeta will do * add rOpenSci and myself as authors * remove MIT licence * change licence * add that the code is GPL-3 * replaces devtools with usethis where possible * mostly French snobism 😉 * add uses_git origin * cf ropensci#62 * ropensci#62 * only adds hook once! * start using desc cf ropensci#41 * various fixes * better example? * document * removes reference to deleted function * cf ropensci#63 * cf ropensci#64, parses more possible roles * updates codemeta.json in particular more people/orgs appear * start work on opinions cf ropensci#76 * document * oops * oops again * gives opinion when verbose=TRUE and otherwise just uses robust code * cleans up tests * more tests of plain authors&maintainer * work on tests * corrects documentation * better if the pkg exists 😁 * update codemeta * adds a message to get a devtools release question * fix? * new try * removes httr dependency in favor of crul cf ropensci#83 * checks URLs in DESCRIPTION cf ropensci#68 * oops fixes test * uses dev version of jsonld * adds coercion to character to repair bug introduced by jsonld new version cf ropensci#88 * clean up cache * yay encoding * close ropensci#84 by deleting now useless licences.R file * appveyor * oh, Appveyor * start filling NEWS.md * better checks when several URLs * more space * generate review metadata cf ropensci#23 * oops * cf ropensci#63 * @jeroen said that this might help 🙏 * thanks again @jeroen * test on patched R version * CRAN and Bioconductor links for dependencies cf ropensci#81 * add tests of dependencies URL creation * add canonic URL for the package itself cf ropensci#81 * borrows jsonlite code cf ropensci#84 * makes it a bit more specific * badge parsing cf ropensci#130 * uses badge parsing function in guess_metadata * opinions about README cf 98 * add check of provider cf ropensci#81 * oops * oops again * R CMD Check NOTEs * oops * update contributor list cf ropensci#95 * several relatedLinks cf ropensci#99 * add the URL only once * oops repairs test * update NEWS * add ability to provide relatedLink for packages installed from CRAN or Bioconductor * add link to commit if available * only one maintainer currently cf ropensci#109 * oops this was wrong! * mmmh there was a mistake here * Travis fix? * remotes cf ropensci#96 * Travis fix? * export the badge extraction function cf ropensci#107 and update docs and correct a test * status as URL cf ropensci#102 * now one can extract lifecycle status * not only Travis CI as contIntegration cf ropensci#111 * update NEWs * update NEWS * repairs handling of additional terms cf ropensci#112 and adds corresponding test * correct test
- Loading branch information
Showing
45 changed files
with
1,583 additions
and
263 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,3 +8,5 @@ apt_packages: | |
|
||
after_success: | ||
- Rscript -e 'covr::codecov()' | ||
|
||
r_github_packages: ropensci/jsonld |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,50 +1,77 @@ | ||
Package: codemetar | ||
Type: Package | ||
Title: Generate 'CodeMeta' Metadata for R Packages | ||
Version: 0.1.5 | ||
Authors@R: c(person("Carl", "Boettiger", | ||
role=c("aut", "cre", "cph"), | ||
email="cboettig@gmail.com", | ||
comment=c(ORCID = "0000-0002-1642-628X")), | ||
person("Anna", "Krystalli", | ||
role = "rev", | ||
comment=c(ORCID = "0000-0002-2378-4915")), | ||
person("Toph", "Allen", | ||
role = "rev", | ||
comment=c(ORCID = "0000-0003-4580-091X"))) | ||
Version: 0.1.6 | ||
Authors@R: | ||
c(person(given = "Carl", | ||
family = "Boettiger", | ||
role = c("aut", "cre", "cph"), | ||
email = "cboettig@gmail.com", | ||
comment = structure("0000-0002-1642-628X", .Names = "ORCID")), | ||
person(given = "Anna", | ||
family = "Krystalli", | ||
role = c("rev", "ctb"), | ||
comment = structure("0000-0002-2378-4915", .Names = "ORCID")), | ||
person(given = "Toph", | ||
family = "Allen", | ||
role = "rev", | ||
comment = structure("0000-0003-4580-091X", .Names = "ORCID")), | ||
person(given = "Maëlle", | ||
family = "Salmon", | ||
role = c("ctb", "aut"), | ||
comment = structure("0000-0002-2815-0399", .Names = "ORCID")), | ||
person(given = "rOpenSci", | ||
role = "fnd", | ||
comment = "https://ropensci.org/"), | ||
person(given = "Katrin", | ||
family = "Leinweber", | ||
role = "ctb"), | ||
person(given = "Noam", | ||
family = "Ross", | ||
role = "ctb"), | ||
person(given = "Arfon", | ||
family = "Smith", | ||
role = "ctb")) | ||
Description: The 'Codemeta' Project defines a 'JSON-LD' format for describing | ||
software metadata, as detailed at <https://codemeta.github.io>. This package | ||
provides utilities to generate, parse, and modify 'codemeta.json' files | ||
automatically for R packages, as well as tools and examples for working with | ||
'codemeta.json' 'JSON-LD' more generally. | ||
License: MIT + file LICENSE | ||
URL: https://github.com/ropensci/codemetar | ||
License: GPL-3 | ||
URL: https://github.com/ropensci/codemetar,https://codemeta.github.io/codemetar | ||
BugReports: https://github.com/ropensci/codemetar/issues | ||
Encoding: UTF-8 | ||
LazyData: true | ||
RoxygenNote: 6.0.1 | ||
RoxygenNote: 6.0.1.9000 | ||
Depends: R (>= 3.0.0) | ||
Imports: jsonlite (>= 1.3), | ||
Imports: | ||
jsonlite (>= 1.3), | ||
jsonld, | ||
git2r, | ||
devtools, | ||
methods, | ||
stats, | ||
stringi, | ||
readr | ||
Suggests: testthat, | ||
readr, | ||
desc, | ||
usethis, | ||
whisker, | ||
tibble, | ||
crul, | ||
gh, | ||
stringr, | ||
sessioninfo | ||
Suggests: | ||
testthat, | ||
jsonvalidate, | ||
covr, | ||
knitr, | ||
rmarkdown, | ||
httr, | ||
magrittr, | ||
xml2, | ||
dplyr (>= 0.7.0), | ||
tibble, | ||
purrr, | ||
printr | ||
VignetteBuilder: knitr | ||
X-schema.org-keywords: metadata, codemeta, ropensci, citation, credit, linked-data | ||
X-schema.org-isPartOf: https://ropensci.org | ||
X-schema.org-relatedLink: https://codemeta.github.io/codemetar |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.