From owner-svn-ports-all@FreeBSD.ORG Fri Dec 13 00:56:22 2013 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D5C595B3; Fri, 13 Dec 2013 00:56:22 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id C22CC19CE; Fri, 13 Dec 2013 00:56:22 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id rBD0uMZa066479; Fri, 13 Dec 2013 00:56:22 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id rBD0uMcN066477; Fri, 13 Dec 2013 00:56:22 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201312130056.rBD0uMcN066477@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Fri, 13 Dec 2013 00:56:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r336302 - head/databases/leveldb 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.17 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: Fri, 13 Dec 2013 00:56:22 -0000 Author: sunpoet Date: Fri Dec 13 00:56:22 2013 New Revision: 336302 URL: http://svnweb.freebsd.org/changeset/ports/336302 Log: - Update LICENSE - Shorten pkg-descr Modified: head/databases/leveldb/Makefile head/databases/leveldb/pkg-descr (contents, props changed) Modified: head/databases/leveldb/Makefile ============================================================================== --- head/databases/leveldb/Makefile Fri Dec 13 00:54:49 2013 (r336301) +++ head/databases/leveldb/Makefile Fri Dec 13 00:56:22 2013 (r336302) @@ -9,7 +9,7 @@ MASTER_SITES= GOOGLE_CODE MAINTAINER= sunpoet@FreeBSD.org COMMENT= Fast and lightweight key/value database library by Google -LICENSE= BSD +LICENSE= BSD3CLAUSE OPTIONS_DEFINE= GPERFTOOLS SNAPPY OPTIONS_DEFAULT=SNAPPY Modified: head/databases/leveldb/pkg-descr ============================================================================== --- head/databases/leveldb/pkg-descr Fri Dec 13 00:54:49 2013 (r336301) +++ head/databases/leveldb/pkg-descr Fri Dec 13 00:56:22 2013 (r336302) @@ -15,12 +15,4 @@ Features: - Detailed documentation about how to use the library is included with the source code. -Limitations: -- This is not a SQL database. It does not have a relational data model, it does - not support SQL queries, and it has no support for indexes. -- Only a single process (possibly multi-threaded) can access a particular - database at a time. -- There is no client-server support builtin to the library. An application that - needs such support will have to wrap their own server around the library. - WWW: http://code.google.com/p/leveldb/