From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Sep 6 06:00:00 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id E40DECC0 for ; Fri, 6 Sep 2013 06:00:00 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id C3F02281B for ; Fri, 6 Sep 2013 06:00:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id r866002O090247 for ; Fri, 6 Sep 2013 06:00:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r86600HF090233; Fri, 6 Sep 2013 06:00:00 GMT (envelope-from gnats) Resent-Date: Fri, 6 Sep 2013 06:00:00 GMT Resent-Message-Id: <201309060600.r86600HF090233@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Trevor Caira Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 104CDCA2 for ; Fri, 6 Sep 2013 05:58:39 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from oldred.freebsd.org (oldred.freebsd.org [8.8.178.121]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id E2C3A2808 for ; Fri, 6 Sep 2013 05:58:38 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id r865wce6076552 for ; Fri, 6 Sep 2013 05:58:38 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id r865wcqi076551; Fri, 6 Sep 2013 05:58:38 GMT (envelope-from nobody) Message-Id: <201309060558.r865wcqi076551@oldred.freebsd.org> Date: Fri, 6 Sep 2013 05:58:38 GMT From: Trevor Caira To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/181860: [new port] www/py-selector: WSGI request delegation. (AKA routing.) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 06 Sep 2013 06:00:01 -0000 >Number: 181860 >Category: ports >Synopsis: [new port] www/py-selector: WSGI request delegation. (AKA routing.) >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Sep 06 06:00:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Trevor Caira >Release: FreeBSD 9.2-RC3 amd64 >Organization: Bitbase, LLC >Environment: System: FreeBSD tour 9.2-RC3 FreeBSD 9.2-RC3 #0 r254795: Sat Aug 24 20:25:04 UTC 2013 root@bake.isc.freebsd.org:/usr/obj/usr/src/sys/GENERIC amd64 >Description: New port: devel/py-selector This distribution provides WSGI middleware for "RESTful" dispatch of requests to WSGI applications by URL path and HTTP request method. Selector now also comes with components for environ-based dispatch and on-the-fly middleware composition. There is a very simple optional mini-language for path matching expressions. Alternately we can easily use regular expressions directly or even create our own mini-language. There is a simple "mapping file" format that can be used. There are no architecture specific features (to MVC or whatever). Neither are there any framework specific features. >How-To-Repeat: >Fix: Patch attached with submission follows: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # py-selector # py-selector/Makefile # py-selector/distinfo # py-selector/pkg-descr # echo c - py-selector mkdir -p py-selector > /dev/null 2>&1 echo x - py-selector/Makefile sed 's/^X//' >py-selector/Makefile << 'ed1c27f1577420dc3f2bdcc285892e4f' X# Created by: Trevor Caira X# $FreeBSD$ X# X XPORTNAME= selector XPORTVERSION= 0.9.4 XCATEGORIES= www python XMASTER_SITES= CHEESESHOP XPKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} X XMAINTAINER= trevor@bitba.se XCOMMENT= WSGI request delegation (a.k.a. routing) X XLICENSE= MIT X XRUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}resolver>=0.2.1:${PORTSDIR}/devel/py-resolver X XPLIST_FILES= %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%% X XUSE_PYTHON= 2.6+ XUSE_PYDISTUTILS= easy_install X X.include ed1c27f1577420dc3f2bdcc285892e4f echo x - py-selector/distinfo sed 's/^X//' >py-selector/distinfo << 'fee9b46482a8376715dcfacf76615a5d' XSHA256 (selector-0.9.4.tar.gz) = 6eb14570e638eecc8edb75b20dcec3809c55db92116f8f4bfd9fecbeb6457c3f XSIZE (selector-0.9.4.tar.gz) = 5723 fee9b46482a8376715dcfacf76615a5d echo x - py-selector/pkg-descr sed 's/^X//' >py-selector/pkg-descr << '2b18fcbd7db0df147f6d9eff2e6f8ddb' XWSGI request delegation. (AKA routing.) X XThis distribution provides WSGI middleware for "RESTful" dispatch of Xrequests to WSGI applications by URL path and HTTP request Xmethod. Selector now also comes with components for environ-based Xdispatch and on-the-fly middleware composition. There is a very simple Xoptional mini-language for path matching expressions. Alternately we Xcan easily use regular expressions directly or even create our own Xmini-language. There is a simple "mapping file" format that can be Xused. There are no architecture specific features (to MVC or Xwhatever). Neither are there any framework specific features. X XWWW: https://github.com/lukearno/selector 2b18fcbd7db0df147f6d9eff2e6f8ddb exit >Release-Note: >Audit-Trail: >Unformatted: