Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 7 Aug 2018 19:39:54 +0000 (UTC)
From:      Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r476609 - in head/net: . py-uritools
Message-ID:  <201808071939.w77JdsdK018434@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 <sunpoet@FreeBSD.org>
+# $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 <bsd.port.mk>

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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201808071939.w77JdsdK018434>