Date: Mon, 9 Apr 2018 07:14:37 +0000 (UTC) From: Yuri Victorovich <yuri@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r466838 - in head/databases/sqlite3: . files Message-ID: <201804090714.w397EbpP044622@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: yuri Date: Mon Apr 9 07:14:37 2018 New Revision: 466838 URL: https://svnweb.freebsd.org/changeset/ports/466838 Log: databases/sqlite3: Update 3.22.0 -> 3.23.0 Changelog: https://www.sqlite.org/releaselog/3_23_0.html Port changes: * Add SER1 option for the new optional sqlite3_serialize()/sqlite3_deserialize() functions * Remove security patches that are now in the release PR: 227365 Submitted by: Pavel Volkov <pavelivolkov@gmail.com> (maintainer) Deleted: head/databases/sqlite3/files/ Modified: head/databases/sqlite3/Makefile head/databases/sqlite3/distinfo Modified: head/databases/sqlite3/Makefile ============================================================================== --- head/databases/sqlite3/Makefile Mon Apr 9 06:43:40 2018 (r466837) +++ head/databases/sqlite3/Makefile Mon Apr 9 07:14:37 2018 (r466838) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= sqlite3 -DISTVERSION= 3.22.0 -PORTREVISION= 2 +DISTVERSION= 3.23.0 CATEGORIES= databases MASTER_SITES= https://www.sqlite.org/2018/ http://www2.sqlite.org/2018/ http://www3.sqlite.org/2018/ DISTNAME= sqlite-autoconf-${PORTVERSION:C/\.([[:digit:]])[[:>:]]/0\1/g:S/.//g}00 @@ -30,7 +29,7 @@ OPTIONS_RADIO= STAT OPTIONS_GROUP= OPT_EXT OPT_FUNC UNICODE RTREEG RL OPTIONS_GROUP_OPT_EXT= JSON1 SESSION -OPTIONS_GROUP_OPT_FUNC= OFFSET SOUNDEX +OPTIONS_GROUP_OPT_FUNC= OFFSET SER1 SOUNDEX OPT_EXT_DESC= Optional extensions OPT_FUNC_DESC= Optional functions @@ -52,6 +51,9 @@ NULL_TRIM_DESC= Omits NULL columns at the ends of row # http://www.sqlite.org/compile.html#enable_offset_sql_func OFFSET_DESC= Enable sqlite_offset() returning record's file offset +# https://www.sqlite.org/compile.html#enable_deserialize +SER1_DESC= Enable the sqlite3_[de]serialize() interface + # https://www.sqlite.org/sessionintro.html SESSION_DESC= Enable the session extension @@ -211,6 +213,8 @@ UNKNOWN_SQL_CPPFLAGS= -DSQLITE_ENABLE_UNKNOWN_SQL_FUNC NULL_TRIM_CPPFLAGS= -DSQLITE_ENABLE_NULL_TRIM=1 OFFSET_CPPFLAGS= -DSQLITE_ENABLE_OFFSET_SQL_FUNC=1 + +SER1_CPPFLAGS= -DSQLITE_ENABLE_DESERIALIZE=1 .include <bsd.port.options.mk> Modified: head/databases/sqlite3/distinfo ============================================================================== --- head/databases/sqlite3/distinfo Mon Apr 9 06:43:40 2018 (r466837) +++ head/databases/sqlite3/distinfo Mon Apr 9 07:14:37 2018 (r466838) @@ -1,3 +1,3 @@ -TIMESTAMP = 1517654018 -SHA256 (sqlite-autoconf-3220000.tar.gz) = 2824ab1238b706bc66127320afbdffb096361130e23291f26928a027b885c612 -SIZE (sqlite-autoconf-3220000.tar.gz) = 2644649 +TIMESTAMP = 1523081283 +SHA256 (sqlite-autoconf-3230000.tar.gz) = b7711a1800a071674c2bf76898ae8584fc6c9643cfe933cfc1bc54361e3a6e49 +SIZE (sqlite-autoconf-3230000.tar.gz) = 2674030
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201804090714.w397EbpP044622>