svn commit: r386160 - in head/databases: sqlite3 sqlite3/files tcl-sqlite3
Jan Beich
jbeich at FreeBSD.org
Tue May 12 17:22:29 UTC 2015
Author: jbeich
Date: Tue May 12 17:22:26 2015
New Revision: 386160
URL: https://svnweb.freebsd.org/changeset/ports/386160
Log:
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 at gmail.com> (maintainer)
Modified:
head/databases/sqlite3/Makefile (contents, props changed)
head/databases/sqlite3/distinfo (contents, props changed)
head/databases/sqlite3/files/patch-Makefile.am (contents, props changed)
head/databases/sqlite3/files/patch-Makefile.in (contents, props changed)
head/databases/tcl-sqlite3/Makefile (contents, props changed)
head/databases/tcl-sqlite3/distinfo (contents, props changed)
Modified: head/databases/sqlite3/Makefile
==============================================================================
--- head/databases/sqlite3/Makefile Tue May 12 17:11:03 2015 (r386159)
+++ head/databases/sqlite3/Makefile Tue May 12 17:22:26 2015 (r386160)
@@ -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 at 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_
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
Modified: head/databases/sqlite3/distinfo
==============================================================================
--- head/databases/sqlite3/distinfo Tue May 12 17:11:03 2015 (r386159)
+++ head/databases/sqlite3/distinfo Tue May 12 17:22:26 2015 (r386160)
@@ -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
Modified: head/databases/sqlite3/files/patch-Makefile.am
==============================================================================
--- head/databases/sqlite3/files/patch-Makefile.am Tue May 12 17:11:03 2015 (r386159)
+++ head/databases/sqlite3/files/patch-Makefile.am Tue May 12 17:22:26 2015 (r386160)
@@ -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
Modified: head/databases/sqlite3/files/patch-Makefile.in
==============================================================================
--- head/databases/sqlite3/files/patch-Makefile.in Tue May 12 17:11:03 2015 (r386159)
+++ head/databases/sqlite3/files/patch-Makefile.in Tue May 12 17:22:26 2015 (r386160)
@@ -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@
Modified: head/databases/tcl-sqlite3/Makefile
==============================================================================
--- head/databases/tcl-sqlite3/Makefile Tue May 12 17:11:03 2015 (r386159)
+++ head/databases/tcl-sqlite3/Makefile Tue May 12 17:22:26 2015 (r386160)
@@ -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 at gmail.com
COMMENT= SQLite extension for Tcl using the Tcl Extension Architecture (TEA)
Modified: head/databases/tcl-sqlite3/distinfo
==============================================================================
--- head/databases/tcl-sqlite3/distinfo Tue May 12 17:11:03 2015 (r386159)
+++ head/databases/tcl-sqlite3/distinfo Tue May 12 17:22:26 2015 (r386160)
@@ -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
More information about the svn-ports-all
mailing list