From owner-svn-ports-branches@freebsd.org Tue Jun 26 15:48:35 2018 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D8809102BB0D; Tue, 26 Jun 2018 15:48:34 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 85FB475E21; Tue, 26 Jun 2018 15:48:34 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 4955C16441; Tue, 26 Jun 2018 15:48:34 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5QFmYYw096253; Tue, 26 Jun 2018 15:48:34 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5QFmXRN096251; Tue, 26 Jun 2018 15:48:33 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201806261548.w5QFmXRN096251@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Tue, 26 Jun 2018 15:48:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r473392 - in branches/2018Q2/databases/sqlite3: . files X-SVN-Group: ports-branches X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: in branches/2018Q2/databases/sqlite3: . files X-SVN-Commit-Revision: 473392 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Jun 2018 15:48:35 -0000 Author: jbeich Date: Tue Jun 26 15:48:33 2018 New Revision: 473392 URL: https://svnweb.freebsd.org/changeset/ports/473392 Log: MFH: r466838 by yuri 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 (maintainer) Approved by: ports-secteam blanket (required by Firefox 61) Deleted: branches/2018Q2/databases/sqlite3/files/ Modified: branches/2018Q2/databases/sqlite3/Makefile branches/2018Q2/databases/sqlite3/distinfo Directory Properties: branches/2018Q2/ (props changed) Modified: branches/2018Q2/databases/sqlite3/Makefile ============================================================================== --- branches/2018Q2/databases/sqlite3/Makefile Tue Jun 26 15:47:51 2018 (r473391) +++ branches/2018Q2/databases/sqlite3/Makefile Tue Jun 26 15:48:33 2018 (r473392) @@ -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 Modified: branches/2018Q2/databases/sqlite3/distinfo ============================================================================== --- branches/2018Q2/databases/sqlite3/distinfo Tue Jun 26 15:47:51 2018 (r473391) +++ branches/2018Q2/databases/sqlite3/distinfo Tue Jun 26 15:48:33 2018 (r473392) @@ -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