From owner-svn-ports-all@freebsd.org Thu Feb 11 20:00:37 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 44564AA48FE; Thu, 11 Feb 2016 20:00:37 +0000 (UTC) (envelope-from pi@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 mx1.freebsd.org (Postfix) with ESMTPS id EEAFB1798; Thu, 11 Feb 2016 20:00:36 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u1BK0ZmT091556; Thu, 11 Feb 2016 20:00:35 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u1BK0ZVx091555; Thu, 11 Feb 2016 20:00:35 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201602112000.u1BK0ZVx091555@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Thu, 11 Feb 2016 20:00:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r408698 - head/databases/sqlite3 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 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: Thu, 11 Feb 2016 20:00:37 -0000 Author: pi Date: Thu Feb 11 20:00:35 2016 New Revision: 408698 URL: https://svnweb.freebsd.org/changeset/ports/408698 Log: databases/sqlite3: Enable one of the command line editing options - The last update to sqlite3 disabled readline support - Now several variants can be selected. PR: 206944 Submitted by: Tobias Kortkamp Approved by: Pavel Volkov (maintainer) Modified: head/databases/sqlite3/Makefile Modified: head/databases/sqlite3/Makefile ============================================================================== --- head/databases/sqlite3/Makefile Thu Feb 11 19:42:57 2016 (r408697) +++ head/databases/sqlite3/Makefile Thu Feb 11 20:00:35 2016 (r408698) @@ -3,7 +3,7 @@ PORTNAME= sqlite3 PORTVERSION= 3.10.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= databases MASTER_SITES= https://www.sqlite.org/2016/ http://www2.sqlite.org/2016/ http://www3.sqlite.org/2016/ DISTNAME= sqlite-autoconf-${PORTVERSION:C/\.([[:digit:]])[[:>:]]/0\1/g:S/.//g}00 @@ -27,8 +27,8 @@ OPTIONS_DEFINE= FTS4 UPD_DEL_LIMIT URI U EXTENSION ARMOR STMT DBSTAT FTS5 JSON1 RBU \ LIKENOTBLOB STSHELL OPTIONS_SINGLE= RAMT -OPTIONS_RADIO= STAT RL -OPTIONS_GROUP= UNICODE RTREEG +OPTIONS_RADIO= STAT +OPTIONS_GROUP= UNICODE RTREEG RL UPD_DEL_LIMIT_DESC= ORDER BY and LIMIT on UPDATE and DELETE URI_DESC= Enable use the URI filename @@ -92,14 +92,17 @@ RTREEG_DESC= Index type for range queri RTREE_DESC= Enable R*Tree module RTREE_INT_DESC= Store 32-bit sig int (no float) coordinates -OPTIONS_RADIO_RL= READLINES READLINEP EDITLINE +OPTIONS_GROUP_RL= READLINES READLINEP EDITLINE RL_DESC= Which command line editing library to use: READLINES_DESC= the libreadline from system READLINEP_DESC= the GNU libreadline from ports EDITLINE_DESC= the BSD libedit from ports +READLINES_PREVENTS= READLINEP EDITLINE +READLINEP_PREVENTS= READLINES EDITLINE +EDITLINE_PREVENTS= READLINES READLINEP OPTIONS_DEFAULT= FTS4 URI METADATA SECURE_DELETE UNLOCK_NOTIFY THREADS \ - EXTENSION TS1 UNICODE61 RTREE DBSTAT STSHELL + EXTENSION TS1 UNICODE61 RTREE DBSTAT STSHELL READLINES # SECURE_DELETE, UNLOCK_NOTIFY, DBSTAT (since 41.0) used by www/firefox et al. # RTREE used by graphics/mapnik, databases/spatialite