From owner-svn-ports-all@freebsd.org Thu Dec 10 09:52:54 2020 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 9C34247B9B9; Thu, 10 Dec 2020 09:52:54 +0000 (UTC) (envelope-from kai@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) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 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 4Cs8Nk45CMz3RC3; Thu, 10 Dec 2020 09:52:54 +0000 (UTC) (envelope-from kai@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 7EFF0168DF; Thu, 10 Dec 2020 09:52:54 +0000 (UTC) (envelope-from kai@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 0BA9qsxr001526; Thu, 10 Dec 2020 09:52:54 GMT (envelope-from kai@FreeBSD.org) Received: (from kai@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 0BA9qs9f001524; Thu, 10 Dec 2020 09:52:54 GMT (envelope-from kai@FreeBSD.org) Message-Id: <202012100952.0BA9qs9f001524@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kai set sender to kai@FreeBSD.org using -f From: Kai Knoblich Date: Thu, 10 Dec 2020 09:52:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r557421 - head/devel/py-oslotest X-SVN-Group: ports-head X-SVN-Commit-Author: kai X-SVN-Commit-Paths: head/devel/py-oslotest X-SVN-Commit-Revision: 557421 X-SVN-Commit-Repository: ports 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.34 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: Thu, 10 Dec 2020 09:52:54 -0000 Author: kai Date: Thu Dec 10 09:52:53 2020 New Revision: 557421 URL: https://svnweb.freebsd.org/changeset/ports/557421 Log: devel/py-oslotest: Update to 4.4.1 * Remove Python 2.7 support that was dropped with the 4.0.0 release. * Also remove the DOCS option as the documentation contains mostly references to external sites and isn't really useful for offline use. * Make port concurrent safe as some scripts are installed outside of the Python sitelib directory. Changelog since 3.2.0: https://docs.openstack.org/releasenotes/oslotest/ussuri.html Modified: head/devel/py-oslotest/Makefile head/devel/py-oslotest/distinfo Modified: head/devel/py-oslotest/Makefile ============================================================================== --- head/devel/py-oslotest/Makefile Thu Dec 10 09:49:22 2020 (r557420) +++ head/devel/py-oslotest/Makefile Thu Dec 10 09:52:53 2020 (r557421) @@ -1,8 +1,7 @@ # $FreeBSD$ PORTNAME= oslotest -DISTVERSION= 3.2.0 -PORTREVISION= 2 +DISTVERSION= 4.4.1 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -17,46 +16,15 @@ BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pbr>=2.0.0:devel RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}fixtures>=3.0.0:devel/py-fixtures@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}python-subunit>=1.0.0:devel/py-python-subunit@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}six>=1.10.0:devel/py-six@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}testrepository>=0.0.18:devel/py-testrepository@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}testtools>=2.2.0:devel/py-testtools@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}mock>=2.0.0:devel/py-mock@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}mox3>=0.20.0:devel/py-mox3@${PY_FLAVOR} \ bash>0:shells/bash -USES= python shebangfix -USE_PYTHON= distutils autoplist +USES= python:3.6+ shebangfix +USE_PYTHON= distutils concurrent autoplist SHEBANG_FILES= tools/oslo_debug_helper \ tools/oslo_run_cross_tests \ tools/oslo_run_pre_release_tests NO_ARCH= yes -PORTDOCS= * -OPTIONS_DEFINE= DOCS -DOCS_BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sphinx18>=1.6.2:textproc/py-sphinx18@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}openstackdocstheme>=1.18.1:textproc/py-openstackdocstheme@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}fixtures>=3.0.0:devel/py-fixtures@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}mock>=2.0.0:devel/py-mock@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}debtcollector>=0:devel/py-debtcollector@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}mox3>=0.20.0:devel/py-mox3@${PY_FLAVOR} -DOCS_VARS= PYDISTUTILS_BUILD_TARGET+="build_sphinx -a -E" - -post-install-DOCS-on: - @${MKDIR} ${STAGEDIR}${DOCSDIR} - (cd ${WRKSRC}/doc/build/html && \ - ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR} \ - "! -name .buildinfo -and ! -name objects.inv") - -.include - -.if ${PYTHON_REL} < 3600 -RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}os-client-config1>=1.28.0:devel/py-os-client-config1@${PY_FLAVOR} -DOCS_BUILD_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}os-client-config1>=1.28.0:devel/py-os-client-config1@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}oslo.config7>=5.2.0:devel/py-oslo.config7@${PY_FLAVOR} -.else -RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}os-client-config>=1.28.0:devel/py-os-client-config@${PY_FLAVOR} -DOCS_BUILD_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}os-client-config>=1.28.0:devel/py-os-client-config@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}oslo.config>=5.2.0:devel/py-oslo.config@${PY_FLAVOR} -.endif - -.include +.include Modified: head/devel/py-oslotest/distinfo ============================================================================== --- head/devel/py-oslotest/distinfo Thu Dec 10 09:49:22 2020 (r557420) +++ head/devel/py-oslotest/distinfo Thu Dec 10 09:52:53 2020 (r557421) @@ -1,3 +1,3 @@ -TIMESTAMP = 1527869591 -SHA256 (oslotest-3.2.0.tar.gz) = 70365c4f42dde9cfd86cf4c3f7827b70c3469056182a77d05ba4e2df25375ef5 -SIZE (oslotest-3.2.0.tar.gz) = 35445 +TIMESTAMP = 1604388396 +SHA256 (oslotest-4.4.1.tar.gz) = b1c4f6530685a1872c446b1a9e2ec138861f11bafacc30b7d892a25acad7a064 +SIZE (oslotest-4.4.1.tar.gz) = 34879