Skip to content

Commit b015ba7

Browse files
committed
rename package for #13, but not yet function names
1 parent aeeab8d commit b015ba7

8 files changed

+21
-21
lines changed

DESCRIPTION

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
Package: pkgsimil
1+
Package: pkgmatch
22
Title: Find R Packages Matching Either Descriptions or Other R Packages
3-
Version: 0.2.0.036
3+
Version: 0.2.0.037
44
Authors@R: c(
55
person("Mark", "Padgham", , "mark.padgham@email.com", role = c("aut", "cre"),
66
comment = c(ORCID = "0000-0003-2172-5265")),

NAMESPACE

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ export(pkgsimil_treesitter_fn_tags)
1313
export(text_is_code)
1414
importFrom(Rcpp,sourceCpp)
1515
importFrom(memoise,memoise)
16-
useDynLib(pkgsimil, .registration = TRUE)
16+
useDynLib(pkgmatch, .registration = TRUE)

R/RcppExports.R

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
# Generator token: 10BE3573-1514-4C36-9D1C-5A225CD40393
33

44
rcpp_bm25 <- function (idfs, tokensList, these_tokens, ntoks_avg) {
5-
.Call (`_pkgsimil_rcpp_bm25`, idfs, tokensList, these_tokens, ntoks_avg)
5+
.Call (`_pkgmatch_rcpp_bm25`, idfs, tokensList, these_tokens, ntoks_avg)
66
}
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
#' @keywords internal
22
#' @importFrom memoise memoise
3-
#' @aliases pkgsimil-package
3+
#' @aliases pkgmatch-package
44
"_PACKAGE"
55

66
# The following block is used by usethis to automatically manage
77
# roxygen namespace tags. Modify with care!
88
## usethis namespace: start
99
#' @importFrom Rcpp sourceCpp
10-
#' @useDynLib pkgsimil, .registration = TRUE
10+
#' @useDynLib pkgmatch, .registration = TRUE
1111
## usethis namespace: end
1212
NULL

codemeta.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
22
"@context": "https://doi.org/10.5063/schema/codemeta-2.0",
33
"@type": "SoftwareSourceCode",
4-
"identifier": "pkgsimil",
4+
"identifier": "pkgmatch",
55
"description": "Find R packages matching either descriptions or other R packages.",
6-
"name": "pkgsimil: Find R Packages Matching Either Descriptions or Other R Packages",
6+
"name": "pkgmatch: Find R Packages Matching Either Descriptions or Other R Packages",
77
"relatedLink": "https://docs.ropensci.org/pkgmatch/",
88
"codeRepository": "https://github.com/ropensci-review-tools/pkgmatch",
99
"issueTracker": "https://github.com/ropensci-review-tools/pkgmatch/issues",
1010
"license": "https://spdx.org/licenses/MIT",
11-
"version": "0.2.0.36",
11+
"version": "0.2.0.37",
1212
"programmingLanguage": {
1313
"@type": "ComputerLanguage",
1414
"name": "R",
@@ -317,8 +317,8 @@
317317
},
318318
"SystemRequirements": null
319319
},
320-
"fileSize": "2751.433KB",
320+
"fileSize": "2751.439KB",
321321
"readme": "https://github.com/ropensci-review-tools/pkgmatch/blob/main/README.md",
322-
"contIntegration": ["https://github.com/ropensci-review-tools/pkgsimil/actions?query=workflow%3AR-CMD-check", "https://app.codecov.io/gh/ropensci-review-tools/pkgsimil"],
322+
"contIntegration": ["https://github.com/ropensci-review-tools/pkgmatch/actions?query=workflow%3AR-CMD-check", "https://app.codecov.io/gh/ropensci-review-tools/pkgmatch"],
323323
"developmentStatus": "https://www.repostatus.org/#wip"
324324
}

man/pkgsimil-package.Rd man/pkgmatch-package.Rd

+5-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/RcppExports.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Rcpp::Rostream<false>& Rcpp::Rcerr = Rcpp::Rcpp_cerr_get();
1212

1313
// rcpp_bm25
1414
Rcpp::NumericVector rcpp_bm25(const Rcpp::DataFrame& idfs, const Rcpp::List& tokensList, Rcpp::DataFrame& these_tokens, const double ntoks_avg);
15-
RcppExport SEXP _pkgsimil_rcpp_bm25(SEXP idfsSEXP, SEXP tokensListSEXP, SEXP these_tokensSEXP, SEXP ntoks_avgSEXP) {
15+
RcppExport SEXP _pkgmatch_rcpp_bm25(SEXP idfsSEXP, SEXP tokensListSEXP, SEXP these_tokensSEXP, SEXP ntoks_avgSEXP) {
1616
BEGIN_RCPP
1717
Rcpp::RObject rcpp_result_gen;
1818
Rcpp::RNGScope rcpp_rngScope_gen;
@@ -26,11 +26,11 @@ END_RCPP
2626
}
2727

2828
static const R_CallMethodDef CallEntries[] = {
29-
{"_pkgsimil_rcpp_bm25", (DL_FUNC) &_pkgsimil_rcpp_bm25, 4},
29+
{"_pkgmatch_rcpp_bm25", (DL_FUNC) &_pkgmatch_rcpp_bm25, 4},
3030
{NULL, NULL, 0}
3131
};
3232

33-
RcppExport void R_init_pkgsimil(DllInfo *dll) {
33+
RcppExport void R_init_pkgmatch(DllInfo *dll) {
3434
R_registerRoutines(dll, NULL, CallEntries, NULL, NULL);
3535
R_useDynamicSymbols(dll, FALSE);
3636
}

tests/testthat.R

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@
88

99
library (testthat)
1010
library (httptest2)
11-
library (pkgsimil)
11+
library (pkgmatch)
1212

13-
test_check ("pkgsimil")
13+
test_check ("pkgmatch")

0 commit comments

Comments
 (0)