[Midnightbsd-cvs] mports [20953] trunk/databases/sqlite3: sqlite 3.9.1
laffer1 at midnightbsd.org
laffer1 at midnightbsd.org
Tue Feb 2 21:40:36 EST 2016
Revision: 20953
http://svnweb.midnightbsd.org/mports/?rev=20953
Author: laffer1
Date: 2016-02-02 21:40:36 -0500 (Tue, 02 Feb 2016)
Log Message:
-----------
sqlite 3.9.1
Modified Paths:
--------------
trunk/databases/sqlite3/Makefile
trunk/databases/sqlite3/distinfo
trunk/databases/sqlite3/files/patch-Makefile.am
trunk/databases/sqlite3/files/patch-Makefile.in
Modified: trunk/databases/sqlite3/Makefile
===================================================================
--- trunk/databases/sqlite3/Makefile 2016-02-03 02:33:48 UTC (rev 20952)
+++ trunk/databases/sqlite3/Makefile 2016-02-03 02:40:36 UTC (rev 20953)
@@ -1,10 +1,10 @@
# $MidnightBSD$
PORTNAME= sqlite3
-PORTVERSION= 3.8.10.2
+PORTVERSION= 3.9.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|.10|10|:S|.|0|g}
+MASTER_SITES= https://www.sqlite.org/2015/ http://www2.sqlite.org/2015/ http://www3.sqlite.org/2015/
+DISTNAME= sqlite-autoconf-${PORTVERSION:C/\.([[:digit:]])[[:>:]]/0\1/g:S/.//g}00
MAINTAINER= ports at MidnightBSD.org
COMMENT= SQL database engine in a C library
@@ -23,12 +23,11 @@
# 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 DBSTAT
+ EXTENSION READLINE ARMOR STMT DBSTAT FTS5 JSON1 RBU
OPTIONS_SINGLE= RAMT
OPTIONS_RADIO= STAT
OPTIONS_GROUP= UNICODE RTREEG
-FTS4_DESC= Enable FTS3/4 (Full Text Search) module
UPD_DEL_LIMIT_DESC= ORDER BY and LIMIT on UPDATE and DELETE
URI_DESC= Enable use the URI filename
URI_AUTHORITY_DESC= Allow convert URL into a UNC
@@ -43,6 +42,18 @@
# http://www.sqlite.org/compile.html#enable_api_armor
ARMOR_DESC= Detect misuse of the API
+# http://www.sqlite.org/fts3.html
+FTS4_DESC= Enable FTS3/4 (Full Text Search) module
+
+# http://www.sqlite.org/fts5.html
+FTS5_DESC= Enable version 5 full-text search engine
+
+# http://www.sqlite.org/json1.html
+JSON1_DESC= Enable the JSON1 extension
+
+# http://www.sqlite.org/rbu.html
+RBU_DESC= Enable the Resumable Bulk Update
+
# http://www.sqlite.org/c3ref/stmt_scanstatus.html
STMT_DESC= Prepared Statement Scan Status
@@ -75,8 +86,8 @@
RTREE_INT_DESC= Store 32-bit sig int (no float) coordinates
OPTIONS_DEFAULT= FTS4 URI METADATA SECURE_DELETE UNLOCK_NOTIFY THREADS \
- EXTENSION TS1 UNICODE61 RTREE READLINE
-# SECURE_DELETE, UNLOCK_NOTIFY used by www/firefox, www/libxul
+ EXTENSION TS1 UNICODE61 RTREE READLINE DBSTAT
+# SECURE_DELETE, UNLOCK_NOTIFY, DBSTAT (since 41.0) used by www/firefox et al.
# RTREE used by graphics/mapnik, databases/spatialite
PLIST_FILES= bin/sqlite3 include/sqlite3.h include/sqlite3ext.h \
@@ -137,11 +148,18 @@
READLINE_CONFIGURE_ENABLE= readline
READLINE_USES= readline
+FTS5_CONFIGURE_ENABLE= fts5
+
+JSON1_CONFIGURE_ENABLE= json1
+
+RBU_CPPFLAGS= -DSQLITE_ENABLE_RBU=1
+
.include <bsd.mport.options.mk>
post-configure:
@${ECHO_MSG} "===> CONFIGURE_ARGS=${CONFIGURE_ARGS}"
@${ECHO_MSG} "===> CPPFLAGS=${CPPFLAGS}"
+ @${ECHO_MSG} "===> CFLAGS=${CFLAGS}"
@${ECHO_MSG} "===> LDFLAGS=${LDFLAGS}"
post-build:
Modified: trunk/databases/sqlite3/distinfo
===================================================================
--- trunk/databases/sqlite3/distinfo 2016-02-03 02:33:48 UTC (rev 20952)
+++ trunk/databases/sqlite3/distinfo 2016-02-03 02:40:36 UTC (rev 20953)
@@ -1,2 +1,2 @@
-SHA256 (sqlite-autoconf-3081002.tar.gz) = 8382e55a4e7d853c93038562ca3dd00307937fccf1c6b65ddd813e503a56d626
-SIZE (sqlite-autoconf-3081002.tar.gz) = 2049387
+SHA256 (sqlite-autoconf-3090100.tar.gz) = d89d0e1d93deafebd0aa067d20d9029d9914ccde244920d9dd09ea51944e1c6c
+SIZE (sqlite-autoconf-3090100.tar.gz) = 2284128
Modified: trunk/databases/sqlite3/files/patch-Makefile.am
===================================================================
--- trunk/databases/sqlite3/files/patch-Makefile.am 2016-02-03 02:33:48 UTC (rev 20952)
+++ trunk/databases/sqlite3/files/patch-Makefile.am 2016-02-03 02:40:36 UTC (rev 20953)
@@ -1,9 +1,9 @@
---- Makefile.am.orig 2015-05-09 12:23:20 UTC
+--- Makefile.am.orig 2015-10-20 07:35:33 UTC
+++ Makefile.am
@@ -1,5 +1,5 @@
--AM_CFLAGS = @THREADSAFE_FLAGS@ @DYNAMIC_EXTENSION_FLAGS@ -DSQLITE_ENABLE_FTS3 -DSQLITE_ENABLE_RTREE
-+AM_CFLAGS = @THREADSAFE_FLAGS@ @DYNAMIC_EXTENSION_FLAGS@
+-AM_CFLAGS = @THREADSAFE_FLAGS@ @DYNAMIC_EXTENSION_FLAGS@ @FTS5_FLAGS@ @JSON1_FLAGS@ -DSQLITE_ENABLE_FTS3 -DSQLITE_ENABLE_RTREE
++AM_CFLAGS = @THREADSAFE_FLAGS@ @DYNAMIC_EXTENSION_FLAGS@ @FTS5_FLAGS@ @JSON1_FLAGS@
lib_LTLIBRARIES = libsqlite3.la
libsqlite3_la_SOURCES = sqlite3.c
Modified: trunk/databases/sqlite3/files/patch-Makefile.in
===================================================================
--- trunk/databases/sqlite3/files/patch-Makefile.in 2016-02-03 02:33:48 UTC (rev 20952)
+++ trunk/databases/sqlite3/files/patch-Makefile.in 2016-02-03 02:40:36 UTC (rev 20953)
@@ -1,11 +1,11 @@
---- Makefile.in.orig 2015-05-12 14:38:01 UTC
+--- Makefile.in.orig 2015-10-20 07:35:55 UTC
+++ Makefile.in
-@@ -269,7 +269,7 @@ target_alias = @target_alias@
+@@ -274,7 +274,7 @@ target_alias = @target_alias@
top_build_prefix = @top_build_prefix@
top_builddir = @top_builddir@
top_srcdir = @top_srcdir@
--AM_CFLAGS = @THREADSAFE_FLAGS@ @DYNAMIC_EXTENSION_FLAGS@ -DSQLITE_ENABLE_FTS3 -DSQLITE_ENABLE_RTREE
-+AM_CFLAGS = @THREADSAFE_FLAGS@ @DYNAMIC_EXTENSION_FLAGS@
+-AM_CFLAGS = @THREADSAFE_FLAGS@ @DYNAMIC_EXTENSION_FLAGS@ @FTS5_FLAGS@ @JSON1_FLAGS@ -DSQLITE_ENABLE_FTS3 -DSQLITE_ENABLE_RTREE
++AM_CFLAGS = @THREADSAFE_FLAGS@ @DYNAMIC_EXTENSION_FLAGS@ @FTS5_FLAGS@ @JSON1_FLAGS@
lib_LTLIBRARIES = libsqlite3.la
libsqlite3_la_SOURCES = sqlite3.c
libsqlite3_la_LDFLAGS = -no-undefined -version-info 8:6:8
More information about the Midnightbsd-cvs
mailing list