From owner-svn-ports-all@freebsd.org Sat Nov 21 12:44:36 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7033BA32EE5; Sat, 21 Nov 2015 12:44:36 +0000 (UTC) (envelope-from antoine.brodin.freebsd@gmail.com) Received: from mail-ig0-x22a.google.com (mail-ig0-x22a.google.com [IPv6:2607:f8b0:4001:c05::22a]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 3B2761F07; Sat, 21 Nov 2015 12:44:36 +0000 (UTC) (envelope-from antoine.brodin.freebsd@gmail.com) Received: by igcto18 with SMTP id to18so29767512igc.0; Sat, 21 Nov 2015 04:44:35 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:date:message-id:subject :from:to:cc:content-type; bh=c3Ke+ks/O8UhHWJ4jNYEemD/ENAoYPFtcKkONZRIOAU=; b=LNRTCOmzDv2T9jSP6eCaX1T3sTMyGXv1PiqC/eSk6xwFXK7rwFFV9mN53Nai/efQyw 1ZDhguVAvRcZNrp7p92E02MmMaAKGcn8T5OO5IYNmfnmWkIp/ngLG0QQ+Ro9ShTKbGq9 5mxcRi+Lr08dodhiOq2d8gjTsAoXT3K52lSCEYiIuehn7Vlw6hVSMwpJkjX3R5nM2ElN cmvDLfqFuUUvnTRKtPJuvOJLvT6AfH/qBCj9Sxeh+ggIpwpsUFG2DDMbh5MTLf/soI3L nVAC+bSoL9Q5rZvI5/OzPg8R+le67p9Kanf6i3XIw4+jrUsMCCjRQyySI+8ICXGcyGCx BLBg== MIME-Version: 1.0 X-Received: by 10.50.23.114 with SMTP id l18mr1870221igf.24.1448109875642; Sat, 21 Nov 2015 04:44:35 -0800 (PST) Sender: antoine.brodin.freebsd@gmail.com Received: by 10.107.182.67 with HTTP; Sat, 21 Nov 2015 04:44:35 -0800 (PST) In-Reply-To: <201511211041.tALAfwto073387@repo.freebsd.org> References: <201511211041.tALAfwto073387@repo.freebsd.org> Date: Sat, 21 Nov 2015 12:44:35 +0000 X-Google-Sender-Auth: U79ygqWiZjHWjG0JEgeNq82LvRM Message-ID: Subject: Re: svn commit: r402147 - in head/www: . py3-aiohttp From: Antoine Brodin To: Muhammad Moinur Rahman Cc: "ports-committers@freebsd.org" , "svn-ports-all@freebsd.org" , "svn-ports-head@freebsd.org" Content-Type: text/plain; charset=UTF-8 X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 21 Nov 2015 12:44:36 -0000 On Sat, Nov 21, 2015 at 10:41 AM, Muhammad Moinur Rahman wrote: > Author: bofh > Date: Sat Nov 21 10:41:58 2015 > New Revision: 402147 > URL: https://svnweb.freebsd.org/changeset/ports/402147 > > Log: > [NEW] www/py3-aiohttp: HTTP client/server for asyncio > > - Python3 specific version for www/py-aiohttp; although this uses a version > 3.3+ but unfortunately the dependent still uses version 2 > > HTTP client/server for Python asyncio (PEP-3156) Hi, I removed this port as it is duplicate of www/py-aiohttp. Please modify www/py-aiohttp to fit your needs instead. Antoine (with hat: portmgr) > Features: > > * Compression (deflate) > * HTTP Basic Authenntication > * Chunked Transfer Encoding > * Connection Pooling > * Session Cookies > * Custom Request/Response classes > > WWW: https://github.com/KeepSafe/aiohttp > > Added: > head/www/py3-aiohttp/ > head/www/py3-aiohttp/Makefile (contents, props changed) > head/www/py3-aiohttp/distinfo (contents, props changed) > head/www/py3-aiohttp/pkg-descr (contents, props changed) > Modified: > head/www/Makefile > > Modified: head/www/Makefile > ============================================================================== > --- head/www/Makefile Sat Nov 21 09:37:25 2015 (r402146) > +++ head/www/Makefile Sat Nov 21 10:41:58 2015 (r402147) > @@ -1777,6 +1777,7 @@ > SUBDIR += py-wsgiauth > SUBDIR += py-wsgidav > SUBDIR += py-zope.app.wsgi > + SUBDIR += py3-aiohttp > SUBDIR += pyblosxom > SUBDIR += pycarddav > SUBDIR += pydio > > Added: head/www/py3-aiohttp/Makefile > ============================================================================== > --- /dev/null 00:00:00 1970 (empty, because file is newly added) > +++ head/www/py3-aiohttp/Makefile Sat Nov 21 10:41:58 2015 (r402147) > @@ -0,0 +1,35 @@ > +# Created by: Muhammad Moinur Rahman > +# $FreeBSD$ > + > +PORTNAME= aiohttp > +PORTVERSION= 0.16.3 > +CATEGORIES= www python > +MASTER_SITES= CHEESESHOP > +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} > + > +MAINTAINER= bofh@FreeBSD.org > +COMMENT= HTTP client/server for asyncio > + > +LICENSE= BSD2CLAUSE > +LICENSE_FILE= ${WRKSRC}/LICENSE.txt > + > +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}chardet>0:${PORTSDIR}/textproc/py3-chardet > +TEST_DEPENDS:= ${RUN_DEPENDS} \ > + ${PYTHON_PKGNAMEPREFIX}nose>0:${PORTSDIR}/devel/py-nose \ > + ${PYTHON_PKGNAMEPREFIX}gunicorn>0:${PORTSDIR}/www/py-gunicorn > + > +OPTIONS_DEFINE= TESTS > +TESTS_DESC= Install test suite requirements > +TESTS_BUILD_DEPENDS= ${TEST_DEPENDS} > + > +USES= python:3 > +USE_PYTHON= autoplist distutils > + > +post-install: > + ${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/aiohttp/_websocket.so > + ${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/aiohttp/_multidict.so > + > +regression-test: build > + @cd ${WRKSRC} && ${PYTHON_CMD} ${PYDISTUTILS_SETUP} test > + > +.include > > Added: head/www/py3-aiohttp/distinfo > ============================================================================== > --- /dev/null 00:00:00 1970 (empty, because file is newly added) > +++ head/www/py3-aiohttp/distinfo Sat Nov 21 10:41:58 2015 (r402147) > @@ -0,0 +1,2 @@ > +SHA256 (aiohttp-0.16.3.tar.gz) = eaf479acc98ffee0a029882465ebf21f3c302e1b94a41b16c8a5a695bc614900 > +SIZE (aiohttp-0.16.3.tar.gz) = 1442720 > > Added: head/www/py3-aiohttp/pkg-descr > ============================================================================== > --- /dev/null 00:00:00 1970 (empty, because file is newly added) > +++ head/www/py3-aiohttp/pkg-descr Sat Nov 21 10:41:58 2015 (r402147) > @@ -0,0 +1,12 @@ > +HTTP client/server for Python asyncio (PEP-3156) > + > +Features: > + > + * Compression (deflate) > + * HTTP Basic Authenntication > + * Chunked Transfer Encoding > + * Connection Pooling > + * Session Cookies > + * Custom Request/Response classes > + > +WWW: https://github.com/KeepSafe/aiohttp >