# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4 PortSystem 1.0 PortGroup python 1.0 PortGroup select 1.0 name py-ansible-core version 2.16.3 revision 0 license GPL-3+ categories-append sysutils supported_archs noarch platforms {darwin any} maintainers {adfernandes @adfernandes} {gmail.com:pedro.salgado @steenzout} openmaintainer homepage https://github.com/ansible/ansible description SSH-based configuration management and deployment system checksums rmd160 8740d3ba6592f85035a7a211fd6dae141832caee \ sha256 76a8765a8586064ef073a299562e308fa2c180a75b5f7569bbd0f61d4171cdb3 \ size 3168893 conflicts ansible long_description \ Ansible is a radically simple model-driven configuration \ management, multi-node deployment, and remote task execution \ system. Ansible works over SSH and does not require any software \ or daemons to be installed on remote nodes. Extension modules can \ be written in any language and are transferred to managed machines \ automatically. python.versions 39 310 311 312 python.pep517 yes if {${name} ne ${subport}} { patch { fs-traverse f ${worksrcpath} { if {[file isfile ${f}] && [regexp {\.(py|yml|yaml)$} ${f} match]} { reinplace -q "s#/etc/ansible#${prefix}/etc/ansible#g" ${f} reinplace -q "s#/usr/share/ansible#${prefix}/share/ansible#g" ${f} } } } depends_lib-append port:py${python.version}-six \ port:py${python.version}-paramiko \ port:py${python.version}-httplib2 \ port:py${python.version}-jinja2 \ port:py${python.version}-yaml \ port:py${python.version}-setuptools \ port:py${python.version}-cryptography \ port:py${python.version}-packaging \ port:py${python.version}-resolvelib \ port:ansible_select select.group ansible select.file ${filespath}/py${python.version}-ansible build.env-append ANSIBLE_SKIP_CONFLICT_CHECK=1 destroot.env-append ANSIBLE_SKIP_CONFLICT_CHECK=1 notes " To make the Python ${python.branch} version of Ansible the one that is run\ when you execute the commands without a version suffix, e.g. 'ansible', run: port select --set ${select.group} [file tail ${select.file}] " }