From owner-svn-ports-all@freebsd.org Sat Jul 28 12:04:23 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CA668104E574; Sat, 28 Jul 2018 12:04:23 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 80CAD8A0A4; Sat, 28 Jul 2018 12:04:23 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 47F5A266B3; Sat, 28 Jul 2018 12:04:23 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w6SC4Nt1066229; Sat, 28 Jul 2018 12:04:23 GMT (envelope-from miwi@FreeBSD.org) Received: (from miwi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w6SC4MGB066222; Sat, 28 Jul 2018 12:04:22 GMT (envelope-from miwi@FreeBSD.org) Message-Id: <201807281204.w6SC4MGB066222@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: miwi set sender to miwi@FreeBSD.org using -f From: Martin Wilke Date: Sat, 28 Jul 2018 12:04:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r475530 - in head/www: . py-url X-SVN-Group: ports-head X-SVN-Commit-Author: miwi X-SVN-Commit-Paths: in head/www: . py-url X-SVN-Commit-Revision: 475530 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 28 Jul 2018 12:04:24 -0000 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 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