Files
ports/sysutils/py-ansible-base/Makefile
Stefan Eßer bcaf25a8c8 Fix CONFLICTS entries of multiple ports
There have been lots of missing CONFLICTS_INSTALL entries, either
because conflicting ports were added without updating existing ports,
due to name changes of generated packages, due to mis-understanding
the format and semantics of the conflicts entries, or just due to
typoes in package names.

This patch is the result of a comparison of all files contained in
the official packages with each other. This comparison was based on
packages built with default options and may therefore have missed
further conflicts with optionally installed files.

Where possible, version numbers in conflicts entries have been
generalized, some times taking advantage of the fact that a port
cannot conflict with itself (due to logic in bsd.port.mk that
supresses the pattern match result in that case).

A few ports that set the conflicts variables depending on complex
conditions (e.g. port options), have been left unmodified, despite
probably containing outdated package names.

These changes should only affect the installation of locally built
ports, not the package building with poudriere. They should give an
early indication of the install conflict in cases where currently
the pkg command aborts an installation when it detects that an
existing file would be overwritten,

Approved by:	portmgr (implicit)
2022-01-10 16:15:39 +01:00

107 lines
4.0 KiB
Makefile

PORTNAME= ansible-base
DISTVERSION= 2.10.15
CATEGORIES= sysutils python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
PATCH_SITES= https://github.com/ansible/ansible/commit/
PATCHFILES= 6459fbb7bcf792aac9208d7851bf1edeb0495295.patch:-p1
MAINTAINER= 0mp@FreeBSD.org
COMMENT= Radically simple IT automation
LICENSE= GPLv3+
LICENSE_FILE= ${WRKSRC}/COPYING
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}cryptography>0:security/py-cryptography@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}Jinja2>0:devel/py-Jinja2@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}packaging>=0:devel/py-packaging@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}resolvelib05>0:devel/py-resolvelib05@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}yaml>0:devel/py-yaml@${PY_FLAVOR}
TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}bcrypt>=0:security/py-bcrypt@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}boto3>0:www/py-boto3@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}mock>0:devel/py-mock@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}nose>0:devel/py-nose@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}passlib>0:security/py-passlib@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}pycrypto>=0:security/py-pycrypto@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}pytest-mock>0:devel/py-pytest-mock@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}pytest-xdist>0:devel/py-pytest-xdist@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}pytest>0:devel/py-pytest@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}requests>0:www/py-requests@${PY_FLAVOR}
USES= ansible:env cpe gmake python:3.6+ shebangfix
CPE_VENDOR= redhat
CPE_PRODUCT= ansible
USE_PYTHON= autoplist concurrent distutils
SHEBANG_REGEX= [.]/test/.*[.]py
TEST_ARGS= VERSION=${DISTVERSION} \
PYTHON=${PYTHON_CMD} \
DATE=
TEST_ENV= PYTHON_VERSION=${PYTHON_VER} \
TEST_FLAGS=-vv
TEST_TARGET= tests
CONFLICTS= py*-ansible-core py*-ansible2
NO_ARCH= yes
PLIST_FILES= share/man/man1/ansible-config.1.gz \
share/man/man1/ansible-console.1.gz \
share/man/man1/ansible-doc.1.gz \
share/man/man1/ansible-galaxy.1.gz \
share/man/man1/ansible-inventory.1.gz \
share/man/man1/ansible-playbook.1.gz \
share/man/man1/ansible-pull.1.gz \
share/man/man1/ansible-vault.1.gz \
share/man/man1/ansible.1.gz
PORTEXAMPLES= ansible.cfg hosts
OPTIONS_DEFINE= DOCS EXAMPLES
post-patch:
# Preserve the original paths in
# test/units/cli/galaxy/test_execute_list_collection.py.
# Replacing /usr/share/ansible breaks tests.
${FIND} ${WRKSRC} -not -regex '${WRKSRC}/test/units/cli/galaxy/test_execute_list_collection.py' -type f -print0 | \
${XARGS} -0 ${REINPLACE_CMD} \
-e 's|/etc/ansible|${ETCDIR}|g' \
-e 's|/usr/share/ansible|${DATADIR}|g'
${FIND} ${WRKSRC} -type f -name "*.bak" -delete
post-install:
@${MKDIR} ${STAGEDIR}${MAN1PREFIX}/man/man1
${INSTALL_MAN} ${WRKSRC}/docs/man/man1/*.1 \
${STAGEDIR}${MAN1PREFIX}/share/man/man1
post-install-EXAMPLES-on:
@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
${INSTALL_DATA} ${WRKSRC}/examples/ansible.cfg ${STAGEDIR}${EXAMPLESDIR}
${INSTALL_DATA} ${WRKSRC}/examples/hosts ${STAGEDIR}${EXAMPLESDIR}
post-stage:
${FIND} ${STAGEDIR}${PREFIX}/bin -type l -name ansible-\* -lname ansible \
-execdir ${RLN} ansible-${PYTHON_VER} {} \;
# USE_PYTHON=autoplist doesn't add this file to pkg-plist.
${RM} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/ansible_test/_data/injector/ansible-inventory
pre-test:
# This one file does not get its paths replaced correctly in post-patch.
${REINPLACE_CMD} 's|"/etc"|"${ETCDIR:H}"|g' \
${WRKSRC}/test/units/playbook/test_helpers.py
# This test constructs a Python script inline and uses an invalid path to it.
${REINPLACE_CMD} 's|/usr/bin/python|${PYTHON_CMD}|' \
${WRKSRC}/test/units/modules/test_async_wrapper.py
# Disable some tests:
# - Skip the SELinux tests, it's not present on FreeBSD.
${RM} ${WRKSRC}/test/units/module_utils/basic/test_selinux.py
# - Failure detecting that emojis are of width 2 instead of 1.
${RM} ${WRKSRC}/test/units/utils/test_display.py
.include <bsd.port.mk>
# Make sure that we override the unique DATADIR and ETCDIR set
# by the implicit USES=uniquefiles.
DATADIR= ${ANSIBLE_DATADIR}
ETCDIR= ${ANSIBLE_ETCDIR}