View | Details | Raw Unified | Return to bug 171114
Collapse All | Expand All

(-)./Makefile (-2 / +6 lines)
Lines 2-12 Link Here
2
# Date created:		2011-07-30
2
# Date created:		2011-07-30
3
# Whom:		Olivier Duchateau <duchateau.olivier@gmail.com>
3
# Whom:		Olivier Duchateau <duchateau.olivier@gmail.com>
4
#
4
#
5
# $FreeBSD: ports/www/py-requests/Makefile,v 1.20 2012/08/24 12:16:25 culot Exp $
5
# $FreeBSD: ports/www/py-requests/Makefile,v 1.18 2012/07/28 17:25:24 rm Exp $
6
#
6
#
7
7
8
PORTNAME=	requests
8
PORTNAME=	requests
9
PORTVERSION=	0.13.7
9
PORTVERSION=	0.13.9
10
CATEGORIES=	www python
10
CATEGORIES=	www python
11
MASTER_SITES=	CHEESESHOP
11
MASTER_SITES=	CHEESESHOP
12
PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
12
PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
Lines 22-25 Link Here
22
USE_PYTHON=	-3.1
22
USE_PYTHON=	-3.1
23
USE_PYDISTUTILS=	easy_install
23
USE_PYDISTUTILS=	easy_install
24
24
25
test: build
26
	${TOUCH} ${WRKSRC}/tests/__init__.py
27
	cd ${WRKSRC} && ${PYTHON_CMD} ${PYSETUP} test
28
25
.include <bsd.port.mk>
29
.include <bsd.port.mk>
(-)./distinfo (-2 / +2 lines)
Lines 1-2 Link Here
1
SHA256 (requests-0.13.7.tar.gz) = d9c6cf2890a0dc1200407f99130d334ef5ab5270bed3d9b4c14b0bb9c6cc3400
1
SHA256 (requests-0.13.9.tar.gz) = d887bb1c06948a8930d6e73a1f942f9febe9157a299a984994c20c84b2c21e20
2
SIZE (requests-0.13.7.tar.gz) = 521660
2
SIZE (requests-0.13.9.tar.gz) = 522477
(-)./files/patch-setup.py (-3 / +4 lines)
Lines 1-5 Link Here
1
--- ./setup.py.orig	2012-07-27 17:22:56.000000000 +1000
1
--- ./setup.py.orig	2012-08-06 16:46:03.000000000 +1000
2
+++ ./setup.py	2012-07-28 10:46:43.000000000 +1000
2
+++ ./setup.py	2012-08-27 20:38:32.000000000 +1000
3
@@ -15,8 +15,6 @@
3
@@ -15,8 +15,6 @@
4
     os.system('python setup.py sdist upload')
4
     os.system('python setup.py sdist upload')
5
     sys.exit()
5
     sys.exit()
Lines 29-37 Link Here
29
     install_requires=requires,
29
     install_requires=requires,
30
     license=open('LICENSE').read(),
30
     license=open('LICENSE').read(),
31
     classifiers=(
31
     classifiers=(
32
@@ -66,4 +60,5 @@
32
@@ -66,4 +60,6 @@
33
         'Programming Language :: Python :: 3.0',
33
         'Programming Language :: Python :: 3.0',
34
         'Programming Language :: Python :: 3.1',
34
         'Programming Language :: Python :: 3.1',
35
     ),
35
     ),
36
+    zip_safe=False,
36
+    zip_safe=False,
37
+    test_suite='tests',
37
 )
38
 )

Return to bug 171114