Received: by mail.netbsd.org (Postfix, from userid 605) id 5B4CE84E34; Wed, 31 Jul 2019 13:11:30 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id D76F184E33 for ; Wed, 31 Jul 2019 13:11:29 +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 13iIl0mHMpvw for ; Wed, 31 Jul 2019 13:11:29 +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 4507C84C81 for ; Wed, 31 Jul 2019 13:11:29 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 3EFB7FBF4; Wed, 31 Jul 2019 13:11:29 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1564578689159690" MIME-Version: 1.0 Date: Wed, 31 Jul 2019 13:11:29 +0000 From: "Brook Milligan" Subject: CVS commit: pkgsrc To: pkgsrc-changes@NetBSD.org Reply-To: brook@netbsd.org X-Mailer: log_accum Message-Id: <20190731131129.3EFB7FBF4@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1564578689159690 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: brook Date: Wed Jul 31 13:11:29 UTC 2019 Modified Files: pkgsrc/doc: CHANGES-2019 pkgsrc/math: Makefile Added Files: pkgsrc/math/R-backports: DESCR Makefile distinfo Log Message: R-backports: initial commit. Functions introduced or changed since R v3.0.0 are re-implemented in this package. The backports are conditionally exported in order to let R resolve the function name to either the implemented backport, or the respective base version, if available. Package developers can make use of new functions or arguments by selectively importing specific backports to support older installations. To generate a diff of this commit: cvs rdiff -u -r1.3103 -r1.3104 pkgsrc/doc/CHANGES-2019 cvs rdiff -u -r1.413 -r1.414 pkgsrc/math/Makefile cvs rdiff -u -r0 -r1.1 pkgsrc/math/R-backports/DESCR \ pkgsrc/math/R-backports/Makefile pkgsrc/math/R-backports/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1564578689159690 Content-Disposition: inline Content-Length: 3124 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/doc/CHANGES-2019 diff -u pkgsrc/doc/CHANGES-2019:1.3103 pkgsrc/doc/CHANGES-2019:1.3104 --- pkgsrc/doc/CHANGES-2019:1.3103 Wed Jul 31 13:09:36 2019 +++ pkgsrc/doc/CHANGES-2019 Wed Jul 31 13:11:28 2019 @@ -1,4 +1,4 @@ -$NetBSD: CHANGES-2019,v 1.3103 2019/07/31 13:09:36 brook Exp $ +$NetBSD: CHANGES-2019,v 1.3104 2019/07/31 13:11:28 brook Exp $ Changes to the packages collection and infrastructure in 2019: @@ -5060,3 +5060,4 @@ Changes to the packages collection and i Added math/R-RandomFieldsUtils version 0.5.3 [brook 2019-07-31] Added math/R-RcmdrMisc version 2.5.1 [brook 2019-07-31] Added math/R-acepack version 1.4.1 [brook 2019-07-31] + Added math/R-backports version 1.1.4 [brook 2019-07-31] Index: pkgsrc/math/Makefile diff -u pkgsrc/math/Makefile:1.413 pkgsrc/math/Makefile:1.414 --- pkgsrc/math/Makefile:1.413 Wed Jul 31 13:09:36 2019 +++ pkgsrc/math/Makefile Wed Jul 31 13:11:28 2019 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.413 2019/07/31 13:09:36 brook Exp $ +# $NetBSD: Makefile,v 1.414 2019/07/31 13:11:28 brook Exp $ COMMENT= Mathematics @@ -31,6 +31,7 @@ SUBDIR+= R-abind SUBDIR+= R-acepack SUBDIR+= R-akima SUBDIR+= R-aplpack +SUBDIR+= R-backports SUBDIR+= R-bbmle SUBDIR+= R-bitops SUBDIR+= R-car Added files: Index: pkgsrc/math/R-backports/DESCR diff -u /dev/null pkgsrc/math/R-backports/DESCR:1.1 --- /dev/null Wed Jul 31 13:11:29 2019 +++ pkgsrc/math/R-backports/DESCR Wed Jul 31 13:11:28 2019 @@ -0,0 +1,6 @@ +Functions introduced or changed since R v3.0.0 are re-implemented in +this package. The backports are conditionally exported in order to let +R resolve the function name to either the implemented backport, or the +respective base version, if available. Package developers can make use +of new functions or arguments by selectively importing specific +backports to support older installations. Index: pkgsrc/math/R-backports/Makefile diff -u /dev/null pkgsrc/math/R-backports/Makefile:1.1 --- /dev/null Wed Jul 31 13:11:29 2019 +++ pkgsrc/math/R-backports/Makefile Wed Jul 31 13:11:28 2019 @@ -0,0 +1,16 @@ +# $NetBSD: Makefile,v 1.1 2019/07/31 13:11:28 brook Exp $ + +CATEGORIES= math R + +MAINTAINER= pkgsrc-users@NetBSD.org +HOMEPAGE= ${R_HOMEPAGE_BASE}/backports/ +COMMENT= Reimplementations of functions introduced since R-3.0.0 +LICENSE= gnu-gpl-v2 + +R_PKGNAME= backports +R_PKGVER= 1.1.4 + +USE_LANGUAGES= c + +.include "../../math/R/Makefile.extension" +.include "../../mk/bsd.pkg.mk" Index: pkgsrc/math/R-backports/distinfo diff -u /dev/null pkgsrc/math/R-backports/distinfo:1.1 --- /dev/null Wed Jul 31 13:11:29 2019 +++ pkgsrc/math/R-backports/distinfo Wed Jul 31 13:11:29 2019 @@ -0,0 +1,6 @@ +$NetBSD: distinfo,v 1.1 2019/07/31 13:11:29 brook Exp $ + +SHA1 (R/backports_1.1.4.tar.gz) = 5928c8b69a53339f0e1ebce8771fd7a21f7bf819 +RMD160 (R/backports_1.1.4.tar.gz) = 5106b05d8a016d0446f7468335d027ae6ec363ba +SHA512 (R/backports_1.1.4.tar.gz) = 323d7761b113cd2b21f61c4855b9ed1ce0f472033175a689f3e3c545aef5c8103f1a23b55f6a4db2e88b18338903ec3ef0888bc7a7d1dbd30bc3741582186b15 +Size (R/backports_1.1.4.tar.gz) = 13859 bytes --_----------=_1564578689159690--