diff options
author | miwi <miwi@FreeBSD.org> | 2012-06-05 10:36:38 +0800 |
---|---|---|
committer | miwi <miwi@FreeBSD.org> | 2012-06-05 10:36:38 +0800 |
commit | 1b3bbd0115164b05dfb79adf16885974589be0d5 (patch) | |
tree | 76b8098b0fecf62f384691c8c12e124edd2b6a2a /www/py-grequests | |
parent | 59478dfc1947058fe0b4159cbd36b8b14f574cf3 (diff) | |
download | freebsd-ports-graphics-1b3bbd0115164b05dfb79adf16885974589be0d5.tar.gz freebsd-ports-graphics-1b3bbd0115164b05dfb79adf16885974589be0d5.tar.zst freebsd-ports-graphics-1b3bbd0115164b05dfb79adf16885974589be0d5.zip |
GRequests allows you to use Requests with Gevent to make asyncronous HTTP
Requests easily.
WWW: https://github.com/kennethreitz/grequests
PR: ports/168554
Submitted by: koobs <koobs.freebsd@gmail.com>
Diffstat (limited to 'www/py-grequests')
-rw-r--r-- | www/py-grequests/Makefile | 25 | ||||
-rw-r--r-- | www/py-grequests/distinfo | 2 | ||||
-rw-r--r-- | www/py-grequests/files/patch-setup.py | 20 | ||||
-rw-r--r-- | www/py-grequests/pkg-descr | 4 | ||||
-rw-r--r-- | www/py-grequests/pkg-plist | 4 |
5 files changed, 55 insertions, 0 deletions
diff --git a/www/py-grequests/Makefile b/www/py-grequests/Makefile new file mode 100644 index 00000000000..78db7f59862 --- /dev/null +++ b/www/py-grequests/Makefile @@ -0,0 +1,25 @@ +# New ports collection makefile for: py-grequests +# Date created: 2012-05-31 +# Whom: koobs <koobs.freebsd@gmail.com> +# +# $FreeBSD$ +# + +PORTNAME= grequests +PORTVERSION= 0.1.0 +CATEGORIES= www python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= koobs.freebsd@gmail.com +COMMENT= Pythons Requests + Gevent + +LICENSE= BSD + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}gevent>0:${PORTSDIR}/devel/py-gevent \ + ${PYTHON_PKGNAMEPREFIX}requests>0:${PORTSDIR}/www/py-requests + +USE_PYTHON= yes +USE_PYDISTUTILS=yes + +.include <bsd.port.mk> diff --git a/www/py-grequests/distinfo b/www/py-grequests/distinfo new file mode 100644 index 00000000000..e95943d1911 --- /dev/null +++ b/www/py-grequests/distinfo @@ -0,0 +1,2 @@ +SHA256 (grequests-0.1.0.tar.gz) = 73fa312f3d4b62f038a44c0a56cd3b27973b57208befbaaf96db3683fa02e2b9 +SIZE (grequests-0.1.0.tar.gz) = 2424 diff --git a/www/py-grequests/files/patch-setup.py b/www/py-grequests/files/patch-setup.py new file mode 100644 index 00000000000..0abb3f5abb3 --- /dev/null +++ b/www/py-grequests/files/patch-setup.py @@ -0,0 +1,20 @@ +--- ./setup.py.orig 2012-05-11 08:20:48.000000000 +1000 ++++ ./setup.py 2012-06-02 19:09:45.000000000 +1000 +@@ -29,7 +29,7 @@ + + """ + +-from setuptools import setup ++from distutils.core import setup + + setup( + name='grequests', +@@ -41,8 +41,6 @@ + description='Requests + Gevent', + long_description=__doc__, + py_modules=['grequests'], +- zip_safe=False, +- include_package_data=True, + platforms='any', + classifiers=[ + 'Environment :: Web Environment', diff --git a/www/py-grequests/pkg-descr b/www/py-grequests/pkg-descr new file mode 100644 index 00000000000..282b8dfe72e --- /dev/null +++ b/www/py-grequests/pkg-descr @@ -0,0 +1,4 @@ +GRequests allows you to use Requests with Gevent to make asyncronous HTTP +Requests easily. + +WWW: https://github.com/kennethreitz/grequests diff --git a/www/py-grequests/pkg-plist b/www/py-grequests/pkg-plist new file mode 100644 index 00000000000..44b2e74dc11 --- /dev/null +++ b/www/py-grequests/pkg-plist @@ -0,0 +1,4 @@ +@comment $FreeBSD$ +%%PYTHON_SITELIBDIR%%/grequests.py +%%PYTHON_SITELIBDIR%%/grequests.pyc +%%PYTHON_SITELIBDIR%%/grequests.pyo |