Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 11 Jul 2020 11:40:16 +0000 (UTC)
From:      TAKATSU Tomonari <tota@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r541962 - in head/math: . R-cran-conquer
Message-ID:  <202007111140.06BBeG5K088715@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: tota
Date: Sat Jul 11 11:40:15 2020
New Revision: 541962
URL: https://svnweb.freebsd.org/changeset/ports/541962

Log:
  - Add new port: math/R-cran-conquer
  
    Fast and accurate convolution-type smoothed quantile regression.
    Implemented using Barzilai-Borwein gradient descent with a Huber
    regression warm start. Construct confidence intervals for regression
    coefficients using multiplier bootstrap.
  
    WWW: https://cran.r-project.org/web/packages/conquer/

Added:
  head/math/R-cran-conquer/
  head/math/R-cran-conquer/Makefile   (contents, props changed)
  head/math/R-cran-conquer/distinfo   (contents, props changed)
  head/math/R-cran-conquer/pkg-descr   (contents, props changed)
Modified:
  head/math/Makefile

Modified: head/math/Makefile
==============================================================================
--- head/math/Makefile	Sat Jul 11 11:40:09 2020	(r541961)
+++ head/math/Makefile	Sat Jul 11 11:40:15 2020	(r541962)
@@ -10,6 +10,7 @@
     SUBDIR += R-cran-ADGofTest
     SUBDIR += R-cran-Amelia
     SUBDIR += R-cran-BsMD
+    SUBDIR += R-cran-conquer
     SUBDIR += R-cran-CVST
     SUBDIR += R-cran-ChangeAnomalyDetection
     SUBDIR += R-cran-DEoptimR

Added: head/math/R-cran-conquer/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/math/R-cran-conquer/Makefile	Sat Jul 11 11:40:15 2020	(r541962)
@@ -0,0 +1,21 @@
+# $FreeBSD$
+
+PORTNAME=	conquer
+PORTVERSION=	1.0.1
+CATEGORIES=	math
+DISTNAME=	${PORTNAME}_${PORTVERSION}
+
+MAINTAINER=	tota@FreeBSD.org
+COMMENT=	Convolution-Type Smoothed Quantile Regression
+
+LICENSE=	GPLv3
+
+CRAN_DEPENDS=	R-cran-Rcpp>=1.0.3:devel/R-cran-Rcpp \
+		R-cran-matrixStats>0:math/R-cran-matrixStats \
+		R-cran-RcppArmadillo>0:math/R-cran-RcppArmadillo
+BUILD_DEPENDS=	${CRAN_DEPENDS}
+RUN_DEPENDS=	${CRAN_DEPENDS}
+
+USES=		compiler:c++11-lang cran:auto-plist,compiles
+
+.include <bsd.port.mk>

Added: head/math/R-cran-conquer/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/math/R-cran-conquer/distinfo	Sat Jul 11 11:40:15 2020	(r541962)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1594458481
+SHA256 (conquer_1.0.1.tar.gz) = 6b93f824697b35ad76a4330c79fb4fe05c97dce130e7c8da2aaa5efdf869f1b0
+SIZE (conquer_1.0.1.tar.gz) = 12550

Added: head/math/R-cran-conquer/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/math/R-cran-conquer/pkg-descr	Sat Jul 11 11:40:15 2020	(r541962)
@@ -0,0 +1,6 @@
+Fast and accurate convolution-type smoothed quantile regression.
+Implemented using Barzilai-Borwein gradient descent with a Huber
+regression warm start. Construct confidence intervals for regression
+coefficients using multiplier bootstrap.
+
+WWW: https://cran.r-project.org/web/packages/conquer/



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202007111140.06BBeG5K088715>