From owner-svn-ports-all@freebsd.org Tue Aug 7 19:39:55 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 46C931068FF7; Tue, 7 Aug 2018 19:39:55 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id F09227DD90; Tue, 7 Aug 2018 19:39:54 +0000 (UTC) (envelope-from sunpoet@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id D2F342023A; Tue, 7 Aug 2018 19:39:54 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w77JdsDT018437; Tue, 7 Aug 2018 19:39:54 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w77JdsdK018434; Tue, 7 Aug 2018 19:39:54 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201808071939.w77JdsdK018434@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Tue, 7 Aug 2018 19:39:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r476609 - in head/net: . py-uritools X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: in head/net: . py-uritools X-SVN-Commit-Revision: 476609 X-SVN-Commit-Repository: ports 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.27 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, 07 Aug 2018 19:39:55 -0000 Author: sunpoet Date: Tue Aug 7 19:39:53 2018 New Revision: 476609 URL: https://svnweb.freebsd.org/changeset/ports/476609 Log: Add py-uritools 2.2.0 This module defines RFC 3986 compliant replacements for the most commonly used functions of the Python 2.7 Standard Library urlparse and Python 3 urllib.parse modules. For various reasons, the Python 2 urlparse module is not compliant with current Internet standards, does not include Unicode support, and is generally unusable with proprietary URI schemes. Python 3's urllib.parse improves on Unicode support, but the other issues still remain. This module aims to provide fully RFC 3986 compliant replacements for some commonly used functions found in urlparse and urllib.parse, plus additional functions for conveniently composing URIs from their individual components. WWW: https://github.com/tkem/uritools Added: head/net/py-uritools/ head/net/py-uritools/Makefile (contents, props changed) head/net/py-uritools/distinfo (contents, props changed) head/net/py-uritools/pkg-descr (contents, props changed) Modified: head/net/Makefile Modified: head/net/Makefile ============================================================================== --- head/net/Makefile Tue Aug 7 18:18:07 2018 (r476608) +++ head/net/Makefile Tue Aug 7 19:39:53 2018 (r476609) @@ -1149,6 +1149,7 @@ SUBDIR += py-txrestapi SUBDIR += py-upnp-inspector SUBDIR += py-uritemplate + SUBDIR += py-uritools SUBDIR += py-urllib3 SUBDIR += py-wmi-query SUBDIR += py-wolframalpha Added: head/net/py-uritools/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/py-uritools/Makefile Tue Aug 7 19:39:53 2018 (r476609) @@ -0,0 +1,22 @@ +# Created by: Po-Chuan Hsieh +# $FreeBSD$ + +PORTNAME= uritools +PORTVERSION= 2.2.0 +CATEGORIES= net python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= RFC 3986 compliant, Unicode-aware, scheme-agnostic replacement for urlparse + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= ${PY_IPADDRESS} + +NO_ARCH= yes +USE_PYTHON= autoplist concurrent distutils +USES= python + +.include Added: head/net/py-uritools/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/py-uritools/distinfo Tue Aug 7 19:39:53 2018 (r476609) @@ -0,0 +1,3 @@ +TIMESTAMP = 1533662104 +SHA256 (uritools-2.2.0.tar.gz) = 80e8e23cafad54fd85811b5d9ba0fc595d933f5727c61c3937945eec09f99e2b +SIZE (uritools-2.2.0.tar.gz) = 23906 Added: head/net/py-uritools/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/py-uritools/pkg-descr Tue Aug 7 19:39:53 2018 (r476609) @@ -0,0 +1,14 @@ +This module defines RFC 3986 compliant replacements for the most commonly used +functions of the Python 2.7 Standard Library urlparse and Python 3 urllib.parse +modules. + +For various reasons, the Python 2 urlparse module is not compliant with current +Internet standards, does not include Unicode support, and is generally unusable +with proprietary URI schemes. Python 3's urllib.parse improves on Unicode +support, but the other issues still remain. + +This module aims to provide fully RFC 3986 compliant replacements for some +commonly used functions found in urlparse and urllib.parse, plus additional +functions for conveniently composing URIs from their individual components. + +WWW: https://github.com/tkem/uritools