Date: Fri, 4 Dec 2015 15:01:39 +0000 (UTC) From: Dmitry Marakasov <amdmi3@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r402991 - in head/www: . py-rfc3986 Message-ID: <201512041501.tB4F1dpm059656@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: amdmi3 Date: Fri Dec 4 15:01:38 2015 New Revision: 402991 URL: https://svnweb.freebsd.org/changeset/ports/402991 Log: A Python implementation of RFC 3986 including validation and authority parsing. WWW: https://github.com/sigmavirus24/rfc3986 PR: 201385 Submitted by: yuri@rawbw.com Added: head/www/py-rfc3986/ head/www/py-rfc3986/Makefile (contents, props changed) head/www/py-rfc3986/distinfo (contents, props changed) head/www/py-rfc3986/pkg-descr (contents, props changed) Modified: head/www/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Fri Dec 4 14:43:36 2015 (r402990) +++ head/www/Makefile Fri Dec 4 15:01:38 2015 (r402991) @@ -1731,6 +1731,7 @@ SUBDIR += py-requests-toolbelt SUBDIR += py-requests1 SUBDIR += py-restclient + SUBDIR += py-rfc3986 SUBDIR += py-rfc3987 SUBDIR += py-rhodecode SUBDIR += py-routes Added: head/www/py-rfc3986/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-rfc3986/Makefile Fri Dec 4 15:01:38 2015 (r402991) @@ -0,0 +1,22 @@ +# Created by: Yuri Victorovich <yuri@rawbw.com> +# $FreeBSD$ + +PORTNAME= rfc3986 +PORTVERSION= 0.2.2 +CATEGORIES= www python +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= yuri@rawbw.com +COMMENT= Python implementation of RFC 3986 + +LICENSE= APACHE20 +LICENSE_FILE= ${WRKSRC}/LICENSE + +USE_GITHUB= yes +GH_ACCOUNT= sigmavirus24 + +USES= python +USE_PYTHON= autoplist distutils +NO_ARCH= yes + +.include <bsd.port.mk> Added: head/www/py-rfc3986/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-rfc3986/distinfo Fri Dec 4 15:01:38 2015 (r402991) @@ -0,0 +1,2 @@ +SHA256 (sigmavirus24-rfc3986-0.2.2_GH0.tar.gz) = 78a95c22c5853fd12beecbfb7fcd5abb011222d8b603ba5ab27a15f832bcf5c6 +SIZE (sigmavirus24-rfc3986-0.2.2_GH0.tar.gz) = 14724 Added: head/www/py-rfc3986/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-rfc3986/pkg-descr Fri Dec 4 15:01:38 2015 (r402991) @@ -0,0 +1,3 @@ +A Python implementation of RFC 3986 including validation and authority parsing. + +WWW: https://github.com/sigmavirus24/rfc3986
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201512041501.tB4F1dpm059656>