Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 22 Aug 2012 18:09:58 +0000 (UTC)
From:      Steven Kreuzer <skreuzer@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r302954 - in head/databases: . R-cran-sqldf
Message-ID:  <201208221809.q7MI9woF073167@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: skreuzer
Date: Wed Aug 22 18:09:57 2012
New Revision: 302954
URL: http://svn.freebsd.org/changeset/ports/302954

Log:
  sqldf is an R package for runing SQL statements on R data frames, optimized
  for convenience. The user simply specifies an SQL statement in R using data
  frame names in place of table names and a database with appropriate table
  layouts/schema is automatically created, the data frames are automatically
  loaded into the database, the specified SQL statement is performed, the
  result is read back into R and the database is deleted all automatically
  behind the scenes making the database's existence transparent to the user
  who only specifies the SQL statement.
  
  WWW:    https://code.google.com/p/sqldf/

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

Modified: head/databases/Makefile
==============================================================================
--- head/databases/Makefile	Wed Aug 22 18:06:33 2012	(r302953)
+++ head/databases/Makefile	Wed Aug 22 18:09:57 2012	(r302954)
@@ -7,6 +7,7 @@
     SUBDIR += R-cran-RMySQL
     SUBDIR += R-cran-RSQLite
     SUBDIR += R-cran-RSQLite.extfuns
+    SUBDIR += R-cran-sqldf
     SUBDIR += WWWdb
     SUBDIR += adminer
     SUBDIR += adodb

Added: head/databases/R-cran-sqldf/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/databases/R-cran-sqldf/Makefile	Wed Aug 22 18:09:57 2012	(r302954)
@@ -0,0 +1,29 @@
+# New ports collection makefile for:	R-cran-sqldf
+# Date created:		2012-08-21
+# Whom:			Steven Kreuzer <skreuzer@FreeBSD.org>
+#
+# $FreeBSD$
+#
+
+PORTNAME=	sqldf
+DISTVERSION=	0.4-6.4
+CATEGORIES=	databases
+DISTNAME=	${PORTNAME}_${DISTVERSION}
+
+MAINTAINER=	skreuzer@FreeBSD.org
+COMMENT=	SQL select on R data frames
+
+LICENSE=	GPLv2
+
+BUILD_DEPENDS=	R-cran-proto>=0.3.9.2_6:${PORTSDIR}/devel/R-cran-proto \
+		R-cran-chron>=2.3.42:${PORTSDIR}/devel/R-cran-chron \
+		R-cran-gsubfn>=0.6.4:${PORTSDIR}/devel/R-cran-gsubfn \
+		R-cran-DBI>=0.2.5_6:${PORTSDIR}/databases/R-cran-DBI \
+		R-cran-RSQLite>=0.11.1:${PORTSDIR}/databases/R-cran-RSQLite \
+		R-cran-RSQLite.extfuns>=0.0.1:${PORTSDIR}/databases/R-cran-RSQLite.extfuns
+RUN_DEPENDS:=	${BUILD_DEPENDS}
+
+USE_R_MOD=	yes
+R_MOD_AUTOPLIST=	yes
+
+.include <bsd.port.mk>

Added: head/databases/R-cran-sqldf/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/databases/R-cran-sqldf/distinfo	Wed Aug 22 18:09:57 2012	(r302954)
@@ -0,0 +1,2 @@
+SHA256 (sqldf_0.4-6.4.tar.gz) = 6c51e4e48b93310f765c661a1756fe068629da775248d38a98c38f5b6f7511c4
+SIZE (sqldf_0.4-6.4.tar.gz) = 26817

Added: head/databases/R-cran-sqldf/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/databases/R-cran-sqldf/pkg-descr	Wed Aug 22 18:09:57 2012	(r302954)
@@ -0,0 +1,10 @@
+sqldf is an R package for runing SQL statements on R data frames, optimized for
+convenience. The user simply specifies an SQL statement in R using data frame
+names in place of table names and a database with appropriate table
+layouts/schema is automatically created, the data frames are automatically
+loaded into the database, the specified SQL statement is performed, the result
+is read back into R and the database is deleted all automatically behind the
+scenes making the database's existence transparent to the user who only
+specifies the SQL statement.
+
+WWW:    https://code.google.com/p/sqldf/



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