Received: by mail.netbsd.org (Postfix, from userid 605) id 4346B84ECF; Sun, 18 Dec 2022 02:11:01 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 7322084E98 for ; Sun, 18 Dec 2022 02:11:00 +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 9k3WHtLCJeZY for ; Sun, 18 Dec 2022 02:10:59 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id D7E2784D26 for ; Sun, 18 Dec 2022 02:10:59 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id CC45FFA90; Sun, 18 Dec 2022 02:10:59 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1671329459182130" MIME-Version: 1.0 Date: Sun, 18 Dec 2022 02:10:59 +0000 From: "Makoto Fujiwara" Subject: CVS commit: pkgsrc/devel/R-foreach To: pkgsrc-changes@NetBSD.org Reply-To: mef@netbsd.org X-Mailer: log_accum Message-Id: <20221218021059.CC45FFA90@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1671329459182130 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: mef Date: Sun Dec 18 02:10:59 UTC 2022 Added Files: pkgsrc/devel/R-foreach: DESCR Makefile distinfo Log Message: (devel/R-foreach) import R-foreach-1.5.2 Support for the foreach looping construct. Foreach is an idiom that allows for iterating over elements in a collection, without the use of an explicit loop counter. This package in particular is intended to be used for its return value, rather than for its side effects. In that sense, it is similar to the standard lapply function, but doesn't require the evaluation of a function. Using foreach without side effects also facilitates executing the loop in parallel. To generate a diff of this commit: cvs rdiff -u -r0 -r1.1 pkgsrc/devel/R-foreach/DESCR \ pkgsrc/devel/R-foreach/Makefile pkgsrc/devel/R-foreach/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1671329459182130 Content-Disposition: inline Content-Length: 1859 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Added files: Index: pkgsrc/devel/R-foreach/DESCR diff -u /dev/null pkgsrc/devel/R-foreach/DESCR:1.1 --- /dev/null Sun Dec 18 02:10:59 2022 +++ pkgsrc/devel/R-foreach/DESCR Sun Dec 18 02:10:59 2022 @@ -0,0 +1,7 @@ +Support for the foreach looping construct. Foreach is an idiom that +allows for iterating over elements in a collection, without the use of +an explicit loop counter. This package in particular is intended to +be used for its return value, rather than for its side effects. In +that sense, it is similar to the standard lapply function, but doesn't +require the evaluation of a function. Using foreach without side +effects also facilitates executing the loop in parallel. Index: pkgsrc/devel/R-foreach/Makefile diff -u /dev/null pkgsrc/devel/R-foreach/Makefile:1.1 --- /dev/null Sun Dec 18 02:10:59 2022 +++ pkgsrc/devel/R-foreach/Makefile Sun Dec 18 02:10:59 2022 @@ -0,0 +1,16 @@ +# $NetBSD: Makefile,v 1.1 2022/12/18 02:10:59 mef Exp $ + +R_PKGNAME= foreach +R_PKGVER= 1.5.2 +CATEGORIES= devel + +MAINTAINER= pkgsrc-users@NetBSD.org +COMMENT= Provides Foreach Looping Construct +LICENSE= apache-2.0 + +DEPENDS+= R-iterators>=1.0.14:../../devel/R-iterators + +USE_LANGUAGES= # none + +.include "../../math/R/Makefile.extension" +.include "../../mk/bsd.pkg.mk" Index: pkgsrc/devel/R-foreach/distinfo diff -u /dev/null pkgsrc/devel/R-foreach/distinfo:1.1 --- /dev/null Sun Dec 18 02:10:59 2022 +++ pkgsrc/devel/R-foreach/distinfo Sun Dec 18 02:10:59 2022 @@ -0,0 +1,5 @@ +$NetBSD: distinfo,v 1.1 2022/12/18 02:10:59 mef Exp $ + +BLAKE2s (R/foreach_1.5.2.tar.gz) = ce589f90b01917068eef509293c8ade6a73ad2459b38b955a89248b3e4786666 +SHA512 (R/foreach_1.5.2.tar.gz) = 27d7a54c0441d28dd8317435d3fbb37b13e0e5d6f9876839a88f7a67fd8f1f815b6ab102f8a91e5671d95856e3c8501bf4d3743d5dec04771d3791e907906690 +Size (R/foreach_1.5.2.tar.gz) = 89758 bytes --_----------=_1671329459182130--