Received: by mail.netbsd.org (Postfix, from userid 605) id F0B4884E9D; Sat, 30 Apr 2022 14:39:04 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 3866784E6B for ; Sat, 30 Apr 2022 14:39: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 Sah9o7IDHPch for ; Sat, 30 Apr 2022 14:39:03 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 8C51284E64 for ; Sat, 30 Apr 2022 14:39:03 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 85E05FB1A; Sat, 30 Apr 2022 14:39:03 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1651329543166840" MIME-Version: 1.0 Date: Sat, 30 Apr 2022 14:39:03 +0000 From: "Makoto Fujiwara" Subject: CVS commit: pkgsrc/devel/R-roxygen2 To: pkgsrc-changes@NetBSD.org Reply-To: mef@netbsd.org X-Mailer: log_accum Message-Id: <20220430143903.85E05FB1A@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1651329543166840 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: mef Date: Sat Apr 30 14:39:03 UTC 2022 Modified Files: pkgsrc/devel/R-roxygen2: Makefile distinfo Log Message: (devel/R-roxygen2) Updated 7.1.1 to 7.1.2 # roxygen2 7.1.2 * The new `@examplesIf` tag can be used to create conditional examples. These examples only run if a specified condition holds (#962). * roxygen2 is now licensed as MIT (#1163). * Bug fix for upcoming stringr 2.0.0 release. * Code blocks with language now add `sourceCode` to the generated div; this makes syntax highlighting more consistent across downlit/pandoc/knitr/roxygen2. * Percent signs in markdown link targets, e.g. `[text](https://foo/ba%20r)` are now handled correctly (#1209). To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 pkgsrc/devel/R-roxygen2/Makefile cvs rdiff -u -r1.4 -r1.5 pkgsrc/devel/R-roxygen2/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1651329543166840 Content-Disposition: inline Content-Length: 1954 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/R-roxygen2/Makefile diff -u pkgsrc/devel/R-roxygen2/Makefile:1.3 pkgsrc/devel/R-roxygen2/Makefile:1.4 --- pkgsrc/devel/R-roxygen2/Makefile:1.3 Thu Sep 24 00:44:53 2020 +++ pkgsrc/devel/R-roxygen2/Makefile Sat Apr 30 14:39:03 2022 @@ -1,12 +1,12 @@ -# $NetBSD: Makefile,v 1.3 2020/09/24 00:44:53 mef Exp $ +# $NetBSD: Makefile,v 1.4 2022/04/30 14:39:03 mef Exp $ R_PKGNAME= roxygen2 -R_PKGVER= 7.1.1 +R_PKGVER= 7.1.2 CATEGORIES= devel MAINTAINER= pkgsrc-users@NetBSD.org COMMENT= In-line documentation for R -LICENSE= gnu-gpl-v2 OR gnu-gpl-v3 +LICENSE= mit DEPENDS+= R-desc>=1.2.0:../../devel/R-desc DEPENDS+= R-pkgload>=1.0.2:../../devel/R-pkgload @@ -27,5 +27,5 @@ TEST_DEPENDS+= R-devtools-[0-9]*:../../d USE_LANGUAGES= c c++ .include "../../math/R/Makefile.extension" -.include "../../devel/R-Rcpp/buildlink3.mk" +.include "../../lang/R-cpp11/buildlink3.mk" .include "../../mk/bsd.pkg.mk" Index: pkgsrc/devel/R-roxygen2/distinfo diff -u pkgsrc/devel/R-roxygen2/distinfo:1.4 pkgsrc/devel/R-roxygen2/distinfo:1.5 --- pkgsrc/devel/R-roxygen2/distinfo:1.4 Tue Oct 26 10:14:08 2021 +++ pkgsrc/devel/R-roxygen2/distinfo Sat Apr 30 14:39:03 2022 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.4 2021/10/26 10:14:08 nia Exp $ +$NetBSD: distinfo,v 1.5 2022/04/30 14:39:03 mef Exp $ -BLAKE2s (R/roxygen2_7.1.1.tar.gz) = 54f7e30d5b2789591314ea0f9aec16a5fccb25573dbc5e4b28490c7d7fbffe00 -SHA512 (R/roxygen2_7.1.1.tar.gz) = f6674039bc369494cd63385f567cd68674e75463ec98ab08696c3ddd3375ba44fa09ebbe78c308dcd7295414b3ebc0509ddbbf9968ce6e1219a22285028c3642 -Size (R/roxygen2_7.1.1.tar.gz) = 254118 bytes +BLAKE2s (R/roxygen2_7.1.2.tar.gz) = 7355448cda19e5f878c5b7cfe22e49d9bba2be31ae12e7deffff819c830c1cfc +SHA512 (R/roxygen2_7.1.2.tar.gz) = 8ee3194c580d0cd4c36d01ccd290e76cf72b0b0943159634bd4ea93fc7c2f11e6777b936115948e13583eef4af1fc89f18c3153c27c195ebc79496bd94c5ca44 +Size (R/roxygen2_7.1.2.tar.gz) = 267337 bytes --_----------=_1651329543166840--