svn commit: r417627 - in head/www: . py-urlobject

Wen Heping wen at FreeBSD.org
Mon Jun 27 01:52:16 UTC 2016


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 at 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 at skinc.ru>
+# $FreeBSD$
+
+PORTNAME=	urlobject
+PORTVERSION=	2.4.0
+CATEGORIES=	www devel python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+DISTNAME=	URLObject-${PORTVERSION}
+
+MAINTAINER=	freebsd at 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


More information about the svn-ports-head mailing list