blob: 79c3109b87d4e3dd5a7a3e8b32c932884d75cfcf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
# $NetBSD: Makefile,v 1.29 2020/02/24 19:36:49 adam Exp $
DISTNAME= ansible-2.9.5
CATEGORIES= sysutils python
MASTER_SITES= https://releases.ansible.com/ansible/
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= https://www.ansible.com/
COMMENT= SSH-based configuration management, deployment, and task execution
LICENSE= gnu-gpl-v3
PREV_PKGPATH= sysutils/ansible2
DEPENDS+= ${PYPKGPREFIX}-cryptography-[0-9]*:../../security/py-cryptography
DEPENDS+= ${PYPKGPREFIX}-jinja2-[0-9]*:../../textproc/py-jinja2
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_FILES.paths+= lib/ansible/modules/system/setup.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 ${PKG_SYSCONFDIR} ${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"
|