Date: Mon, 27 Jun 2016 01:52:14 +0000 (UTC) From: Wen Heping <wen@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r417627 - in head/www: . py-urlobject Message-ID: <201606270152.u5R1qErJ070954@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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@skinc.ru> +# $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 <bsd.port.mk> 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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201606270152.u5R1qErJ070954>