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
This commit is contained in:
Sunpoet Po-Chuan Hsieh 2018-08-07 19:39:53 +00:00
parent aef9e54443
commit f0a8b8623c
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=476609
4 changed files with 40 additions and 0 deletions

View File

@ -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

22
net/py-uritools/Makefile Normal file
View File

@ -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>

3
net/py-uritools/distinfo Normal file
View File

@ -0,0 +1,3 @@
TIMESTAMP = 1533662104
SHA256 (uritools-2.2.0.tar.gz) = 80e8e23cafad54fd85811b5d9ba0fc595d933f5727c61c3937945eec09f99e2b
SIZE (uritools-2.2.0.tar.gz) = 23906

14
net/py-uritools/pkg-descr Normal file
View File

@ -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