Received: by mail.netbsd.org (Postfix, from userid 605) id C687584F63; Sat, 30 Apr 2022 05:19:04 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 0D5F884F62 for ; Sat, 30 Apr 2022 05:19:04 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id fIcc1eynVFwn for ; Sat, 30 Apr 2022 05:19:03 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 7AA6684E7B for ; Sat, 30 Apr 2022 05:19:03 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 7434EFB1A; Sat, 30 Apr 2022 05:19:03 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1651295943121520" MIME-Version: 1.0 Date: Sat, 30 Apr 2022 05:19:03 +0000 From: "Makoto Fujiwara" Subject: CVS commit: pkgsrc/devel/R-mockr To: pkgsrc-changes@NetBSD.org Reply-To: mef@netbsd.org X-Mailer: log_accum Message-Id: <20220430051903.7434EFB1A@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1651295943121520 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: mef Date: Sat Apr 30 05:19:03 UTC 2022 Added Files: pkgsrc/devel/R-mockr: DESCR Makefile distinfo Log Message: (devel/R-mockr) import R-mockr-0.2.0 Provides a means to mock a package function, i.e., temporarily substitute it for testing. Designed as a drop-in replacement for the now deprecated 'testthat::with_mock()' and 'testthat::local_mock()'. To generate a diff of this commit: cvs rdiff -u -r0 -r1.1 pkgsrc/devel/R-mockr/DESCR \ pkgsrc/devel/R-mockr/Makefile pkgsrc/devel/R-mockr/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1651295943121520 Content-Disposition: inline Content-Length: 1950 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Added files: Index: pkgsrc/devel/R-mockr/DESCR diff -u /dev/null pkgsrc/devel/R-mockr/DESCR:1.1 --- /dev/null Sat Apr 30 05:19:03 2022 +++ pkgsrc/devel/R-mockr/DESCR Sat Apr 30 05:19:03 2022 @@ -0,0 +1,3 @@ +Provides a means to mock a package function, i.e., temporarily +substitute it for testing. Designed as a drop-in replacement for the +now deprecated 'testthat::with_mock()' and 'testthat::local_mock()'. Index: pkgsrc/devel/R-mockr/Makefile diff -u /dev/null pkgsrc/devel/R-mockr/Makefile:1.1 --- /dev/null Sat Apr 30 05:19:03 2022 +++ pkgsrc/devel/R-mockr/Makefile Sat Apr 30 05:19:03 2022 @@ -0,0 +1,25 @@ +# $NetBSD: Makefile,v 1.1 2022/04/30 05:19:03 mef Exp $ + +R_PKGNAME= mockr +R_PKGVER= 0.2.0 +CATEGORIES= devel + +MAINTAINER= pkgsrc-users@NetBSD.org +COMMENT= Mocking in R +LICENSE= gnu-gpl-v3 + +DEPENDS+= R-rlang>=1.0.2:../../devel/R-rlang +DEPENDS+= R-withr>=2.5.0:../../devel/R-withr + +TEST_DEPENDS+= R-fs-[0-9]*:../../devel/R-fs +TEST_DEPENDS+= R-covr-[0-9]*:../../devel/R-covr +TEST_DEPENDS+= R-knitr-[0-9]*:../../print/R-knitr +TEST_DEPENDS+= R-pkgload-[0-9]*:../../devel/R-pkgload +TEST_DEPENDS+= R-rmarkdown-[0-9]*:../../textproc/R-rmarkdown +TEST_DEPENDS+= R-testthat-[0-9]*:../../devel/R-testthat +TEST_DEPENDS+= R-usethis-[0-9]*:../../devel/R-usethis + +USE_LANGUAGES= # none + +.include "../../math/R/Makefile.extension" +.include "../../mk/bsd.pkg.mk" Index: pkgsrc/devel/R-mockr/distinfo diff -u /dev/null pkgsrc/devel/R-mockr/distinfo:1.1 --- /dev/null Sat Apr 30 05:19:03 2022 +++ pkgsrc/devel/R-mockr/distinfo Sat Apr 30 05:19:03 2022 @@ -0,0 +1,5 @@ +$NetBSD: distinfo,v 1.1 2022/04/30 05:19:03 mef Exp $ + +BLAKE2s (R/mockr_0.2.0.tar.gz) = b77c29ad3b9f87d9be3daf94f3eaf612a1e655f903ff8cb48428eba60e26f01f +SHA512 (R/mockr_0.2.0.tar.gz) = 06554d4f0e4c25a2a809907a50af3799a4f0321429feb5efc86ed34e840a9d4634585df811370ea8624a61a79da73d29ab93de0751a38868ce7e0aaebe006ee6 +Size (R/mockr_0.2.0.tar.gz) = 21539 bytes --_----------=_1651295943121520--