summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Beich <jbeich@FreeBSD.org>2015-05-12 17:22:26 +0000
committerJan Beich <jbeich@FreeBSD.org>2015-05-12 17:22:26 +0000
commitc7faea1a4e010211b68ddf003e51404385dfad38 (patch)
tree564b2432772654cbd4707704e333115d88b57567
parentThis port doesn't use libssl or libcrypto (diff)
databases/sqlite3, databases/tcl-sqlite3: update to 3.8.10.1
- Add option SQLITE_ENABLE_DBSTAT_VTAB - Create patches for port with 'makepatch' Changes: https://sqlite.org/releaselog/3_8_10_1.html ACC report: http://upstream-tracker.org/compat_reports/sqlite/3080900_to_3081001/abi_compat_report.html PR: 200150 PR: 200151 Submitted by: Pavel Volkov <pavelivolkov@gmail.com> (maintainer)
Notes
Notes: svn path=/head/; revision=386160
-rw-r--r--databases/sqlite3/Makefile11
-rw-r--r--databases/sqlite3/distinfo4
-rw-r--r--databases/sqlite3/files/patch-Makefile.am4
-rw-r--r--databases/sqlite3/files/patch-Makefile.in6
-rw-r--r--databases/tcl-sqlite3/Makefile5
-rw-r--r--databases/tcl-sqlite3/distinfo4
6 files changed, 18 insertions, 16 deletions
diff --git a/databases/sqlite3/Makefile b/databases/sqlite3/Makefile
index 1c0dd29772b5..f98fe65b4292 100644
--- a/databases/sqlite3/Makefile
+++ b/databases/sqlite3/Makefile
@@ -2,11 +2,10 @@
# $FreeBSD$
PORTNAME= sqlite3
-PORTVERSION= 3.8.9
-PORTREVISION= 1
+PORTVERSION= 3.8.10.1
CATEGORIES= databases
MASTER_SITES= http://www.sqlite.org/2015/ http://www2.sqlite.org/2015/ http://www3.sqlite.org/2015/
-DISTNAME= sqlite-autoconf-${PORTVERSION:S|.|0|g}00
+DISTNAME= sqlite-autoconf-${PORTVERSION:S|.10|10|:S|.|0|g}
MAINTAINER= pavelivolkov@gmail.com
COMMENT= SQL database engine in a C library
@@ -28,7 +27,7 @@ MAKE_JOBS_UNSAFE= yes
# Compilation Options For SQLite http://www.sqlite.org/compile.html
OPTIONS_DEFINE= FTS4 UPD_DEL_LIMIT URI URI_AUTHORITY SOUNDEX METADATA \
DIRECT_READ MEMMAN SECURE_DELETE UNLOCK_NOTIFY THREADS \
- EXTENSION READLINE ARMOR STMT
+ EXTENSION READLINE ARMOR STMT DBSTAT
OPTIONS_SINGLE= RAMT
OPTIONS_RADIO= STAT
OPTIONS_GROUP= UNICODE RTREEG
@@ -65,6 +64,9 @@ STAT_DESC= Which query planner to use
STAT3_DESC= collect histogram data from leftmost column
STAT4_DESC= collect histogram data from all columns
+# http://www.sqlite.org/dbstat.html
+DBSTAT_DESC= Enable DBSTAT Virtual Table
+
# http://www.sqlite.org/fts3.html#tokenizer
OPTIONS_GROUP_UNICODE= ICU UNICODE61
UNICODE_DESC= Unicode support
@@ -117,6 +119,7 @@ UNLOCK_NOTIFY_CPPFLAGS= -DSQLITE_ENABLE_UNLOCK_NOTIFY=1
METADATA_CPPFLAGS= -DSQLITE_ENABLE_COLUMN_METADATA=1
STAT3_CPPFLAGS= -DSQLITE_ENABLE_STAT3=1
STAT4_CPPFLAGS= -DSQLITE_ENABLE_STAT4=1
+DBSTAT_CPPFLAGS= -DSQLITE_ENABLE_DBSTAT_VTAB=1
URI_CPPFLAGS= -DSQLITE_USE_URI=1
URI_AUTHORITY_CPPFLAGS= -DSQLITE_ALLOW_URI_AUTHORITY=1
DIRECT_READ_CPPFLAGS= -DSQLITE_DIRECT_OVERFLOW_READ=1
diff --git a/databases/sqlite3/distinfo b/databases/sqlite3/distinfo
index 89e064a26443..c398fa021990 100644
--- a/databases/sqlite3/distinfo
+++ b/databases/sqlite3/distinfo
@@ -1,2 +1,2 @@
-SHA256 (sqlite-autoconf-3080900.tar.gz) = 76ebb6392cd2289fbff903af7ff67f3e49bd01ff30544b8028ecededd60269a2
-SIZE (sqlite-autoconf-3080900.tar.gz) = 2037200
+SHA256 (sqlite-autoconf-3081001.tar.gz) = 5f8f2ae6461e637ff63e50fef10b6962764dfc3b81a8c0f80a19794b9d59f7ca
+SIZE (sqlite-autoconf-3081001.tar.gz) = 2049377
diff --git a/databases/sqlite3/files/patch-Makefile.am b/databases/sqlite3/files/patch-Makefile.am
index 5c6ea94b742d..eb8bd527ac15 100644
--- a/databases/sqlite3/files/patch-Makefile.am
+++ b/databases/sqlite3/files/patch-Makefile.am
@@ -1,5 +1,5 @@
---- Makefile.am.orig 2013-10-29 19:45:19.000000000 +0400
-+++ Makefile.am 2013-10-29 19:45:33.000000000 +0400
+--- Makefile.am.orig 2015-05-09 12:23:20 UTC
++++ Makefile.am
@@ -1,5 +1,5 @@
-AM_CFLAGS = @THREADSAFE_FLAGS@ @DYNAMIC_EXTENSION_FLAGS@ -DSQLITE_ENABLE_FTS3 -DSQLITE_ENABLE_RTREE
diff --git a/databases/sqlite3/files/patch-Makefile.in b/databases/sqlite3/files/patch-Makefile.in
index b604911a4e48..335e1fee327c 100644
--- a/databases/sqlite3/files/patch-Makefile.in
+++ b/databases/sqlite3/files/patch-Makefile.in
@@ -1,6 +1,6 @@
---- Makefile.in.orig 2013-10-29 19:49:18.000000000 +0400
-+++ Makefile.in 2013-10-29 19:49:42.000000000 +0400
-@@ -268,7 +268,7 @@
+--- Makefile.in.orig 2015-05-12 14:38:01 UTC
++++ Makefile.in
+@@ -269,7 +269,7 @@ target_alias = @target_alias@
top_build_prefix = @top_build_prefix@
top_builddir = @top_builddir@
top_srcdir = @top_srcdir@
diff --git a/databases/tcl-sqlite3/Makefile b/databases/tcl-sqlite3/Makefile
index 2f0687f0bf69..018df59b1f9b 100644
--- a/databases/tcl-sqlite3/Makefile
+++ b/databases/tcl-sqlite3/Makefile
@@ -1,12 +1,11 @@
# $FreeBSD$
PORTNAME= sqlite3
-PORTVERSION= 3.8.9
-PORTREVISION= 1
+PORTVERSION= 3.8.10.1
CATEGORIES= databases tcl
MASTER_SITES= http://www.sqlite.org/2015/ http://www2.sqlite.org/2015/ http://www3.sqlite.org/2015/
PKGNAMEPREFIX= tcl-
-DISTNAME= sqlite-autoconf-${PORTVERSION:S|.|0|g}00
+DISTNAME= sqlite-autoconf-${PORTVERSION:S|.10|10|:S|.|0|g}
MAINTAINER= pavelivolkov@gmail.com
COMMENT= SQLite extension for Tcl using the Tcl Extension Architecture (TEA)
diff --git a/databases/tcl-sqlite3/distinfo b/databases/tcl-sqlite3/distinfo
index 89e064a26443..c398fa021990 100644
--- a/databases/tcl-sqlite3/distinfo
+++ b/databases/tcl-sqlite3/distinfo
@@ -1,2 +1,2 @@
-SHA256 (sqlite-autoconf-3080900.tar.gz) = 76ebb6392cd2289fbff903af7ff67f3e49bd01ff30544b8028ecededd60269a2
-SIZE (sqlite-autoconf-3080900.tar.gz) = 2037200
+SHA256 (sqlite-autoconf-3081001.tar.gz) = 5f8f2ae6461e637ff63e50fef10b6962764dfc3b81a8c0f80a19794b9d59f7ca
+SIZE (sqlite-autoconf-3081001.tar.gz) = 2049377