diff options
author | wen <wen@pkgsrc.org> | 2018-07-07 12:15:38 +0000 |
---|---|---|
committer | wen <wen@pkgsrc.org> | 2018-07-07 12:15:38 +0000 |
commit | f561cc2657d492f3fb8fd9f2aee0adff47f5a0b2 (patch) | |
tree | a761c4ca63679c7f81a3302aba6252b53deea3e9 /math | |
parent | bfaed3acf6c2bd41a3f85792990d5f84b1551ba7 (diff) | |
download | pkgsrc-f561cc2657d492f3fb8fd9f2aee0adff47f5a0b2.tar.gz |
Update to 0.6.2
Upstream changes:
Version 0.6-2
o dbGetQuery do not return NULL.
o use registration mechanism to call native routines.
Version 0.5-3
o Update the libpq library so that the package can be compiled in new versions of R and macOS.
Version 0.5-2
o Support dbBegin() API
version 0.5-1 --2014-02-08
o Remove segmentationfault when NULL is passed as host argument.
o Conversion routine for raw in R and bytea in PostgreSQL
o Use accompanied libpq when either of libpq and header is not found on darwin
Version 0.5 -- 2013-10-12
o postgresqlWriteTable: send column names at COPY
o System library header search path for OS X 10.9 (Mavericks)
o Memory leak was reduced
o Close the socket on failure
Version 0.4 -- 2013-03-27
o Initial implementation of prepared statement
o Use system libpq library when available on OS X (darwin)
o Force ISO datestyle for PostgreSQL-R communication by default
o Time zone aware Timestamp POSIXct conversion
Version 0.3-3 -- 2012-10-05
o Bugfix on dbColumnInfo and others reproducible by gctorture(TRUE)
o Do not implicitly make new connections, which interfere with transaction.
o Change the notation of the LICENSE
Diffstat (limited to 'math')
-rw-r--r-- | math/R-RPostgreSQL/Makefile | 7 | ||||
-rw-r--r-- | math/R-RPostgreSQL/distinfo | 10 | ||||
-rw-r--r-- | math/R-RPostgreSQL/patches/patch-configure | 15 | ||||
-rw-r--r-- | math/R-RPostgreSQL/patches/patch-configure.in | 15 |
4 files changed, 8 insertions, 39 deletions
diff --git a/math/R-RPostgreSQL/Makefile b/math/R-RPostgreSQL/Makefile index ed3033a7408..309bcafe779 100644 --- a/math/R-RPostgreSQL/Makefile +++ b/math/R-RPostgreSQL/Makefile @@ -1,6 +1,5 @@ -# $NetBSD: Makefile,v 1.4 2016/10/09 21:42:00 wiz Exp $ +# $NetBSD: Makefile,v 1.5 2018/07/07 12:15:38 wen Exp $ -PKGREVISION= 3 CATEGORIES= math MASTER_SITES= ${MASTER_SITE_R_CRAN:=contrib/} @@ -10,9 +9,9 @@ COMMENT= R interface to the PostgreSQL database system LICENSE= gnu-gpl-v2 AND postgresql-license R_PKGNAME= RPostgreSQL -R_PKGVER= 0.3-2 +R_PKGVER= 0.6-2 -DEPENDS+= R-DBI>=0.2.5:../../math/R-DBI +DEPENDS+= R-DBI>=0.3:../../math/R-DBI USE_TOOLS+= sh REPLACE_SH+= ${WRKSRC}/inst/devTests/copyTest.sh diff --git a/math/R-RPostgreSQL/distinfo b/math/R-RPostgreSQL/distinfo index 58be685d330..7372467b0cb 100644 --- a/math/R-RPostgreSQL/distinfo +++ b/math/R-RPostgreSQL/distinfo @@ -1,8 +1,8 @@ -$NetBSD: distinfo,v 1.3 2015/11/03 23:33:27 agc Exp $ +$NetBSD: distinfo,v 1.4 2018/07/07 12:15:38 wen Exp $ -SHA1 (R/RPostgreSQL_0.3-2.tar.gz) = cffa6237894727008d7079e24ab3a561ae139816 -RMD160 (R/RPostgreSQL_0.3-2.tar.gz) = 4c53b8183716455100883545465d3437e2ef17f9 -SHA512 (R/RPostgreSQL_0.3-2.tar.gz) = ace2a34c564527f0fe7322f2208cc6f1dd70d3d9f1899fb7df425e7608f3aa6ea8fb2f12ea978cc3ba24880e7ca198946f34ffbfec6e6f48a8de17d8cd6956a7 -Size (R/RPostgreSQL_0.3-2.tar.gz) = 470695 bytes +SHA1 (R/RPostgreSQL_0.6-2.tar.gz) = 41034b13eeb6ecec56ff8385afbf062acc85e725 +RMD160 (R/RPostgreSQL_0.6-2.tar.gz) = 66fc1f1e5091bb8d3032301f3d33459d07bd5b12 +SHA512 (R/RPostgreSQL_0.6-2.tar.gz) = 8c032938a92e336b51abefae3aea9266e7d2b342cf6f1937db739d545f3ba4abaff28687d68c547f1f341b127f72b9cf1478ea2545d705f930055dcc930b3045 +Size (R/RPostgreSQL_0.6-2.tar.gz) = 579968 bytes SHA1 (patch-configure) = 6c73a381bc4ebf96466645902395b552e6abc21d SHA1 (patch-configure.in) = b9d242940d8ed1f24ec0456dc0f346c3fce2f33c diff --git a/math/R-RPostgreSQL/patches/patch-configure b/math/R-RPostgreSQL/patches/patch-configure deleted file mode 100644 index d1113272821..00000000000 --- a/math/R-RPostgreSQL/patches/patch-configure +++ /dev/null @@ -1,15 +0,0 @@ -$NetBSD: patch-configure,v 1.1.1.1 2012/04/15 17:57:36 brook Exp $ - -# see http://code.google.com/p/rpostgresql/issues/detail?id=39 - ---- configure.orig 2011-12-31 13:11:52.000000000 +0000 -+++ configure -@@ -3008,7 +3008,7 @@ as_val=`eval 'as_val=${'$as_ac_File'} - - - ENABLE_LIBPQ= --if test $R_OS_TYPE == "darwin" ; then -+if test $R_OS_TYPE = "darwin" ; then - ENABLE_LIBPQ=' - - PKG_CPPFLAGS=-Ilibpq diff --git a/math/R-RPostgreSQL/patches/patch-configure.in b/math/R-RPostgreSQL/patches/patch-configure.in deleted file mode 100644 index dbb8f51d698..00000000000 --- a/math/R-RPostgreSQL/patches/patch-configure.in +++ /dev/null @@ -1,15 +0,0 @@ -$NetBSD: patch-configure.in,v 1.1.1.1 2012/04/15 17:57:36 brook Exp $ - -# see http://code.google.com/p/rpostgresql/issues/detail?id=39 - ---- configure.in.orig 2011-12-31 13:11:52.000000000 +0000 -+++ configure.in -@@ -115,7 +115,7 @@ AC_SUBST(PKG_CPPFLAGS) - AC_SUBST(PKG_LIBS) - - ENABLE_LIBPQ= --if test $R_OS_TYPE == "darwin" ; then -+if test $R_OS_TYPE = "darwin" ; then - ENABLE_LIBPQ=' - - PKG_CPPFLAGS=-Ilibpq |