Date: Sun, 23 Apr 2023 18:46:16 GMT From: Muhammad Moinur Rahman <bofh@FreeBSD.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org Subject: git: 4be85e0c51ec - main - devel/py-molecule: Update version 3.6.1=>4.0.0 Message-ID: <202304231846.33NIkGw9010182@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by bofh: URL: https://cgit.FreeBSD.org/ports/commit/?id=4be85e0c51ec8674032669bfa661ba6400000b16 commit 4be85e0c51ec8674032669bfa661ba6400000b16 Author: Muhammad Moinur Rahman <bofh@FreeBSD.org> AuthorDate: 2023-04-23 18:42:22 +0000 Commit: Muhammad Moinur Rahman <bofh@FreeBSD.org> CommitDate: 2023-04-23 18:46:02 +0000 devel/py-molecule: Update version 3.6.1=>4.0.0 - Remove OPTIONS AZURE, EC2 and GCE as they have been moved from default molecule and have their own packages now Changelog: https://github.com/ansible-community/molecule/releases/tag/v4.0.0 --- devel/py-molecule/Makefile | 24 ++++++++---------------- devel/py-molecule/distinfo | 6 +++--- 2 files changed, 11 insertions(+), 19 deletions(-) diff --git a/devel/py-molecule/Makefile b/devel/py-molecule/Makefile index 3a65211bd68c..c0f428f6d394 100644 --- a/devel/py-molecule/Makefile +++ b/devel/py-molecule/Makefile @@ -1,5 +1,5 @@ PORTNAME= molecule -PORTVERSION= 3.6.1 +PORTVERSION= 4.0.0 CATEGORIES= devel python MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -13,7 +13,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}setuptools_scm_git_archive>=1.0:devel/py-setuptools_scm_git_archive@${PY_FLAVOR} # click-help-colors >= 0.9 -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}ansible-compat>=1.0.0:sysutils/py-ansible-compat@${PY_FLAVOR} \ +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}ansible-compat>=2.1.0:sysutils/py-ansible-compat@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}Cerberus>=1.3.1:devel/py-cerberus@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}click>=8.0:devel/py-click@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}cookiecutter>=1.7.3:devel/py-cookiecutter@${PY_FLAVOR} \ @@ -21,7 +21,7 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}ansible-compat>=1.0.0:sysutils/py-ansible-co ${PYTHON_PKGNAMEPREFIX}Jinja2>=2.11.3:devel/py-Jinja2@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}packaging>0:devel/py-packaging@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}pluggy>=0.7.1:devel/py-pluggy@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}rich>-9.5.1:textproc/py-rich@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}rich>=9.5.1:textproc/py-rich@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}yaml>=5.1:devel/py-yaml@${PY_FLAVOR} # ansi2html >= 1.6.0 # pytest-cov >= 2.10.1 @@ -52,28 +52,20 @@ TEST_ENV= LANG=en_US.UTF-8 \ NO_ARCH= yes -OPTIONS_DEFINE= AZURE DOCKER DOCS EC2 GCE LINT +OPTIONS_DEFINE= DOCKER DOCS LINT OPTIONS_DEFAULT= LINT -AZURE_DESC= For testing on Microsoft Azure Platform DOCKER_DESC= For testing on Docker Platform(Remote) -EC2_DESC= For testing on Amazon EC2 Platform -GCE_DESC= For testing on Google Compute Engine Platform LINT_DESC= For linting molecule itself -AZURE_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}azure-cli>0:sysutils/py-azure-cli@${PY_FLAVOR} DOCKER_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}docker>=2.0.0:sysutils/py-docker@${PY_FLAVOR} -# Sphinx >= 4.5.0, < 5.0.0 # https://github.com/sphinx-doc/sphinx/issues/10112 -# simplejson >= 3.17.2 # sphinx-ansible-theme >= 0.8.0, < 0.10.0 # sphinx-notfound-page >= 0.7.1 -DOCS_BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}ansible-core>-2.12.0:sysutils/py-ansible-core@${PY_FLAVOR} \ +DOCS_BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}Jinja2>=2.11.3:devel/py-Jinja2@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}ansible-core>=2.12.0:sysutils/py-ansible-core@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}simplejson>=3.17.2:devel/py-simplejson@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}sphinx>=4.3.1:textproc/py-sphinx@${PY_FLAVOR} -EC2_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}boto3>0:www/py-boto3@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}boto>0:devel/py-boto@${PY_FLAVOR} -GCE_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}libcloud>0:net/py-libcloud@${PY_FLAVOR} + ${PYTHON_PKGNAMEPREFIX}sphinx>=5.0.0:textproc/py-sphinx@${PY_FLAVOR} # lint = LINT_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}flake8>=3.8.4:devel/py-flake8@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}pre-commit>=1.21.0:devel/py-pre-commit@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pre-commit>=2.10.1:devel/py-pre-commit@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}yamllint>0:devel/py-yamllint@${PY_FLAVOR} do-test: diff --git a/devel/py-molecule/distinfo b/devel/py-molecule/distinfo index c045ece73438..8ce23204b2a5 100644 --- a/devel/py-molecule/distinfo +++ b/devel/py-molecule/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650744662 -SHA256 (molecule-3.6.1.tar.gz) = 3b7d5ba2978c15a034df8c7aa59dec5436f7d3260d1f9db2c78ae14ae3a9deeb -SIZE (molecule-3.6.1.tar.gz) = 296795 +TIMESTAMP = 1682274409 +SHA256 (molecule-4.0.0.tar.gz) = 31cbcdafb96a3e0df2a02ab49b4a4ce7d0c3129b34c351935612bf8097c999e2 +SIZE (molecule-4.0.0.tar.gz) = 299777
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202304231846.33NIkGw9010182>