From owner-svn-ports-head@freebsd.org Wed Sep 30 10:28:57 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 7C026A0C9BF; Wed, 30 Sep 2015 10:28:57 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::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 6C7561A8F; Wed, 30 Sep 2015 10:28:57 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t8UASviG032026; Wed, 30 Sep 2015 10:28:57 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t8UASuFQ032020; Wed, 30 Sep 2015 10:28:56 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201509301028.t8UASuFQ032020@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Wed, 30 Sep 2015 10:28:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398211 - in head/databases: . libnvpair X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 10:28:57 -0000 Author: marino Date: Wed Sep 30 10:28:55 2015 New Revision: 398211 URL: https://svnweb.freebsd.org/changeset/ports/398211 Log: Add new port databases/libnvpair libnvpair is a name-value pair library originating from Solaris The nvpair library was released in OpenSolaris and has been extended by the Illumos project. It exports a set of functions used for managing name-value pairs. This is a base library for Solaris and its descendents. However, the kernel-specific code has been removed thus libnvpair is strictly meant for the userland. The XDR functionality has been masked for now due to RPC differences between *BSD and Illumos. Added: head/databases/libnvpair/ head/databases/libnvpair/Makefile (contents, props changed) head/databases/libnvpair/distinfo (contents, props changed) head/databases/libnvpair/pkg-descr (contents, props changed) head/databases/libnvpair/pkg-plist (contents, props changed) Modified: head/databases/Makefile Modified: head/databases/Makefile ============================================================================== --- head/databases/Makefile Wed Sep 30 10:20:48 2015 (r398210) +++ head/databases/Makefile Wed Sep 30 10:28:55 2015 (r398211) @@ -159,6 +159,7 @@ SUBDIR += libmemcache SUBDIR += libmemcached SUBDIR += libmongo-client + SUBDIR += libnvpair SUBDIR += libodbc++ SUBDIR += libpbl SUBDIR += libpqtypes Added: head/databases/libnvpair/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/libnvpair/Makefile Wed Sep 30 10:28:55 2015 (r398211) @@ -0,0 +1,22 @@ +# Created by: John Marino +# $FreeBSD$ + +PORTNAME= libnvpair +PORTVERSION= 1.0.2 +CATEGORIES= databases devel + +MAINTAINER= marino@FreeBSD.org +COMMENT= Illumos name-value pair library + +LICENSE= CDDL + +GH_ACCOUNT= jrmarino +USE_GITHUB= yes + +MAKE_ARGS= LIBDIR=${PREFIX}/lib + +post-install: + (cd ${WRKSRC} && ${INSTALL_DATA} libnvpair.h nvpair.h \ + nvpair_type_compat.h ${STAGEDIR}${PREFIX}/include/) + +.include Added: head/databases/libnvpair/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/libnvpair/distinfo Wed Sep 30 10:28:55 2015 (r398211) @@ -0,0 +1,2 @@ +SHA256 (jrmarino-libnvpair-1.0.2_GH0.tar.gz) = 1dd0390b9bfba71cd6902b119df98ecfaafeb780e244dd9d6bea9ded6946a993 +SIZE (jrmarino-libnvpair-1.0.2_GH0.tar.gz) = 37960 Added: head/databases/libnvpair/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/libnvpair/pkg-descr Wed Sep 30 10:28:55 2015 (r398211) @@ -0,0 +1,10 @@ +libnvpair is a name-value pair library originating from Solaris + +The nvpair library was released in OpenSolaris and has been extended +by the Illumos project. It exports a set of functions used for managing +name-value pairs. This is a base library for Solaris and its descendents. +However, the kernel-specific code has been removed thus libnvpair is +strictly meant for the userland. The XDR functionality has been masked +for now due to RPC differences between *BSD and Illumos. + +WWW: http://illumos.org/man/3lib/libnvpair Added: head/databases/libnvpair/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/libnvpair/pkg-plist Wed Sep 30 10:28:55 2015 (r398211) @@ -0,0 +1,6 @@ +include/libnvpair.h +include/nvpair.h +include/nvpair_type_compat.h +lib/libnvpair.a +lib/libnvpair.so +lib/libnvpair.so.1