Date: Thu, 13 Aug 2015 21:23:22 +0000 (UTC) From: Ruslan Makhmatkhanov <rm@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394193 - in head/devel: . py-weblib Message-ID: <201508132123.t7DLNMQS054192@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: rm Date: Thu Aug 13 21:23:21 2015 New Revision: 394193 URL: https://svnweb.freebsd.org/changeset/ports/394193 Log: Weblib provides tools to solve typical tasks in web scraping: * processing HTML * handling text encodings * controling repeating and parallel tasks * parsing RSS/ATOM feeds * preparing data for HTTP requests * working with DOM tree * working with text and numeral data * list of common user agents * cross-platform file locking * operations with files and directories WWW: https://pypi.python.org/pypi/weblib Added: head/devel/py-weblib/ head/devel/py-weblib/Makefile (contents, props changed) head/devel/py-weblib/distinfo (contents, props changed) head/devel/py-weblib/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Thu Aug 13 21:20:00 2015 (r394192) +++ head/devel/Makefile Thu Aug 13 21:23:21 2015 (r394193) @@ -4272,6 +4272,7 @@ SUBDIR += py-virtualenvwrapper SUBDIR += py-watchdog SUBDIR += py-wcwidth + SUBDIR += py-weblib SUBDIR += py-wheel SUBDIR += py-wsgi_xmlrpc SUBDIR += py-wsgitools Added: head/devel/py-weblib/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-weblib/Makefile Thu Aug 13 21:23:21 2015 (r394193) @@ -0,0 +1,25 @@ +# $FreeBSD$ + +PORTNAME= weblib +PORTVERSION= 0.1.14 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= rm@FreeBSD.org +COMMENT= Set of tools for web scraping projects + +LICENSE= MIT + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytils>0:${PORTSDIR}/russian/py-pytils \ + ${PYTHON_PKGNAMEPREFIX}six>0:${PORTSDIR}/devel/py-six \ + ${PYTHON_PKGNAMEPREFIX}lxml>0:${PORTSDIR}/devel/py-lxml + +NO_ARCH= yes +USES= python +USE_PYTHON= autoplist distutils + +post-extract: + ${RM} -rf ${WRKSRC}/test + +.include <bsd.port.mk> Added: head/devel/py-weblib/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-weblib/distinfo Thu Aug 13 21:23:21 2015 (r394193) @@ -0,0 +1,2 @@ +SHA256 (weblib-0.1.14.tar.gz) = f9602ce66a6c5e010509d515a57b55d8c9d1eda8c4cbf5544a9ae11382618d8a +SIZE (weblib-0.1.14.tar.gz) = 36292 Added: head/devel/py-weblib/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-weblib/pkg-descr Thu Aug 13 21:23:21 2015 (r394193) @@ -0,0 +1,14 @@ +Weblib provides tools to solve typical tasks in web scraping: + + * processing HTML + * handling text encodings + * controling repeating and parallel tasks + * parsing RSS/ATOM feeds + * preparing data for HTTP requests + * working with DOM tree + * working with text and numeral data + * list of common user agents + * cross-platform file locking + * operations with files and directories + +WWW: https://pypi.python.org/pypi/weblib
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201508132123.t7DLNMQS054192>