From owner-svn-ports-head@freebsd.org Wed Sep 30 22:19:45 2015 Return-Path: Delivered-To: svn-ports-head@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 34BFEA0A7FA; Wed, 30 Sep 2015 22:19:45 +0000 (UTC) (envelope-from mfl-commissioner@marino.st) Received: from shepard.synsport.net (mail.synsport.com [208.69.230.148]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0DEB71C80; Wed, 30 Sep 2015 22:19:44 +0000 (UTC) (envelope-from mfl-commissioner@marino.st) Received: from [192.168.1.23] (116.Red-83-39-93.dynamicIP.rima-tde.net [83.39.93.116]) (using TLSv1 with cipher DHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) by shepard.synsport.net (Postfix) with ESMTP id AC23843BCD; Wed, 30 Sep 2015 17:19:35 -0500 (CDT) Subject: Re: svn commit: r398236 - in head/devel: . libuutil To: d@delphij.net, John Marino , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org References: <201509302156.t8ULu9HF015436@repo.freebsd.org> <560C5DF9.7030407@delphij.net> From: John Marino Message-ID: <560C5FF2.5060307@marino.st> Date: Thu, 1 Oct 2015 00:19:30 +0200 User-Agent: Mozilla/5.0 (Windows NT 6.3; WOW64; rv:38.0) Gecko/20100101 Thunderbird/38.0.1 MIME-Version: 1.0 In-Reply-To: <560C5DF9.7030407@delphij.net> Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Sep 2015 22:19:45 -0000 On 10/1/2015 12:11 AM, Xin Li wrote: > On 09/30/15 14:56, John Marino wrote: >> Author: marino >> Date: Wed Sep 30 21:56:08 2015 >> New Revision: 398236 >> URL: https://svnweb.freebsd.org/changeset/ports/398236 >> >> Log: >> Add new port devel/libuutil >> >> libuutil is a library of userland utilities originating from solaris >> >> This library provides both a doubly linked-list implementation and a >> AVL tree implementation. This has been a private library best known >> as a core component for ZFS and SMF. >> >> The performance is considered excellent. As this has always been a >> private library, it is not well documented and there is no man page >> for it. The best documentation is located in the source code and >> reading OpenSolaris/Illumos ZFS and SMF sources will help as well. > > I don't understand. Isn't this part of the base system? > (/lib/libuutil.so.2) It's not on DragonFly. I didn't know it was publicly exposed on FreeBSD. There might be some minor differences between them, and the port version has symbol versioning. It is also so.1 so it won't clash. > >> Added: head/devel/libuutil/pkg-descr > [...] >> +WWW: https://github.com/jmarino/libuutil > > This is not accessible. Github gave me 404. > Fixed, thanks. John