Date: Tue, 27 Jan 2015 04:32:21 +0000 (UTC) From: Kubilay Kocak <koobs@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r377977 - in head/www: . py-rfc3987 Message-ID: <201501270432.t0R4WLxJ090390@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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 <koobs@FreeBSD.org> +# $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 <bsd.port.mk> 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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201501270432.t0R4WLxJ090390>