From owner-svn-ports-head@freebsd.org Thu Aug 13 21:23:23 2015 Return-Path: Delivered-To: svn-ports-head@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 B07DF9B8CC9; Thu, 13 Aug 2015 21:23:23 +0000 (UTC) (envelope-from rm@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::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 950331C9; Thu, 13 Aug 2015 21:23:23 +0000 (UTC) (envelope-from rm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DLNNs9054196; Thu, 13 Aug 2015 21:23:23 GMT (envelope-from rm@FreeBSD.org) Received: (from rm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DLNMQS054192; Thu, 13 Aug 2015 21:23:22 GMT (envelope-from rm@FreeBSD.org) Message-Id: <201508132123.t7DLNMQS054192@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rm set sender to rm@FreeBSD.org using -f From: Ruslan Makhmatkhanov Date: Thu, 13 Aug 2015 21:23:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394193 - in head/devel: . py-weblib X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 21:23:23 -0000 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 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