Date: Sun, 9 Aug 2015 21:46:55 +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: r393829 - in head/ftp: . R-cran-curl Message-ID: <201508092146.t79LktlA053533@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: tota Date: Sun Aug 9 21:46:54 2015 New Revision: 393829 URL: https://svnweb.freebsd.org/changeset/ports/393829 Log: - Add new port: ftp/R-cran-curl The curl() and curl_download() functions provide highly configurable drop-in replacements for base url() and download.file() with better performance, support for encryption (https://, ftps://), 'gzip' compression, authentication, and other 'libcurl' goodies. The core of the package implements a framework for performing fully customized requests where data can be processed either in memory, on disk, or streaming via the callback or connection interfaces. Some knowledge of 'libcurl' is recommended; for a more-user-friendly web client see the 'httr' package which builds on this package with HTTP specific tools and logic. WWW: https://cran.r-project.org/web/packages/curl/ Added: head/ftp/R-cran-curl/ head/ftp/R-cran-curl/Makefile (contents, props changed) head/ftp/R-cran-curl/distinfo (contents, props changed) head/ftp/R-cran-curl/pkg-descr (contents, props changed) Modified: head/ftp/Makefile Modified: head/ftp/Makefile ============================================================================== --- head/ftp/Makefile Sun Aug 9 20:49:37 2015 (r393828) +++ head/ftp/Makefile Sun Aug 9 21:46:54 2015 (r393829) @@ -4,6 +4,7 @@ COMMENT = FTP client and server utilities SUBDIR += R-cran-RCurl + SUBDIR += R-cran-curl SUBDIR += atftp SUBDIR += axel SUBDIR += bareftp Added: head/ftp/R-cran-curl/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/ftp/R-cran-curl/Makefile Sun Aug 9 21:46:54 2015 (r393829) @@ -0,0 +1,19 @@ +# Created by: TAKATSU Tomonari <tota@FreeBSD.org> +# $FreeBSD$ + +PORTNAME= curl +PORTVERSION= 0.9.2 +CATEGORIES= ftp +DISTNAME= ${PORTNAME}_${PORTVERSION} + +MAINTAINER= tota@FreeBSD.org +COMMENT= Modern and Flexible Web Client for R + +LICENSE= MIT + +BUILD_DEPENDS= ${LOCALBASE}/include/curl/curl.h:${PORTSDIR}/ftp/curl +LIB_DEPENDS= libcurl.so:${PORTSDIR}/ftp/curl + +USES= cran:auto-plist + +.include <bsd.port.mk> Added: head/ftp/R-cran-curl/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/ftp/R-cran-curl/distinfo Sun Aug 9 21:46:54 2015 (r393829) @@ -0,0 +1,2 @@ +SHA256 (curl_0.9.2.tar.gz) = a6fe7126586cb9dee7128884b41667f68637c45931313628e475b27960efc966 +SIZE (curl_0.9.2.tar.gz) = 244688 Added: head/ftp/R-cran-curl/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/ftp/R-cran-curl/pkg-descr Sun Aug 9 21:46:54 2015 (r393829) @@ -0,0 +1,12 @@ +The curl() and curl_download() functions provide highly configurable +drop-in replacements for base url() and download.file() with better +performance, support for encryption (https://, ftps://), 'gzip' +compression, authentication, and other 'libcurl' goodies. The core +of the package implements a framework for performing fully customized +requests where data can be processed either in memory, on disk, or +streaming via the callback or connection interfaces. Some knowledge +of 'libcurl' is recommended; for a more-user-friendly web client +see the 'httr' package which builds on this package with HTTP +specific tools and logic. + +WWW: https://cran.r-project.org/web/packages/curl/
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201508092146.t79LktlA053533>