From owner-svn-ports-head@freebsd.org Fri Jun 16 16:27:36 2017 Return-Path: Delivered-To: svn-ports-head@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 577F8C77AF3; Fri, 16 Jun 2017 16:27:36 +0000 (UTC) (envelope-from wg@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 1BAD81D81; Fri, 16 Jun 2017 16:27:36 +0000 (UTC) (envelope-from wg@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5GGRZ04049263; Fri, 16 Jun 2017 16:27:35 GMT (envelope-from wg@FreeBSD.org) Received: (from wg@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5GGRYwT049259; Fri, 16 Jun 2017 16:27:34 GMT (envelope-from wg@FreeBSD.org) Message-Id: <201706161627.v5GGRYwT049259@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: wg set sender to wg@FreeBSD.org using -f From: William Grzybowski Date: Fri, 16 Jun 2017 16:27:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443712 - in head/www: . py-multidict X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Jun 2017 16:27:36 -0000 Author: wg Date: Fri Jun 16 16:27:34 2017 New Revision: 443712 URL: https://svnweb.freebsd.org/changeset/ports/443712 Log: www/py-multidict: Multidicts are useful for working with HTTP headers, URL query args etc. WWW: https://github.com/aio-libs/multidict Added: head/www/py-multidict/ head/www/py-multidict/Makefile (contents, props changed) head/www/py-multidict/distinfo (contents, props changed) head/www/py-multidict/pkg-descr (contents, props changed) Modified: head/www/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Fri Jun 16 15:33:49 2017 (r443711) +++ head/www/Makefile Fri Jun 16 16:27:34 2017 (r443712) @@ -1684,6 +1684,7 @@ SUBDIR += py-meld SUBDIR += py-meld3 SUBDIR += py-mt + SUBDIR += py-multidict SUBDIR += py-nevow SUBDIR += py-notebook SUBDIR += py-octoprint Added: head/www/py-multidict/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-multidict/Makefile Fri Jun 16 16:27:34 2017 (r443712) @@ -0,0 +1,20 @@ +# $FreeBSD$ + +PORTNAME= multidict +PORTVERSION= 2.1.6 +CATEGORIES= www python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= wg@FreeBSD.org +COMMENT= Multidict implementation + +LICENSE= APACHE20 +LICENSE_FILE= ${WRKSRC}/LICENSE + +BUILD_DEPENDS= cython:lang/cython + +USES= python:3.4+ +USE_PYTHON= autoplist distutils + +.include Added: head/www/py-multidict/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-multidict/distinfo Fri Jun 16 16:27:34 2017 (r443712) @@ -0,0 +1,3 @@ +TIMESTAMP = 1497630251 +SHA256 (multidict-2.1.6.tar.gz) = 9ec33a1da4d2096949e29ddd66a352aae57fad6b5483087d54566a2f6345ae10 +SIZE (multidict-2.1.6.tar.gz) = 101502 Added: head/www/py-multidict/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-multidict/pkg-descr Fri Jun 16 16:27:34 2017 (r443712) @@ -0,0 +1,3 @@ +Multidicts are useful for working with HTTP headers, URL query args etc. + +WWW: https://github.com/aio-libs/multidict