From owner-svn-ports-all@freebsd.org Mon Jun 27 01:52:16 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 10AFFB80224; Mon, 27 Jun 2016 01:52:16 +0000 (UTC) (envelope-from wen@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 mx1.freebsd.org (Postfix) with ESMTPS id C2CC82E26; Mon, 27 Jun 2016 01:52:15 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u5R1qEaP070958; Mon, 27 Jun 2016 01:52:14 GMT (envelope-from wen@FreeBSD.org) Received: (from wen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u5R1qErJ070954; Mon, 27 Jun 2016 01:52:14 GMT (envelope-from wen@FreeBSD.org) Message-Id: <201606270152.u5R1qErJ070954@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: wen set sender to wen@FreeBSD.org using -f From: Wen Heping Date: Mon, 27 Jun 2016 01:52:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r417627 - in head/www: . py-urlobject X-SVN-Group: ports-head 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.22 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: Mon, 27 Jun 2016 01:52:16 -0000 Author: wen Date: Mon Jun 27 01:52:14 2016 New Revision: 417627 URL: https://svnweb.freebsd.org/changeset/ports/417627 Log: URLObject is a utility class for manipulating URLs. The latest incarnation of this library builds upon the ideas of its predecessor, but aims for a clearer API, focusing on proper method names over operator overrides. It's also being developed from the ground up in a test-driven manner, and has full Sphinx documentation. WWW: http://github.com/zacharyvoase/urlobject PR: 210604 Submitted by: freebsd@skinc.ru Added: head/www/py-urlobject/ head/www/py-urlobject/Makefile (contents, props changed) head/www/py-urlobject/distinfo (contents, props changed) head/www/py-urlobject/pkg-descr (contents, props changed) Modified: head/www/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Mon Jun 27 01:36:08 2016 (r417626) +++ head/www/Makefile Mon Jun 27 01:52:14 2016 (r417627) @@ -1778,6 +1778,7 @@ SUBDIR += py-uliweb SUBDIR += py-urlgrabber SUBDIR += py-urljr + SUBDIR += py-urlobject SUBDIR += py-user_agent SUBDIR += py-utidy SUBDIR += py-w3lib Added: head/www/py-urlobject/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-urlobject/Makefile Mon Jun 27 01:52:14 2016 (r417627) @@ -0,0 +1,22 @@ +# Created by: Ilia Skalozubov +# $FreeBSD$ + +PORTNAME= urlobject +PORTVERSION= 2.4.0 +CATEGORIES= www devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} +DISTNAME= URLObject-${PORTVERSION} + +MAINTAINER= freebsd@skinc.ru +COMMENT= Utility class for manipulating URLs + +LICENSE= Unlicense +LICENSE_NAME= The Unlicense +LICENSE_FILE= ${WRKSRC}/UNLICENSE +LICENSE_PERMS= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept + +USES= python:2.7+ +USE_PYTHON= distutils autoplist + +.include Added: head/www/py-urlobject/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-urlobject/distinfo Mon Jun 27 01:52:14 2016 (r417627) @@ -0,0 +1,3 @@ +TIMESTAMP = 1466991799 +SHA256 (URLObject-2.4.0.tar.gz) = f51272b12846db98af530b0a64f6593d2b1e8405f0aa580285b37ce8009b8d9c +SIZE (URLObject-2.4.0.tar.gz) = 12533 Added: head/www/py-urlobject/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-urlobject/pkg-descr Mon Jun 27 01:52:14 2016 (r417627) @@ -0,0 +1,7 @@ +URLObject is a utility class for manipulating URLs. The latest incarnation of +this library builds upon the ideas of its predecessor, but aims for a clearer +API, focusing on proper method names over operator overrides. It's also being +developed from the ground up in a test-driven manner, and has full Sphinx +documentation. + +WWW: http://github.com/zacharyvoase/urlobject