From owner-svn-ports-head@freebsd.org Sat May 18 12:40:49 2019 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 922A915B1C37; Sat, 18 May 2019 12:40:49 +0000 (UTC) (envelope-from koobs@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 3606D8071E; Sat, 18 May 2019 12:40:49 +0000 (UTC) (envelope-from koobs@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 1151D1FAD4; Sat, 18 May 2019 12:40:49 +0000 (UTC) (envelope-from koobs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x4ICemks080554; Sat, 18 May 2019 12:40:48 GMT (envelope-from koobs@FreeBSD.org) Received: (from koobs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x4ICemih080551; Sat, 18 May 2019 12:40:48 GMT (envelope-from koobs@FreeBSD.org) Message-Id: <201905181240.x4ICemih080551@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: koobs set sender to koobs@FreeBSD.org using -f From: Kubilay Kocak Date: Sat, 18 May 2019 12:40:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r501961 - head/sysutils/bsdploy X-SVN-Group: ports-head X-SVN-Commit-Author: koobs X-SVN-Commit-Paths: head/sysutils/bsdploy X-SVN-Commit-Revision: 501961 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 3606D8071E X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.95 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.95)[-0.955,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 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: Sat, 18 May 2019 12:40:49 -0000 Author: koobs Date: Sat May 18 12:40:48 2019 New Revision: 501961 URL: https://svnweb.freebsd.org/changeset/ports/501961 Log: sysutils/bsdploy: Update to 2.3.0 Changelog: https://github.com/ployground/bsdploy/blob/2.3.0/CHANGES.rst Modified: head/sysutils/bsdploy/Makefile head/sysutils/bsdploy/distinfo head/sysutils/bsdploy/pkg-descr Modified: head/sysutils/bsdploy/Makefile ============================================================================== --- head/sysutils/bsdploy/Makefile Sat May 18 12:40:13 2019 (r501960) +++ head/sysutils/bsdploy/Makefile Sat May 18 12:40:48 2019 (r501961) @@ -2,34 +2,40 @@ # $FreeBSD$ PORTNAME= bsdploy -PORTVERSION= 2.1.0 +PORTVERSION= 2.3.0 CATEGORIES= sysutils python MASTER_SITES= CHEESESHOP MAINTAINER= koobs@FreeBSD.org -COMMENT= Container Management for FreeBSD Jails +COMMENT= Tool to remotely provision, configure and maintain FreeBSD jails +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE.txt + RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}yaml>0:devel/py-yaml@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}Jinja2>0:devel/py-Jinja2@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}setuptools>0:devel/py-setuptools@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}pyliblzma>0:archivers/py-pyliblzma@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}ploy>=1.2.0:sysutils/py-ploy@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}ploy>=1.5.0:sysutils/py-ploy@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}ploy_ansible>=1.3.0:sysutils/py-ploy_ansible@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}ploy_ezjail>=1.2.0:sysutils/py-ploy_ezjail@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}ploy_fabric>=1.1.0:sysutils/py-ploy_fabric@${PY_FLAVOR} +TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}mock>0:devel/py-mock@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pytest>=2.4.2:devel/py-pytest@${PY_FLAVOR} +USES= python:-2.7 +USE_PYTHON= autoplist concurrent distutils + OPTIONS_DEFINE= EC2 OPTIONS_DEFAULT= EC2 EC2_DESC= Support Amazon Web Services EC2 hosts EC2_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}ploy_ec2>0:sysutils/py-ploy_ec2@${PY_FLAVOR} -USES= python:-2.7 zip -USE_PYTHON= autoplist distutils - NO_ARCH= yes -post-extract: +do-test: ${RM} ${WRKSRC}/pytest.ini + @cd ${WRKSRC} && ${PYTHON_CMD} -m pytest -v -rs -k 'not test_virtualbox' .include Modified: head/sysutils/bsdploy/distinfo ============================================================================== --- head/sysutils/bsdploy/distinfo Sat May 18 12:40:13 2019 (r501960) +++ head/sysutils/bsdploy/distinfo Sat May 18 12:40:48 2019 (r501961) @@ -1,2 +1,3 @@ -SHA256 (bsdploy-2.1.0.zip) = 4ab415ae7c496e694b450a521a0b245ab672642d8360b16495033f0d229b7200 -SIZE (bsdploy-2.1.0.zip) = 103855 +TIMESTAMP = 1558180560 +SHA256 (bsdploy-2.3.0.tar.gz) = 14d54adf00bcc511a0a5617ada24540264133d086fbc91c48d9fa17347a0fc75 +SIZE (bsdploy-2.3.0.tar.gz) = 76926 Modified: head/sysutils/bsdploy/pkg-descr ============================================================================== --- head/sysutils/bsdploy/pkg-descr Sat May 18 12:40:13 2019 (r501960) +++ head/sysutils/bsdploy/pkg-descr Sat May 18 12:40:48 2019 (r501961) @@ -12,4 +12,4 @@ Its main design goal is to lower the barrier to repeat TASKNAME and have all of the hosts and their variables in fab.env. * Configure ZFS pools and filesystems with whole-disk-encryption. -WWW: http://docs.bsdploy.net/ +WWW: https://github.com/ployground/bsdploy