Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 28 Jul 2018 12:04:22 +0000 (UTC)
From:      Martin Wilke <miwi@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r475530 - in head/www: . py-url
Message-ID:  <201807281204.w6SC4MGB066222@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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@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@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



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