From owner-svn-ports-head@freebsd.org Fri Apr 27 03:25:18 2018 Return-Path: Delivered-To: svn-ports-head@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 18B81FBF492; Fri, 27 Apr 2018 03:25:18 +0000 (UTC) (envelope-from tota@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 BE4D77BCD7; Fri, 27 Apr 2018 03:25:17 +0000 (UTC) (envelope-from tota@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 B471F21169; Fri, 27 Apr 2018 03:25:17 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w3R3PHqZ099629; Fri, 27 Apr 2018 03:25:17 GMT (envelope-from tota@FreeBSD.org) Received: (from tota@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w3R3PHkg099625; Fri, 27 Apr 2018 03:25:17 GMT (envelope-from tota@FreeBSD.org) Message-Id: <201804270325.w3R3PHkg099625@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tota set sender to tota@FreeBSD.org using -f From: TAKATSU Tomonari Date: Fri, 27 Apr 2018 03:25:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r468395 - in head/databases: . R-cran-RPostgreSQL X-SVN-Group: ports-head X-SVN-Commit-Author: tota X-SVN-Commit-Paths: in head/databases: . R-cran-RPostgreSQL X-SVN-Commit-Revision: 468395 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 27 Apr 2018 03:25:18 -0000 Author: tota Date: Fri Apr 27 03:25:17 2018 New Revision: 468395 URL: https://svnweb.freebsd.org/changeset/ports/468395 Log: - Add new port: databases/R-cran-RPostgreSQL Database interface and 'PostgreSQL' driver for 'R'. This package provides a Database Interface 'DBI' compliant driver for 'R' to access 'PostgreSQL' database systems. In order to build and install this package from source, 'PostgreSQL' itself must be present your system to provide 'PostgreSQL' functionality via its libraries and header files. These files are provided as 'postgresql-devel' package under some Linux distributions. On 'macOS' and 'Microsoft Windows' system the attached 'libpq' library source will be used. WWW: https://cran.r-project.org/web/packages/RPostgreSQL/ Added: head/databases/R-cran-RPostgreSQL/ head/databases/R-cran-RPostgreSQL/Makefile (contents, props changed) head/databases/R-cran-RPostgreSQL/distinfo (contents, props changed) head/databases/R-cran-RPostgreSQL/pkg-descr (contents, props changed) Modified: head/databases/Makefile Modified: head/databases/Makefile ============================================================================== --- head/databases/Makefile Fri Apr 27 01:46:45 2018 (r468394) +++ head/databases/Makefile Fri Apr 27 03:25:17 2018 (r468395) @@ -5,6 +5,7 @@ SUBDIR += R-cran-DBI SUBDIR += R-cran-RMySQL + SUBDIR += R-cran-RPostgreSQL SUBDIR += R-cran-RSQLite SUBDIR += R-cran-RSQLite.extfuns SUBDIR += R-cran-sqldf Added: head/databases/R-cran-RPostgreSQL/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/R-cran-RPostgreSQL/Makefile Fri Apr 27 03:25:17 2018 (r468395) @@ -0,0 +1,20 @@ +# $FreeBSD$ + +PORTNAME= RPostgreSQL +DISTVERSION= 0.6-2 +CATEGORIES= databases +DISTNAME= ${PORTNAME}_${DISTVERSION} + +MAINTAINER= tota@FreeBSD.org +COMMENT= R Interface to the 'PostgreSQL' Database System + +LICENSE= GPLv2 +LICENSE_FILE= ${WRKSRC}/LICENSE + +USES= cran:auto-plist,compiles pgsql + +CRAN_DEPENDS= R-cran-DBI>=0.3:databases/R-cran-DBI +BUILD_DEPENDS= ${CRAN_DEPENDS} +RUN_DEPENDS= ${CRAN_DEPENDS} + +.include Added: head/databases/R-cran-RPostgreSQL/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/R-cran-RPostgreSQL/distinfo Fri Apr 27 03:25:17 2018 (r468395) @@ -0,0 +1,3 @@ +TIMESTAMP = 1524790997 +SHA256 (RPostgreSQL_0.6-2.tar.gz) = 080118647208bfa2621bcaac0d324891cc513e07618fa22e3c50ec2050e1b0d5 +SIZE (RPostgreSQL_0.6-2.tar.gz) = 579968 Added: head/databases/R-cran-RPostgreSQL/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/R-cran-RPostgreSQL/pkg-descr Fri Apr 27 03:25:17 2018 (r468395) @@ -0,0 +1,10 @@ +Database interface and 'PostgreSQL' driver for 'R'. This package +provides a Database Interface 'DBI' compliant driver for 'R' to +access 'PostgreSQL' database systems. In order to build and install +this package from source, 'PostgreSQL' itself must be present your +system to provide 'PostgreSQL' functionality via its libraries and +header files. These files are provided as 'postgresql-devel' package +under some Linux distributions. On 'macOS' and 'Microsoft Windows' +system the attached 'libpq' library source will be used. + +WWW: https://cran.r-project.org/web/packages/RPostgreSQL/