1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-30 10:38:37 +00:00

py-url provides helper functions for parsing, sanitizing and normalizing URLs.

This includes support for escaping, unescaping, punycoding, unpunycoding,
cleaning parameter and query strings and a little more sanitization.

WWW: https://github.com/seomoz/url-py

PR:		229440
Submitted by:	freebsd_ports@k-worx.org
Sponsored by:	iXsystems Inc.
This commit is contained in:
Martin Wilke 2018-07-28 12:04:22 +00:00
parent 2d3fe0e91b
commit 3f1d00491d
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=475530
4 changed files with 28 additions and 0 deletions

View File

@ -1878,6 +1878,7 @@
SUBDIR += py-txrequests
SUBDIR += py-uliweb
SUBDIR += py-unit
SUBDIR += py-url
SUBDIR += py-urlgrabber
SUBDIR += py-urlobject
SUBDIR += py-user_agent

19
www/py-url/Makefile Normal file
View File

@ -0,0 +1,19 @@
# $FreeBSD$
PORTNAME= url
DISTVERSION= 0.4.2
CATEGORIES= www python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= freebsd_ports@k-worx.org
COMMENT= URL parsing, sanitizing and normalizing
LICENSE= MIT
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>=0:devel/py-six@${PY_FLAVOR}
USES= python
USE_PYTHON= cython distutils autoplist
.include <bsd.port.mk>

3
www/py-url/distinfo Normal file
View File

@ -0,0 +1,3 @@
TIMESTAMP = 1530178136
SHA256 (url-0.4.2.tar.gz) = 8c6e4a117bfc15664319d8babca016b60dcd84c158729c1fbd309609083697b0
SIZE (url-0.4.2.tar.gz) = 140908

5
www/py-url/pkg-descr Normal file
View File

@ -0,0 +1,5 @@
py-url provides helper functions for parsing, sanitizing and normalizing URLs.
This includes support for escaping, unescaping, punycoding, unpunycoding,
cleaning parameter and query strings and a little more sanitization.
WWW: https://github.com/seomoz/url-py