pkgsrc/sysutils/fabric/Makefile
gls 5295525492 Updated sysutils/fabric to 1.8.0
pkgsrc changes:
---------------
FETCH_USING=curl, pypi serves files over https now.

upstream changes:
-----------------

1.8.0 2013-09-20
[Feature] #910: Added a keyword argument to rsync_project to configure the
 default options. Thanks to @moorepants for the patch.
[Support] #984: Make this changelog easier to read! Now with per-release
 sections, generated automatically from the old timeline source format.
[Feature] #931: Allow overriding of abort behavior via a custom
 exception-returning callable set as env.abort_exception.
 Thanks to Chris Rose for the patch.
2013-10-21 18:09:30 +00:00

35 lines
1 KiB
Makefile

# $NetBSD: Makefile,v 1.31 2013/10/21 18:09:30 gls Exp $
VERSION= 1.8.0
DISTNAME= Fabric-${VERSION}
PKGNAME= ${DISTNAME:S/F/f/}
CATEGORIES= sysutils net
MASTER_SITES= http://pypi.python.org/packages/source/F/Fabric/
FETCH_USING= curl
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
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}/docs && pax -wr -pma *.rst api/contrib/*.rst \
api/core/*.rst usage/* \
${DESTDIR}${PREFIX}/share/doc/fabric/.
.include "../../lang/python/egg.mk"
.include "../../mk/bsd.pkg.mk"