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

(-)Makefile (-1 / +1 lines)
Lines 2-8 Link Here
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTNAME=	requests
4
PORTNAME=	requests
5
PORTVERSION=	2.9.1
5
PORTVERSION=	2.10.0
6
CATEGORIES=	www python
6
CATEGORIES=	www python
7
MASTER_SITES=	CHEESESHOP
7
MASTER_SITES=	CHEESESHOP
8
PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
8
PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
(-)distinfo (-2 / +3 lines)
Lines 1-2 Link Here
1
SHA256 (requests-2.9.1.tar.gz) = c577815dd00f1394203fc44eb979724b098f88264a9ef898ee45b8e5e9cf587f
1
TIMESTAMP = 1464882911
2
SIZE (requests-2.9.1.tar.gz) = 484252
2
SHA256 (requests-2.10.0.tar.gz) = 63f1815788157130cee16a933b2ee184038e975f0017306d723ac326b5525b54
3
SIZE (requests-2.10.0.tar.gz) = 477617
(-)files/patch-setup.py (-19 lines)
Lines 1-19 Link Here
1
--- setup.py.orig	2015-06-05 04:36:25 UTC
2
+++ setup.py
3
@@ -27,6 +27,7 @@ packages = [
4
 ]
5
 
6
 requires = []
7
+tests_require = ['pytest']
8
 
9
 version = ''
10
 with open('requests/__init__.py', 'r') as fd:
11
@@ -54,6 +55,8 @@ setup(
12
     package_dir={'requests': 'requests'},
13
     include_package_data=True,
14
     install_requires=requires,
15
+    tests_require=tests_require,
16
+    test_suite='test_requests',
17
     license='Apache 2.0',
18
     zip_safe=False,
19
     classifiers=(

Return to bug 209988