From owner-svn-ports-head@freebsd.org Thu Aug 13 21:26:27 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 B50579B8D45; Thu, 13 Aug 2015 21:26:27 +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 99ED840E; Thu, 13 Aug 2015 21:26:27 +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 t7DLQRap054629; Thu, 13 Aug 2015 21:26:27 GMT (envelope-from rm@FreeBSD.org) Received: (from rm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DLQQLE054624; Thu, 13 Aug 2015 21:26:26 GMT (envelope-from rm@FreeBSD.org) Message-Id: <201508132126.t7DLQQLE054624@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:26:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394195 - head/devel/py-grab 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:26:27 -0000 Author: rm Date: Thu Aug 13 21:26:26 2015 New Revision: 394195 URL: https://svnweb.freebsd.org/changeset/ports/394195 Log: devel/py-grab: update to 0.6.21 Modified: head/devel/py-grab/Makefile head/devel/py-grab/distinfo head/devel/py-grab/pkg-descr Modified: head/devel/py-grab/Makefile ============================================================================== --- head/devel/py-grab/Makefile Thu Aug 13 21:25:33 2015 (r394194) +++ head/devel/py-grab/Makefile Thu Aug 13 21:26:26 2015 (r394195) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= grab -PORTVERSION= 0.5.5 +PORTVERSION= 0.6.21 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -11,11 +11,16 @@ COMMENT= Site scraping framework LICENSE= MIT -BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}lxml>0:${PORTSDIR}/devel/py-lxml RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}lxml>0:${PORTSDIR}/devel/py-lxml \ - ${PYTHON_PKGNAMEPREFIX}curl>0:${PORTSDIR}/ftp/py-curl + ${PYTHON_PKGNAMEPREFIX}curl>0:${PORTSDIR}/ftp/py-curl \ + ${PYTHON_PKGNAMEPREFIX}weblib>0:${PORTSDIR}/devel/py-weblib \ + ${PYTHON_PKGNAMEPREFIX}selection>0:${PORTSDIR}/devel/py-selection +NO_ARCH= yes USES= python USE_PYTHON= autoplist distutils +post-extract: + ${RM} -rf ${WRKSRC}/test + .include Modified: head/devel/py-grab/distinfo ============================================================================== --- head/devel/py-grab/distinfo Thu Aug 13 21:25:33 2015 (r394194) +++ head/devel/py-grab/distinfo Thu Aug 13 21:26:26 2015 (r394195) @@ -1,2 +1,2 @@ -SHA256 (grab-0.5.5.tar.gz) = e14a5e110d1d1e4b42d9c25a6075f83bcff4daf2ea3acbfa773467e61f6e45f6 -SIZE (grab-0.5.5.tar.gz) = 161432 +SHA256 (grab-0.6.21.tar.gz) = cad55287c0da16b2e303ba27a4d77a2905c1ac3e73badb83d3d143b0fe701e99 +SIZE (grab-0.6.21.tar.gz) = 89728 Modified: head/devel/py-grab/pkg-descr ============================================================================== --- head/devel/py-grab/pkg-descr Thu Aug 13 21:25:33 2015 (r394194) +++ head/devel/py-grab/pkg-descr Thu Aug 13 21:26:26 2015 (r394195) @@ -1,7 +1,18 @@ -Grab is site scraping framework. Grab could be used for: +Grab is a python web scraping framework. Grab provides tons of helpful methods +to scrape web sites and to process the scraped content: - - website data mining - - work with network API - - automation of actions performed on websites + * Automatic cookies (session) support + * HTTP and SOCKS proxy with and without authorization + * Keep-Alive support + * IDN support + * Tools to work with web forms + * Easy multipart file uploading + * Flexible customization of HTTP requests + * Automatic charset detection + * Powerful API of extracting info from HTML documents with XPATH queries + * Asynchronous API to make thousands of simultaneous queries. This part of + library called Spider and it is too big to even list its features in this + README. + * Python 3 ready WWW: http://grablib.org/