Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 2696984ED3 for ; Sat, 3 Jun 2023 13:51:57 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id ZEpUWeR2lXUa for ; Sat, 3 Jun 2023 13:51:56 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 8C7B484CF2 for ; Sat, 3 Jun 2023 13:51:56 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 85BD7FA88; Sat, 3 Jun 2023 13:51:56 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_16858003167810" MIME-Version: 1.0 Date: Sat, 3 Jun 2023 13:51:56 +0000 From: "Makoto Fujiwara" Subject: CVS commit: pkgsrc/textproc/R-formatR To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: mef@netbsd.org X-Mailer: log_accum Message-Id: <20230603135156.85BD7FA88@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_16858003167810 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: mef Date: Sat Jun 3 13:51:56 UTC 2023 Modified Files: pkgsrc/textproc/R-formatR: Makefile distinfo Log Message: (textproc/R-foramtR) Updated 1.11 to 1.14 https://github.com/yihui/formatR/releases/ 1.14 - tidy_source() supports the := operator now (which is widely used in data.table). 1.13 - tidy_source() supports anonymous functions of the form \(args) expr for R >= 4.1.0 now (thanks, @notPlancha, #98). 1.12 - Added a new argument pipe to tidy_source(). If pipe = TRUE, it will convert the magrittr pipe %>% to the base R pipe operator |>. - Added a function tidy_rstudio() to reformat R code in the RStudio editor. - Added a function tidy_pipe() to substitute %>% with |> (currently works only in RStudio). To generate a diff of this commit: cvs rdiff -u -r1.7 -r1.8 pkgsrc/textproc/R-formatR/Makefile cvs rdiff -u -r1.8 -r1.9 pkgsrc/textproc/R-formatR/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_16858003167810 Content-Disposition: inline Content-Length: 1526 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/textproc/R-formatR/Makefile diff -u pkgsrc/textproc/R-formatR/Makefile:1.7 pkgsrc/textproc/R-formatR/Makefile:1.8 --- pkgsrc/textproc/R-formatR/Makefile:1.7 Sat Sep 4 12:45:00 2021 +++ pkgsrc/textproc/R-formatR/Makefile Sat Jun 3 13:51:56 2023 @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.7 2021/09/04 12:45:00 mef Exp $ +# $NetBSD: Makefile,v 1.8 2023/06/03 13:51:56 mef Exp $ R_PKGNAME= formatR -R_PKGVER= 1.11 +R_PKGVER= 1.14 CATEGORIES= textproc MAINTAINER= pkgsrc-users@NetBSD.org Index: pkgsrc/textproc/R-formatR/distinfo diff -u pkgsrc/textproc/R-formatR/distinfo:1.8 pkgsrc/textproc/R-formatR/distinfo:1.9 --- pkgsrc/textproc/R-formatR/distinfo:1.8 Tue Oct 26 11:21:30 2021 +++ pkgsrc/textproc/R-formatR/distinfo Sat Jun 3 13:51:56 2023 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.8 2021/10/26 11:21:30 nia Exp $ +$NetBSD: distinfo,v 1.9 2023/06/03 13:51:56 mef Exp $ -BLAKE2s (R/formatR_1.11.tar.gz) = 79d6e307f3d054fca07aa35c094ce5d38f84b11b944ac561df5018e325c34a6c -SHA512 (R/formatR_1.11.tar.gz) = 448eb939300e060b5cf4ae5b2c3b5067469600d7a888de8725bf68fa3ec503419bfa5e2a969e42b295ed823408e9752597478432468758fc98af12ae1943937f -Size (R/formatR_1.11.tar.gz) = 95158 bytes +BLAKE2s (R/formatR_1.14.tar.gz) = ff07fb5ff191a7dfb57bb25b45d61e2018f36bd0a6b055fc2500a977b6d60548 +SHA512 (R/formatR_1.14.tar.gz) = bbf5791f677f843fbe63e817eb54e8f727103ca1cc6e92f403380ab4812c07bc7c5b3f1db0a848be986b525ee5c71121079a5f0f688fbd2c9978555482a91197 +Size (R/formatR_1.14.tar.gz) = 96077 bytes --_----------=_16858003167810--