From owner-svn-ports-all@freebsd.org Tue Dec 4 18:02:15 2018 Return-Path: Delivered-To: svn-ports-all@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 6C3081314E84; Tue, 4 Dec 2018 18:02:15 +0000 (UTC) (envelope-from swills@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 0DE5686846; Tue, 4 Dec 2018 18:02:15 +0000 (UTC) (envelope-from swills@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 C46F9BC3; Tue, 4 Dec 2018 18:02:14 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id wB4I2ExF068861; Tue, 4 Dec 2018 18:02:14 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id wB4I2E1c068860; Tue, 4 Dec 2018 18:02:14 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201812041802.wB4I2E1c068860@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Tue, 4 Dec 2018 18:02:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r486622 - in head/databases/sqlite3: . files X-SVN-Group: ports-head X-SVN-Commit-Author: swills X-SVN-Commit-Paths: in head/databases/sqlite3: . files X-SVN-Commit-Revision: 486622 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 0DE5686846 X-Spamd-Result: default: False [-0.80 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-0.45)[-0.447,0]; NEURAL_HAM_SHORT(-0.32)[-0.322,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-0.03)[-0.031,0] X-Rspamd-Server: mx1.freebsd.org X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 04 Dec 2018 18:02:15 -0000 Author: swills Date: Tue Dec 4 18:02:14 2018 New Revision: 486622 URL: https://svnweb.freebsd.org/changeset/ports/486622 Log: databases/sqlite3: Update to 3.26.0 PR: 233712 Submitted by: Pavel Volkov (maintainer) Deleted: head/databases/sqlite3/files/ Modified: head/databases/sqlite3/Makefile (contents, props changed) head/databases/sqlite3/distinfo (contents, props changed) Modified: head/databases/sqlite3/Makefile ============================================================================== --- head/databases/sqlite3/Makefile Tue Dec 4 17:53:58 2018 (r486621) +++ head/databases/sqlite3/Makefile Tue Dec 4 18:02:14 2018 (r486622) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= sqlite3 -DISTVERSION= 3.25.1 -PORTREVISION= 1 +DISTVERSION= 3.26.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 @@ -14,17 +13,18 @@ COMMENT= SQL database engine in a C library LICENSE= PD USES= libtool ncurses pathfix -GNU_CONFIGURE= yes USE_LDCONFIG= yes -INSTALL_TARGET= install-strip +GNU_CONFIGURE= yes MAKE_JOBS_UNSAFE= yes +INSTALL_TARGET= install-strip # Compilation Options For SQLite https://www.sqlite.org/compile.html OPTIONS_DEFINE= FTS4 URI URI_AUTHORITY METADATA \ DIRECT_READ MEMMAN SECURE_DELETE UNLOCK_NOTIFY THREADS \ EXTENSION ARMOR STMT DBPAGE DBSTAT FTS5 RBU NULL_TRIM \ - LIKENOTBLOB STSHELL FTS3_TOKEN UNKNOWN_SQL SORT_REF + LIKENOTBLOB STSHELL FTS3_TOKEN UNKNOWN_SQL SORT_REF \ + NORMALIZE OPTIONS_SINGLE= RAMT OPTIONS_RADIO= STAT OPTIONS_GROUP= OPT_EXT OPT_FUNC UNICODE RTREEG RL @@ -44,6 +44,7 @@ SECURE_DELETE_DESC= Overwrite deleted information with UNLOCK_NOTIFY_DESC= Enable notification on unlocking EXTENSION_DESC= Allow loadable extensions STSHELL_DESC= Statically link libsqlite3 into shell +NORMALIZE_DESC= Enable normalized sql function # https://sqlite.org/compile.html#enable_null_trim NULL_TRIM_DESC= Omits NULL columns at the ends of rows @@ -221,6 +222,8 @@ OFFSET_CPPFLAGS= -DSQLITE_ENABLE_OFFSET_SQL_FUNC=1 SER1_CPPFLAGS= -DSQLITE_ENABLE_DESERIALIZE=1 SORT_REF_CPPFLAGS= -DSQLITE_ENABLE_SORTER_REFERENCES=1 + +NORMALIZE_CPPFLAGS= -DSQLITE_ENABLE_NORMALIZE=1 .include Modified: head/databases/sqlite3/distinfo ============================================================================== --- head/databases/sqlite3/distinfo Tue Dec 4 17:53:58 2018 (r486621) +++ head/databases/sqlite3/distinfo Tue Dec 4 18:02:14 2018 (r486622) @@ -1,3 +1,3 @@ -TIMESTAMP = 1537452866 -SHA256 (sqlite-autoconf-3250100.tar.gz) = 96ed46bd87f093073ca8afd613020def847009b611c89f397bc24bd932ec6fd1 -SIZE (sqlite-autoconf-3250100.tar.gz) = 2763831 +TIMESTAMP = 1543735262 +SHA256 (sqlite-autoconf-3260000.tar.gz) = 5daa6a3fb7d1e8c767cd59c4ded8da6e4b00c61d3b466d0685e35c4dd6d7bf5d +SIZE (sqlite-autoconf-3260000.tar.gz) = 2779667