databases/R-cran-sqldf: update to version 0.4-11

Changes:
  * modifications for RSQLite 2.0.0
  * read.csv.sql now accepts https and ftps
This commit is contained in:
Steven Kreuzer 2022-05-07 17:47:08 +00:00
parent da15d98200
commit a9086700db
No known key found for this signature in database
GPG key ID: 66BAB4B6E0D6F907
3 changed files with 18 additions and 18 deletions

View file

@ -1,8 +1,7 @@
# Created by: Steven Kreuzer <skreuzer@FreeBSD.org> # Created by: Steven Kreuzer <skreuzer@FreeBSD.org>
PORTNAME= sqldf PORTNAME= sqldf
DISTVERSION= 0.4-7.1 DISTVERSION= 0.4-11
PORTREVISION= 5
CATEGORIES= databases CATEGORIES= databases
DISTNAME= ${PORTNAME}_${DISTVERSION} DISTNAME= ${PORTNAME}_${DISTVERSION}
@ -11,13 +10,13 @@ COMMENT= SQL select on R data frames
LICENSE= GPLv2 LICENSE= GPLv2
BUILD_DEPENDS= R-cran-proto>=0.3.9.2_6:devel/R-cran-proto \ CRAN_DEPENDS= R-cran-proto>=0.3.9.2_6:devel/R-cran-proto \
R-cran-chron>=2.3.42:devel/R-cran-chron \ R-cran-chron>=2.3.42:devel/R-cran-chron \
R-cran-gsubfn>=0.6.4:devel/R-cran-gsubfn \ R-cran-gsubfn>=0.6.4:devel/R-cran-gsubfn \
R-cran-DBI>=0.2.5_6:databases/R-cran-DBI \ R-cran-DBI>=1.1.0:databases/R-cran-DBI \
R-cran-RSQLite>=0.11.1:databases/R-cran-RSQLite \ R-cran-RSQLite>=2.2.14:databases/R-cran-RSQLite
R-cran-RSQLite.extfuns>=0.0.1:databases/R-cran-RSQLite.extfuns BUILD_DEPENDS= ${CRAN_DEPENDS}
RUN_DEPENDS:= ${BUILD_DEPENDS} RUN_DEPENDS= ${CRAN_DEPENDS}
USES= cran:auto-plist USES= cran:auto-plist

View file

@ -1,2 +1,3 @@
SHA256 (sqldf_0.4-7.1.tar.gz) = e2b3d1eaf61fb4b7eda72a83f2718f1f683a4d52c565924ef406c235330fef0e TIMESTAMP = 1651944475
SIZE (sqldf_0.4-7.1.tar.gz) = 28418 SHA256 (sqldf_0.4-11.tar.gz) = cee979d4e8c67b4924655365d925a8d67104e62adf71741f645cdc5196de2260
SIZE (sqldf_0.4-11.tar.gz) = 63097

View file

@ -1,10 +1,10 @@
sqldf is an R package for runing SQL statements on R data frames, optimized for The sqldf() function is typically passed a single argument which is an SQL
convenience. The user simply specifies an SQL statement in R using data frame select statement where the table names are ordinary R data frame names. sqldf()
names in place of table names and a database with appropriate table transparently sets up a database, imports the data frames into that database,
layouts/schema is automatically created, the data frames are automatically performs the SQL select or other statement and returns the result using a
loaded into the database, the specified SQL statement is performed, the result heuristic to determine which class to assign to each column of the returned
is read back into R and the database is deleted all automatically behind the data frame. The sqldf() or read.csv.sql() functions can also be used to read
scenes making the database's existence transparent to the user who only filtered files into R even if the original files are larger than R itself can
specifies the SQL statement. handle. 'RSQLite', 'RH2', 'RMySQL' and 'RPostgreSQL' backends are supported.
WWW: https://code.google.com/p/sqldf WWW: https://cran.r-project.org/web/packages/sqldf/