forked from Lainports/freebsd-ports
- Update to 2.0.0
- Use PORTVERSION over DISTVERSION
- Update minimum RUN_DEPENDS versions
- Seperate OPTIONS from OPTIONS_DESC's
Changes: 2.0.0 - 2015-03-05
* Add support for http proxies
* Deactivate pkg's auto update feature by default
* Add support for firstboot-freebsd-update (disabled by default)
* [BACKWARDS INCOMPATIBLE] switched from ipfilter to pf
Note: you MUST convert any existing ipnat_rules to the new pf_nat_rules.
* Provide defaults for VirtualBox instances (less boilerplate)
* Set full /etc/ntp.conf instead of trying to fiddle with an existing one.
* Support configuration as non-root user (Issue #62)
* Switched to semantic versioning (see http://semver.org)
29 lines
1,009 B
Makefile
29 lines
1,009 B
Makefile
# Created by: Kubilay Kocak <koobs@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= bsdploy
|
|
PORTVERSION= 2.0.0
|
|
CATEGORIES= sysutils python
|
|
MASTER_SITES= CHEESESHOP
|
|
|
|
MAINTAINER= koobs@FreeBSD.org
|
|
COMMENT= Container Management for FreeBSD Jails
|
|
|
|
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}yaml>0:${PORTSDIR}/devel/py-yaml \
|
|
${PYTHON_PKGNAMEPREFIX}Jinja2>0:${PORTSDIR}/devel/py-Jinja2 \
|
|
${PYTHON_PKGNAMEPREFIX}liblzma>0:${PORTSDIR}/archivers/py-liblzma \
|
|
${PYTHON_PKGNAMEPREFIX}ploy>=1.1.0:${PORTSDIR}/sysutils/py-ploy \
|
|
${PYTHON_PKGNAMEPREFIX}ploy_ansible>=1.2.4:${PORTSDIR}/sysutils/py-ploy_ansible \
|
|
${PYTHON_PKGNAMEPREFIX}ploy_ezjail>=1.1.0:${PORTSDIR}/sysutils/py-ploy_ezjail \
|
|
${PYTHON_PKGNAMEPREFIX}ploy_fabric>=1.1.0:${PORTSDIR}/sysutils/py-ploy_fabric
|
|
|
|
OPTIONS_DEFINE= EC2
|
|
OPTIONS_DEFAULT= EC2
|
|
|
|
EC2_DESC= Support Amazon Web Services EC2 hosts
|
|
EC2_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}ploy_ec2>0:${PORTSDIR}/sysutils/py-ploy_ec2
|
|
|
|
USES= python:-2.7 zip
|
|
USE_PYTHON= autoplist distutils
|
|
|
|
.include <bsd.port.mk>
|