svn commit: r475530 - in head/www: . py-url

Martin Wilke miwi at FreeBSD.org
Sat Jul 28 12:04:24 UTC 2018


Author: miwi
Date: Sat Jul 28 12:04:22 2018
New Revision: 475530
URL: https://svnweb.freebsd.org/changeset/ports/475530

Log:
  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 at k-worx.org
  Sponsored by:	iXsystems Inc.

Added:
  head/www/py-url/
  head/www/py-url/Makefile   (contents, props changed)
  head/www/py-url/distinfo   (contents, props changed)
  head/www/py-url/pkg-descr   (contents, props changed)
Modified:
  head/www/Makefile

Modified: head/www/Makefile
==============================================================================
--- head/www/Makefile	Sat Jul 28 12:03:06 2018	(r475529)
+++ head/www/Makefile	Sat Jul 28 12:04:22 2018	(r475530)
@@ -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

Added: head/www/py-url/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/py-url/Makefile	Sat Jul 28 12:04:22 2018	(r475530)
@@ -0,0 +1,19 @@
+# $FreeBSD$
+
+PORTNAME=	url
+DISTVERSION=	0.4.2
+CATEGORIES=	www python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	freebsd_ports at 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>

Added: head/www/py-url/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/py-url/distinfo	Sat Jul 28 12:04:22 2018	(r475530)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1530178136
+SHA256 (url-0.4.2.tar.gz) = 8c6e4a117bfc15664319d8babca016b60dcd84c158729c1fbd309609083697b0
+SIZE (url-0.4.2.tar.gz) = 140908

Added: head/www/py-url/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/py-url/pkg-descr	Sat Jul 28 12:04:22 2018	(r475530)
@@ -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


More information about the svn-ports-head mailing list