From owner-svn-ports-head@FreeBSD.ORG Tue Mar 3 15:41:27 2015 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E0FDE398; Tue, 3 Mar 2015 15:41:27 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::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 B2537D1A; Tue, 3 Mar 2015 15:41:27 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t23FfRKU045209; Tue, 3 Mar 2015 15:41:27 GMT (envelope-from nivit@FreeBSD.org) Received: (from nivit@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t23FfQK8045205; Tue, 3 Mar 2015 15:41:26 GMT (envelope-from nivit@FreeBSD.org) Message-Id: <201503031541.t23FfQK8045205@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: nivit set sender to nivit@FreeBSD.org using -f From: Nicola Vitale Date: Tue, 3 Mar 2015 15:41:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r380378 - in head/net: . py-uritemplate 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.18-1 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: Tue, 03 Mar 2015 15:41:28 -0000 Author: nivit Date: Tue Mar 3 15:41:26 2015 New Revision: 380378 URL: https://svnweb.freebsd.org/changeset/ports/380378 QAT: https://qat.redports.org/buildarchive/r380378/ Log: This is a Python implementation of RFC6570, URI Template, and can expand templates up to and including Level 4 in that specification. WWW: https://github.com/uri-templates/uritemplate-py/ Added: head/net/py-uritemplate/ head/net/py-uritemplate/Makefile (contents, props changed) head/net/py-uritemplate/distinfo (contents, props changed) head/net/py-uritemplate/pkg-descr (contents, props changed) Modified: head/net/Makefile Modified: head/net/Makefile ============================================================================== --- head/net/Makefile Tue Mar 3 15:40:23 2015 (r380377) +++ head/net/Makefile Tue Mar 3 15:41:26 2015 (r380378) @@ -948,6 +948,7 @@ SUBDIR += py-twitter SUBDIR += py-twitter-tools SUBDIR += py-txamqp + SUBDIR += py-uritemplate SUBDIR += py-urllib3 SUBDIR += py-wolframalpha SUBDIR += py-xmlrpc Added: head/net/py-uritemplate/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/py-uritemplate/Makefile Tue Mar 3 15:41:26 2015 (r380378) @@ -0,0 +1,19 @@ +# Created by: Nicola Vitale +# $FreeBSD$ + +PORTNAME= uritemplate +PORTVERSION= 0.6 +#PORTREVISION= 0 +CATEGORIES= net +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= nivit@FreeBSD.org +COMMENT= Python implementation of URI Template + +LICENSE= APACHE20 + +USE_PYTHON= autoplist distutils +USES= python + +.include Added: head/net/py-uritemplate/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/py-uritemplate/distinfo Tue Mar 3 15:41:26 2015 (r380378) @@ -0,0 +1,2 @@ +SHA256 (uritemplate-0.6.tar.gz) = a30e230aeb7ebedbcb5da9999a17fa8a30e512e6d5b06f73d47c6e03c8e357fd +SIZE (uritemplate-0.6.tar.gz) = 3508 Added: head/net/py-uritemplate/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/py-uritemplate/pkg-descr Tue Mar 3 15:41:26 2015 (r380378) @@ -0,0 +1,4 @@ +This is a Python implementation of RFC6570, URI Template, and can expand +templates up to and including Level 4 in that specification. + +WWW: https://github.com/uri-templates/uritemplate-py/