forked from Lainports/freebsd-ports
The net/py-libcloud port doesn't work without security/py-backports.ssl_match_hostname being installed. But security/py-backports.ssl_match_hostname is scheduled for deletion, so make libcloud work without the backport. PR: 200834 Submitted by: swills
26 lines
638 B
Makefile
26 lines
638 B
Makefile
# Created by: Greg Larkin <glarkin@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= libcloud
|
|
PORTVERSION= 0.17.0
|
|
PORTREVISION= 1
|
|
CATEGORIES= net python
|
|
MASTER_SITES= APACHE/${PORTNAME}
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
DISTNAME= apache-${PORTNAME}-${PORTVERSION}
|
|
|
|
MAINTAINER= novel@FreeBSD.org
|
|
COMMENT= Standard client library for many popular cloud providers
|
|
|
|
LICENSE= APACHE20
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
USES= cpe python tar:bzip2
|
|
USE_PYTHON= distutils autoplist
|
|
CPE_VENDOR= apache
|
|
|
|
post-extract:
|
|
@${MV} ${WRKSRC}/libcloud/test ${WRKSRC}/test # no need to install tests
|
|
@${FIND} ${WRKSRC} -name "*.rej" -delete
|
|
|
|
.include <bsd.port.mk>
|