From owner-svn-ports-all@FreeBSD.ORG Tue Jan 27 04:32:22 2015 Return-Path: Delivered-To: svn-ports-all@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 873A0D27; Tue, 27 Jan 2015 04:32:22 +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 69F43986; Tue, 27 Jan 2015 04:32:22 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t0R4WMB9090397; Tue, 27 Jan 2015 04:32:22 GMT (envelope-from koobs@FreeBSD.org) Received: (from koobs@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t0R4WLxJ090390; Tue, 27 Jan 2015 04:32:21 GMT (envelope-from koobs@FreeBSD.org) Message-Id: <201501270432.t0R4WLxJ090390@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: koobs set sender to koobs@FreeBSD.org using -f From: Kubilay Kocak Date: Tue, 27 Jan 2015 04:32:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r377977 - in head/www: . py-rfc3987 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.18-1 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: Tue, 27 Jan 2015 04:32:22 -0000 Author: koobs Date: Tue Jan 27 04:32:20 2015 New Revision: 377977 URL: https://svnweb.freebsd.org/changeset/ports/377977 QAT: https://qat.redports.org/buildarchive/r377977/ Log: [NEW] www/py-rfc3987: Parsing and validation of URIs and IRIs This module provides regular expressions according to `RFC 3986 "Uniform Resource Identifier (URI): Generic Syntax" and `RFC 3987 "Internationalized Resource Identifiers (IRIs)" and utilities for composition and relative resolution of references. * http://tools.ietf.org/html/rfc3986 * http://tools.ietf.org/html/rfc3987 WWW: http://pypi.python.org/pypi/rfc3987 Added: head/www/py-rfc3987/ head/www/py-rfc3987/Makefile (contents, props changed) head/www/py-rfc3987/distinfo (contents, props changed) head/www/py-rfc3987/pkg-descr (contents, props changed) Modified: head/www/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Tue Jan 27 04:12:49 2015 (r377976) +++ head/www/Makefile Tue Jan 27 04:32:20 2015 (r377977) @@ -1674,6 +1674,7 @@ SUBDIR += py-requests-toolbelt SUBDIR += py-requests1 SUBDIR += py-restclient + SUBDIR += py-rfc3987 SUBDIR += py-rhodecode SUBDIR += py-routes SUBDIR += py-satchmo Added: head/www/py-rfc3987/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-rfc3987/Makefile Tue Jan 27 04:32:20 2015 (r377977) @@ -0,0 +1,20 @@ +# Created by: Kubilay Kocak +# $FreeBSD$ + +PORTNAME= rfc3987 +PORTVERSION= 1.3.4 +CATEGORIES= www python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= koobs@FreeBSD.org +COMMENT= Parsing and validation of URIs (RFC 3986) and IRIs (RFC 3987) + +LICENSE= GPLv3 + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}regex>0:${PORTSDIR}/textproc/py-regex + +USES= python +USE_PYTHON= autoplist distutils + +.include Added: head/www/py-rfc3987/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-rfc3987/distinfo Tue Jan 27 04:32:20 2015 (r377977) @@ -0,0 +1,2 @@ +SHA256 (rfc3987-1.3.4.tar.gz) = 8bdd8bf28431bae754d34d60a23ca37aefa2cf8ade2de4a0e9d86e4a688b0c2e +SIZE (rfc3987-1.3.4.tar.gz) = 7637 Added: head/www/py-rfc3987/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-rfc3987/pkg-descr Tue Jan 27 04:32:20 2015 (r377977) @@ -0,0 +1,9 @@ +This module provides regular expressions according to `RFC 3986 "Uniform +Resource Identifier (URI): Generic Syntax" and `RFC 3987 "Internationalized +Resource Identifiers (IRIs)" and utilities for composition and relative +resolution of references. + + * http://tools.ietf.org/html/rfc3986 + * http://tools.ietf.org/html/rfc3987 + +WWW: http://pypi.python.org/pypi/rfc3987