3990b96aed
Changelog from 1.10.2 is long so it's not copied here. Changelog URL : http://www.fabfile.org/changelog.html
38 lines
1.1 KiB
Makefile
38 lines
1.1 KiB
Makefile
# $NetBSD: Makefile,v 1.44 2016/07/29 07:30:51 nils Exp $
|
|
|
|
VERSION= 1.11.1
|
|
DISTNAME= Fabric-${VERSION}
|
|
PKGNAME= ${DISTNAME:S/F/f/}
|
|
CATEGORIES= sysutils net
|
|
MASTER_SITES= ${MASTER_SITE_PYPI:=F/Fabric/}
|
|
|
|
MAINTAINER= gls@NetBSD.org
|
|
HOMEPAGE= http://fabfile.org/
|
|
COMMENT= Simple Pythonic remote deployment tool
|
|
LICENSE= 2-clause-bsd
|
|
|
|
DEPENDS+= ${PYPKGPREFIX}-paramiko>=1.10.0:../../security/py-paramiko
|
|
|
|
PYTHON_VERSIONS_INCOMPATIBLE= 33 34 35 # no support yet
|
|
|
|
USE_TOOLS+= pax
|
|
|
|
INSTALLATION_DIRS+= ${PKGMANDIR}/man1
|
|
INSTALLATION_DIRS+= share/doc/fabric
|
|
INSTALLATION_DIRS+= share/doc/fabric/api
|
|
INSTALLATION_DIRS+= share/doc/fabric/api/contrib
|
|
INSTALLATION_DIRS+= share/doc/fabric/api/core
|
|
INSTALLATION_DIRS+= share/doc/fabric/changes
|
|
INSTALLATION_DIRS+= share/doc/fabric/usage
|
|
|
|
post-install:
|
|
${INSTALL_MAN} files/fab.1 ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1/
|
|
|
|
cd ${WRKSRC}/sites/docs && pax -wr -pma *.rst api/contrib/*.rst \
|
|
api/core/*.rst usage/* \
|
|
${DESTDIR}${PREFIX}/share/doc/fabric/.
|
|
cd ${WRKSRC}/sites/www && pax -wr -pma *.rst \
|
|
${DESTDIR}${PREFIX}/share/doc/fabric/.
|
|
|
|
.include "../../lang/python/egg.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|