From owner-svn-ports-all@freebsd.org Fri Aug 31 14:11:46 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3762FFCCAFD; Fri, 31 Aug 2018 14:11:46 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id DFD0A73F2F; Fri, 31 Aug 2018 14:11:45 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id A89081C41C; Fri, 31 Aug 2018 14:11:45 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w7VEBjcX017449; Fri, 31 Aug 2018 14:11:45 GMT (envelope-from wen@FreeBSD.org) Received: (from wen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w7VEBiYp017445; Fri, 31 Aug 2018 14:11:44 GMT (envelope-from wen@FreeBSD.org) Message-Id: <201808311411.w7VEBiYp017445@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: wen set sender to wen@FreeBSD.org using -f From: Wen Heping Date: Fri, 31 Aug 2018 14:11:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r478557 - in head/math: . R-cran-numbers X-SVN-Group: ports-head X-SVN-Commit-Author: wen X-SVN-Commit-Paths: in head/math: . R-cran-numbers X-SVN-Commit-Revision: 478557 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 31 Aug 2018 14:11:46 -0000 Author: wen Date: Fri Aug 31 14:11:44 2018 New Revision: 478557 URL: https://svnweb.freebsd.org/changeset/ports/478557 Log: Provides number-theoretic functions for factorization, prime numbers, twin primes, primitive roots, modular logarithm and inverses, extended GCD, Farey series and continuous fractions. Includes Legendre and Jacobi symbols, some divisor functions, Euler's Phi function, etc. WWW: https://cran.r-project.org/web/packages/numbers/ Added: head/math/R-cran-numbers/ head/math/R-cran-numbers/Makefile (contents, props changed) head/math/R-cran-numbers/distinfo (contents, props changed) head/math/R-cran-numbers/pkg-descr (contents, props changed) Modified: head/math/Makefile Modified: head/math/Makefile ============================================================================== --- head/math/Makefile Fri Aug 31 13:36:47 2018 (r478556) +++ head/math/Makefile Fri Aug 31 14:11:44 2018 (r478557) @@ -74,6 +74,7 @@ SUBDIR += R-cran-nnls SUBDIR += R-cran-nortest SUBDIR += R-cran-numDeriv + SUBDIR += R-cran-numbers SUBDIR += R-cran-outliers SUBDIR += R-cran-pbkrtest SUBDIR += R-cran-pls Added: head/math/R-cran-numbers/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/R-cran-numbers/Makefile Fri Aug 31 14:11:44 2018 (r478557) @@ -0,0 +1,17 @@ +# $FreeBSD$ + +PORTNAME= numbers +DISTVERSION= 0.7-1 +CATEGORIES= math +DISTNAME= ${PORTNAME}_${DISTVERSION} + +MAINTAINER= wen@FreeBSD.org +COMMENT= Number-Theoretic Functions + +LICENSE= GPLv3+ + +RUN_DEPENDS= R-cran-gmp>=0.5.1:math/R-cran-gmp + +USES= cran:auto-plist + +.include Added: head/math/R-cran-numbers/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/R-cran-numbers/distinfo Fri Aug 31 14:11:44 2018 (r478557) @@ -0,0 +1,3 @@ +TIMESTAMP = 1535723558 +SHA256 (numbers_0.7-1.tar.gz) = be8bc020b730f6f86d7490f22e5e95ba952de68e47030cc680c342692f11aacc +SIZE (numbers_0.7-1.tar.gz) = 41870 Added: head/math/R-cran-numbers/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/R-cran-numbers/pkg-descr Fri Aug 31 14:11:44 2018 (r478557) @@ -0,0 +1,6 @@ +Provides number-theoretic functions for factorization, prime numbers, +twin primes, primitive roots, modular logarithm and inverses, extended +GCD, Farey series and continuous fractions. Includes Legendre and Jacobi +symbols, some divisor functions, Euler's Phi function, etc. + +WWW: https://cran.r-project.org/web/packages/numbers/