From owner-svn-ports-head@freebsd.org Thu May 3 23:10:12 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 916EFFBF54F; Thu, 3 May 2018 23:10:12 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 3CFDD7E998; Thu, 3 May 2018 23:10:12 +0000 (UTC) (envelope-from bdrewery@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 37E8D2667E; Thu, 3 May 2018 23:10:12 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w43NACiM076654; Thu, 3 May 2018 23:10:12 GMT (envelope-from bdrewery@FreeBSD.org) Received: (from bdrewery@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w43NACmJ076653; Thu, 3 May 2018 23:10:12 GMT (envelope-from bdrewery@FreeBSD.org) Message-Id: <201805032310.w43NACmJ076653@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bdrewery set sender to bdrewery@FreeBSD.org using -f From: Bryan Drewery Date: Thu, 3 May 2018 23:10:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r468995 - head/ports-mgmt/poudriere X-SVN-Group: ports-head X-SVN-Commit-Author: bdrewery X-SVN-Commit-Paths: head/ports-mgmt/poudriere X-SVN-Commit-Revision: 468995 X-SVN-Commit-Repository: ports 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.25 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: Thu, 03 May 2018 23:10:12 -0000 Author: bdrewery Date: Thu May 3 23:10:11 2018 New Revision: 468995 URL: https://svnweb.freebsd.org/changeset/ports/468995 Log: - Add DIALOG4PORTS option (default on) to install it for 'options' command [1]. - Add CERTS option (default on) to allow disabling cert dependencies. - Reword QEMU_DESC to match poudriere-devel. - Only install ZSH files if the option is enabled. PR: 225457 [1] Submitted by: Yasuhiro KIMURA [1] (based on) Modified: head/ports-mgmt/poudriere/Makefile Modified: head/ports-mgmt/poudriere/Makefile ============================================================================== --- head/ports-mgmt/poudriere/Makefile Thu May 3 22:53:24 2018 (r468994) +++ head/ports-mgmt/poudriere/Makefile Thu May 3 23:10:11 2018 (r468995) @@ -2,7 +2,7 @@ PORTNAME= poudriere DISTVERSION= 3.2.6 -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= ports-mgmt MASTER_SITES= LOCAL/bdrewery/${PORTNAME}/ \ http://mirror.shatow.net/freebsd/${PORTNAME}/ \ @@ -21,14 +21,18 @@ GH_ACCOUNT= freebsd GNU_CONFIGURE= yes ETCDIR= ${PREFIX}/etc/poudriere.d -OPTIONS_DEFINE= ZSH QEMU EXAMPLES -OPTIONS_DEFAULT=ZSH +OPTIONS_DEFINE= CERTS DIALOG4PORTS ZSH QEMU EXAMPLES +OPTIONS_DEFAULT=CERTS DIALOG4PORTS ZSH OPTIONS_SUB= yes -RUN_DEPENDS+= ca_root_nss>=0:security/ca_root_nss -RUN_DEPENDS+= freebsd-release-manifests>0:misc/freebsd-release-manifests +CERTS_DESC= Install checksum and SSL certificates for jail creation +CERTS_RUN_DEPENDS+= ca_root_nss>=0:security/ca_root_nss +CERTS_RUN_DEPENDS+= freebsd-release-manifests>0:misc/freebsd-release-manifests -QEMU_DESC= Add qemu-user-static to compile ports for non-x86 architectures +DIALOG4PORTS_DESC= Install dialog4ports for options command +DIALOG4PORTS_RUN_DEPENDS= dialog4ports>0:ports-mgmt/dialog4ports + +QEMU_DESC= Add qemu-user-static for non-x86 architectures QEMU_RUN_DEPENDS= qemu-user-static>0:emulators/qemu-user-static .include @@ -52,10 +56,12 @@ post-patch: ${REINPLACE_CMD} '/.PHONY: poudriere/d' ${WRKSRC}/Makefile.* post-install: + ${LN} -fs ${LOCALBASE}/share/freebsd/MANIFESTS \ + ${STAGEDIR}${DATADIR}/MANIFESTS + +post-install-ZSH-on: @${MKDIR} ${STAGEDIR}${PREFIX}/share/zsh/site-functions/ ${INSTALL_DATA} ${WRKSRC}/completions/zsh/_poudriere \ ${STAGEDIR}${PREFIX}/share/zsh/site-functions/ - ${LN} -fs ${LOCALBASE}/share/freebsd/MANIFESTS \ - ${STAGEDIR}${DATADIR}/MANIFESTS .include