From owner-svn-ports-all@freebsd.org Thu Feb 6 19:24:43 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 4B779236C5F; Thu, 6 Feb 2020 19:24:43 +0000 (UTC) (envelope-from sunpoet@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 48D7ff6zS1z4VZw; Thu, 6 Feb 2020 19:24:42 +0000 (UTC) (envelope-from sunpoet@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 BDFD02089E; Thu, 6 Feb 2020 19:24:42 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 016JOgDf043242; Thu, 6 Feb 2020 19:24:42 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 016JOfFx043236; Thu, 6 Feb 2020 19:24:41 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <202002061924.016JOfFx043236@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 6 Feb 2020 19:24:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r525404 - in head/devel: . py-oslo.upgradecheck X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: in head/devel: . py-oslo.upgradecheck X-SVN-Commit-Revision: 525404 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.29 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, 06 Feb 2020 19:24:43 -0000 Author: sunpoet Date: Thu Feb 6 19:24:41 2020 New Revision: 525404 URL: https://svnweb.freebsd.org/changeset/ports/525404 Log: Add py-oslo.upgradecheck 0.3.2 Common code for writing OpenStack upgrade checks This project contains the common code necessary for writing upgrade checks in OpenStack projects. It includes a module (oslo_upgradecheck.upgradecheck) for the common code as well as an example (oslo_upgradecheck.__main__) of integrating that code into a project. WWW: https://docs.openstack.org/oslo.upgradecheck/latest/ WWW: https://github.com/openstack/oslo.upgradecheck Added: head/devel/py-oslo.upgradecheck/ head/devel/py-oslo.upgradecheck/Makefile (contents, props changed) head/devel/py-oslo.upgradecheck/distinfo (contents, props changed) head/devel/py-oslo.upgradecheck/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Thu Feb 6 19:24:35 2020 (r525403) +++ head/devel/Makefile Thu Feb 6 19:24:41 2020 (r525404) @@ -4676,6 +4676,7 @@ SUBDIR += py-oslo.rootwrap SUBDIR += py-oslo.serialization SUBDIR += py-oslo.service + SUBDIR += py-oslo.upgradecheck SUBDIR += py-oslo.utils SUBDIR += py-oslo.versionedobjects SUBDIR += py-oslo.vmware Added: head/devel/py-oslo.upgradecheck/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-oslo.upgradecheck/Makefile Thu Feb 6 19:24:41 2020 (r525404) @@ -0,0 +1,29 @@ +# Created by: Po-Chuan Hsieh +# $FreeBSD$ + +PORTNAME= oslo.upgradecheck +PORTVERSION= 0.3.2 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Common code for writing OpenStack upgrade checks + +LICENSE= APACHE20 +LICENSE_FILE= ${WRKSRC}/LICENSE + +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pbr>=0:devel/py-pbr@${PY_FLAVOR} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}Babel>=1.3:devel/py-babel@${PY_FLAVOR} \ + ${PY_ENUM34} \ + ${PYTHON_PKGNAMEPREFIX}oslo.config>=5.2.0:devel/py-oslo.config@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}oslo.i18n>=3.15.3:devel/py-oslo.i18n@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pbr>=0:devel/py-pbr@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}prettytable>=0.7.1<0.8:devel/py-prettytable@${PY_FLAVOR} + +USES= python +USE_PYTHON= autoplist concurrent distutils + +NO_ARCH= yes + +.include Added: head/devel/py-oslo.upgradecheck/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-oslo.upgradecheck/distinfo Thu Feb 6 19:24:41 2020 (r525404) @@ -0,0 +1,3 @@ +TIMESTAMP = 1581007146 +SHA256 (oslo.upgradecheck-0.3.2.tar.gz) = a9533bb9e86cdcce4990218fb4b288b17ec797d60eb09cb5fa39f8be1199e069 +SIZE (oslo.upgradecheck-0.3.2.tar.gz) = 14706 Added: head/devel/py-oslo.upgradecheck/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-oslo.upgradecheck/pkg-descr Thu Feb 6 19:24:41 2020 (r525404) @@ -0,0 +1,9 @@ +Common code for writing OpenStack upgrade checks + +This project contains the common code necessary for writing upgrade checks in +OpenStack projects. It includes a module (oslo_upgradecheck.upgradecheck) for +the common code as well as an example (oslo_upgradecheck.__main__) of +integrating that code into a project. + +WWW: https://docs.openstack.org/oslo.upgradecheck/latest/ +WWW: https://github.com/openstack/oslo.upgradecheck