blob: c21376c054c15aa569374a105e237163098d8522 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# New ports collection makefile for: py-urllib3
# Date created: 2012-01-09
# Whom: Olivier Duchateau <duchateau.olivier@gmail.com>
#
# $FreeBSD$
#
PORTNAME= urllib3
PORTVERSION= 1.2.2
CATEGORIES= net python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= duchateau.olivier@gmail.com
COMMENT= Enhance HTTP Python's standard library
LICENSE= MIT
LICENSE_FILE= ${WRKSRC}/LICENSE.txt
USE_PYTHON= yes
USE_PYDISTUTILS= easy_install
post-patch:
@cd ${WRKSRC} && \
${FIND} . -type f -name '*.orig' -exec ${RM} -f \{\} \;
.include <bsd.port.mk>
|