From owner-svn-ports-head@freebsd.org Tue Jul 5 15:02:57 2016 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 C72F7B2176C; Tue, 5 Jul 2016 15:02:57 +0000 (UTC) (envelope-from cpm@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 7A24915D8; Tue, 5 Jul 2016 15:02:57 +0000 (UTC) (envelope-from cpm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u65F2uMN015324; Tue, 5 Jul 2016 15:02:56 GMT (envelope-from cpm@FreeBSD.org) Received: (from cpm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u65F2uQ2015320; Tue, 5 Jul 2016 15:02:56 GMT (envelope-from cpm@FreeBSD.org) Message-Id: <201607051502.u65F2uQ2015320@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cpm set sender to cpm@FreeBSD.org using -f From: "Carlos J. Puga Medina" Date: Tue, 5 Jul 2016 15:02:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418086 - in head/net: . py-uritemplate.py 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.22 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, 05 Jul 2016 15:02:57 -0000 Author: cpm Date: Tue Jul 5 15:02:56 2016 New Revision: 418086 URL: https://svnweb.freebsd.org/changeset/ports/418086 Log: New port: net/py-uritemplate.py Simple python library to deal with URI Templates. WWW: https://uritemplate.readthedocs.org/ Reviewed by: amdmi3, junovitch, feld (mentors) Approved by: amdmi3, junovitch, feld (mentors) Differential Revision: D6730 Added: head/net/py-uritemplate.py/ head/net/py-uritemplate.py/Makefile (contents, props changed) head/net/py-uritemplate.py/distinfo (contents, props changed) head/net/py-uritemplate.py/pkg-descr (contents, props changed) Modified: head/net/Makefile Modified: head/net/Makefile ============================================================================== --- head/net/Makefile Tue Jul 5 15:02:08 2016 (r418085) +++ head/net/Makefile Tue Jul 5 15:02:56 2016 (r418086) @@ -1022,6 +1022,7 @@ SUBDIR += py-txamqp SUBDIR += py-txrestapi SUBDIR += py-uritemplate + SUBDIR += py-uritemplate.py SUBDIR += py-urllib3 SUBDIR += py-wolframalpha SUBDIR += py-xmlrpc Added: head/net/py-uritemplate.py/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/py-uritemplate.py/Makefile Tue Jul 5 15:02:56 2016 (r418086) @@ -0,0 +1,23 @@ +# Created by: Carlos J. Puga Medina +# $FreeBSD$ + +PORTNAME= uritemplate.py +PORTVERSION= 0.3.0 +CATEGORIES= net python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= cpm@FreeBSD.org +COMMENT= Simple python library to deal with URI Templates + +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE + +CONFLICTS_INSTALL= py*-uritemplate-[0-9]* + +USES= python +USE_PYTHON= autoplist distutils + +NO_ARCH= yes + +.include Added: head/net/py-uritemplate.py/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/py-uritemplate.py/distinfo Tue Jul 5 15:02:56 2016 (r418086) @@ -0,0 +1,3 @@ +TIMESTAMP = 1465077405 +SHA256 (uritemplate.py-0.3.0.tar.gz) = fd79aa529a7968c62d96ac6731a94349c5a615dac74968526c573c65796c7b77 +SIZE (uritemplate.py-0.3.0.tar.gz) = 6916 Added: head/net/py-uritemplate.py/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/py-uritemplate.py/pkg-descr Tue Jul 5 15:02:56 2016 (r418086) @@ -0,0 +1,3 @@ +Simple python library to deal with URI Templates. + +WWW: https://uritemplate.readthedocs.org/