From owner-svn-ports-all@freebsd.org Sat Apr 9 16:37:07 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 5E923B0931C; Sat, 9 Apr 2016 16:37:07 +0000 (UTC) (envelope-from novel@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 3B16C1E84; Sat, 9 Apr 2016 16:37:07 +0000 (UTC) (envelope-from novel@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u39Gb6b9027966; Sat, 9 Apr 2016 16:37:06 GMT (envelope-from novel@FreeBSD.org) Received: (from novel@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u39Gb6UH027962; Sat, 9 Apr 2016 16:37:06 GMT (envelope-from novel@FreeBSD.org) Message-Id: <201604091637.u39Gb6UH027962@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: novel set sender to novel@FreeBSD.org using -f From: Roman Bogorodskiy Date: Sat, 9 Apr 2016 16:37:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r412851 - in head/devel/libvirt: . files 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.21 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: Sat, 09 Apr 2016 16:37:07 -0000 Author: novel Date: Sat Apr 9 16:37:05 2016 New Revision: 412851 URL: https://svnweb.freebsd.org/changeset/ports/412851 Log: devel/libvirt: update to 1.3.3 Add NSS option to enable the nsswitch plugin (disabled by default). Added: head/devel/libvirt/files/libvirt_nss_bsd.syms (contents, props changed) Modified: head/devel/libvirt/Makefile head/devel/libvirt/distinfo head/devel/libvirt/pkg-plist Modified: head/devel/libvirt/Makefile ============================================================================== --- head/devel/libvirt/Makefile Sat Apr 9 16:21:07 2016 (r412850) +++ head/devel/libvirt/Makefile Sat Apr 9 16:37:05 2016 (r412851) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= libvirt -PORTVERSION= 1.3.2 -PORTREVISION= 1 +PORTVERSION= 1.3.3 CATEGORIES= devel MASTER_SITES= http://libvirt.org/sources/ \ ftp://libvirt.org/libvirt/ @@ -22,7 +21,7 @@ BUILD_DEPENDS= dnsmasq:dns/dnsmasq \ RUN_DEPENDS= dnsmasq:dns/dnsmasq \ dmidecode:sysutils/dmidecode -OPTIONS_DEFINE= DOCS GNUTLS NLS QEMU SASL +OPTIONS_DEFINE= DOCS GNUTLS NLS NSS QEMU SASL OPTIONS_DEFAULT= GNUTLS OPTIONS_DEFINE_amd64= XEN .if exists(/usr/sbin/bhyve) @@ -35,6 +34,7 @@ CONFIGURE_ARGS+= --without-bhyve QEMU_DESC= QEMU driver BHYVE_DESC= bhyve driver XEN_DESC= Xen support via libxl +NSS_DESC= Name Service Switch plugin OPTIONS_SUB= yes @@ -54,6 +54,8 @@ NLS_USES= gettext NLS_CONFIGURE_ENABLE= nls NLS_CONFIGURE_ON= --with-libintl-prefix=${LOCALBASE} +NSS_CONFIGURE_WITH= nss-plugin + SASL_CONFIGURE_WITH= sasl SASL_LIB_DEPENDS= libsasl2.so:security/cyrus-sasl2 @@ -114,6 +116,9 @@ CONF_FILES= \ virtlockd.conf \ virtlogd.conf +post-extract: + @${CP} ${FILESDIR}/libvirt_nss_bsd.syms ${WRKSRC}/tools/nss + post-patch: @${REINPLACE_CMD} -e 's|ln -s ../default.xml|true|' \ -e 's|$$(DESTDIR)$$(confdir)/qemu/networks|${STAGEDIR}${EXAMPLESDIR}/networks|' \ Modified: head/devel/libvirt/distinfo ============================================================================== --- head/devel/libvirt/distinfo Sat Apr 9 16:21:07 2016 (r412850) +++ head/devel/libvirt/distinfo Sat Apr 9 16:37:05 2016 (r412851) @@ -1,2 +1,2 @@ -SHA256 (libvirt-1.3.2.tar.gz) = e3c6fc2683178660b371efb3ac7a1103a3f4b78efac7ffe560bc5917974ccf05 -SIZE (libvirt-1.3.2.tar.gz) = 30056101 +SHA256 (libvirt-1.3.3.tar.gz) = 99603b8dba574bc592673fdf5c77e96cf5221e21104ab0477efeb8aba133858f +SIZE (libvirt-1.3.3.tar.gz) = 30272467 Added: head/devel/libvirt/files/libvirt_nss_bsd.syms ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/libvirt/files/libvirt_nss_bsd.syms Sat Apr 9 16:37:05 2016 (r412851) @@ -0,0 +1,9 @@ +# +# Officially exported symbols. +# + +{ +global: + nss_module_register; +local: *; +}; Modified: head/devel/libvirt/pkg-plist ============================================================================== --- head/devel/libvirt/pkg-plist Sat Apr 9 16:21:07 2016 (r412850) +++ head/devel/libvirt/pkg-plist Sat Apr 9 16:37:05 2016 (r412851) @@ -55,6 +55,8 @@ lib/libvirt-qemu.so.%%SHLIB_VER%% lib/libvirt.so lib/libvirt.so.0 lib/libvirt.so.%%SHLIB_VER%% +%%NSS%%lib/libnss_libvirt.so.1 +%%NSS%%lib/nss_libvirt.so.1 libdata/pkgconfig/libvirt.pc libdata/pkgconfig/libvirt-lxc.pc libdata/pkgconfig/libvirt-qemu.pc @@ -116,10 +118,7 @@ share/augeas/lenses/tests/test_virtlogd. %%DOCSDIR%%%%PORTVERSION%%/html/drvvirtuozzo.html %%DOCSDIR%%%%PORTVERSION%%/html/drvxen.html %%DOCSDIR%%%%PORTVERSION%%/html/errors.html -%%DOCSDIR%%%%PORTVERSION%%/html/et.png %%DOCSDIR%%%%PORTVERSION%%/html/firewall.html -%%DOCSDIR%%%%PORTVERSION%%/html/footer_corner.png -%%DOCSDIR%%%%PORTVERSION%%/html/footer_pattern.png %%DOCSDIR%%%%PORTVERSION%%/html/format.html %%DOCSDIR%%%%PORTVERSION%%/html/formatcaps.html %%DOCSDIR%%%%PORTVERSION%%/html/formatdomain.html @@ -183,6 +182,7 @@ share/augeas/lenses/tests/test_virtlogd. %%DOCSDIR%%%%PORTVERSION%%/html/news-2015.html %%DOCSDIR%%%%PORTVERSION%%/html/news.html %%DOCSDIR%%%%PORTVERSION%%/html/node.gif +%%DOCSDIR%%%%PORTVERSION%%/html/nss.html %%DOCSDIR%%%%PORTVERSION%%/html/pending.html %%DOCSDIR%%%%PORTVERSION%%/html/php.html %%DOCSDIR%%%%PORTVERSION%%/html/python.html