6c119ef041
Changelog from 1.11.1 : - Fix a relative import in fabric.network to be correctly/consistently absolute instead. - Implement sudo-specific password caching. This can be used to work around issues where over-eager submission of env.password at login time causes authentication problems (e.g. during two-factor auth).
38 lines
1.1 KiB
Makefile
38 lines
1.1 KiB
Makefile
# $NetBSD: Makefile,v 1.46 2016/08/07 15:04:55 nils Exp $
|
|
|
|
VERSION= 1.12.0
|
|
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"
|