5b817f9b7c
v2.10.13 ======== Minor Changes ------------- - Allow unsafe_writes to be set on target via env var, for those targets that need a blanket setting. Bugfixes -------- - Setup virtualization_facts - add RHV and oVirt type. This change will fully work for VMs in clusters at cluster level 4.4 or newer (https://github.com/ansible/ansible/pull/72876). - ansible-test - allow to ignore ``rstcheck`` errors (https://github.com/ansible/ansible/pull/75272). - callback default, now uses task delegate_to instead of delegate vars to display delegate to host - callbacks, restores missing delegate_vars - dnf module - Use all components of a package name to determine if it's installed (https://github.com/ansible/ansible/issues/75311).
65 lines
2.4 KiB
Makefile
65 lines
2.4 KiB
Makefile
# $NetBSD: Makefile,v 1.8 2021/08/27 08:00:25 adam Exp $
|
|
|
|
DISTNAME= ansible-base-2.10.13
|
|
CATEGORIES= sysutils python
|
|
MASTER_SITES= ${MASTER_SITE_PYPI:=a/ansible-base/}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://ansible.com/
|
|
COMMENT= SSH-based configuration management, deployment, and task execution
|
|
LICENSE= gnu-gpl-v3
|
|
|
|
CONFLICTS+= ansible<2.10
|
|
|
|
DEPENDS+= ${PYPKGPREFIX}-cryptography-[0-9]*:../../security/py-cryptography
|
|
DEPENDS+= ${PYPKGPREFIX}-jinja2-[0-9]*:../../textproc/py-jinja2
|
|
DEPENDS+= ${PYPKGPREFIX}-packaging-[0-9]*:../../devel/py-packaging
|
|
DEPENDS+= ${PYPKGPREFIX}-paramiko-[0-9]*:../../security/py-paramiko
|
|
DEPENDS+= ${PYPKGPREFIX}-yaml-[0-9]*:../../textproc/py-yaml
|
|
|
|
USE_TOOLS+= gmake
|
|
|
|
PKG_SYSCONFSUBDIR= ansible
|
|
EGDIR= ${PREFIX}/share/examples/ansible
|
|
|
|
REPLACE_PYTHON= test/lib/ansible_test/_data/*.py
|
|
REPLACE_PYTHON+= test/lib/ansible_test/_data/*/*.py
|
|
REPLACE_PYTHON+= test/lib/ansible_test/_data/*/*/*.py
|
|
|
|
CHECK_INTERPRETER_SKIP+= ${PYSITELIB}/ansible_test/_data/requirements/sanity.ps1
|
|
CHECK_INTERPRETER_SKIP+= ${PYSITELIB}/ansible_test/_data/sanity/pslint/pslint.ps1
|
|
CHECK_INTERPRETER_SKIP+= ${PYSITELIB}/ansible_test/_data/sanity/validate-modules/validate_modules/ps_argspec.ps1
|
|
|
|
SUBST_CLASSES+= paths
|
|
SUBST_STAGE.paths= pre-configure
|
|
SUBST_FILES.paths+= docs/man/man1/*.1
|
|
SUBST_FILES.paths+= examples/ansible.cfg
|
|
SUBST_FILES.paths+= examples/hosts
|
|
SUBST_FILES.paths+= lib/ansible/config/base.yml
|
|
SUBST_FILES.paths+= lib/ansible/module_utils/urls.py
|
|
SUBST_MESSAGE.paths= Fixing hardcoded paths.
|
|
SUBST_SED.paths= -e "s,/usr/share/ansible,${PREFIX}/share/ansible,g"
|
|
SUBST_SED.paths+= -e "s,/etc/ansible,${PKG_SYSCONFDIR},g"
|
|
|
|
INSTALLATION_DIRS= bin ${PKGMANDIR}/man1 ${EGDIR}
|
|
OWN_DIRS= ${PREFIX}/share/ansible
|
|
|
|
CONF_FILES= ${EGDIR}/ansible.cfg ${PKG_SYSCONFDIR}/ansible.cfg
|
|
CONF_FILES+= ${EGDIR}/hosts ${PKG_SYSCONFDIR}/hosts
|
|
|
|
# Contains hardcoded paths to expected locations of package managers.
|
|
CHECK_WRKREF_SKIP+= */ansible/module_utils/facts/system/pkg_mgr.py
|
|
|
|
post-install:
|
|
.for f in ansible-console.1 ansible-doc.1 ansible-galaxy.1 ansible-inventory.1 \
|
|
ansible-playbook.1 ansible-pull.1 ansible-vault.1 ansible.1
|
|
${INSTALL_MAN} ${WRKSRC}/docs/man/man1/${f} ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1/
|
|
.endfor
|
|
.for f in ansible.cfg hosts
|
|
${INSTALL_DATA} ${WRKSRC}/examples/${f} ${DESTDIR}/${EGDIR}
|
|
.endfor
|
|
|
|
.include "../../lang/python/application.mk"
|
|
.include "../../lang/python/egg.mk"
|
|
.include "../../lang/python/tool.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|