From owner-svn-ports-all@freebsd.org Thu Nov 5 21:41:31 2015 Return-Path: Delivered-To: svn-ports-all@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 797FCA27CB9; Thu, 5 Nov 2015 21:41:31 +0000 (UTC) (envelope-from pawel@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::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 297D51A31; Thu, 5 Nov 2015 21:41:31 +0000 (UTC) (envelope-from pawel@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id tA5LfUJ8039494; Thu, 5 Nov 2015 21:41:30 GMT (envelope-from pawel@FreeBSD.org) Received: (from pawel@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tA5LfTit039490; Thu, 5 Nov 2015 21:41:29 GMT (envelope-from pawel@FreeBSD.org) Message-Id: <201511052141.tA5LfTit039490@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pawel set sender to pawel@FreeBSD.org using -f From: Pawel Pekala Date: Thu, 5 Nov 2015 21:41:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r400873 - in head/www: . py-google X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 Nov 2015 21:41:31 -0000 Author: pawel Date: Thu Nov 5 21:41:29 2015 New Revision: 400873 URL: https://svnweb.freebsd.org/changeset/ports/400873 Log: Google search from Python. WWW: https://breakingcode.wordpress.com/ PR: 202918 Submitted by: Yuri Victorovich Added: head/www/py-google/ head/www/py-google/Makefile (contents, props changed) head/www/py-google/distinfo (contents, props changed) head/www/py-google/pkg-descr (contents, props changed) Modified: head/www/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Thu Nov 5 21:21:21 2015 (r400872) +++ head/www/Makefile Thu Nov 5 21:41:29 2015 (r400873) @@ -1600,6 +1600,7 @@ SUBDIR += py-funkload SUBDIR += py-gandi.cli SUBDIR += py-gevent-websocket + SUBDIR += py-google SUBDIR += py-google-api-python-client SUBDIR += py-graphite-web SUBDIR += py-grequests Added: head/www/py-google/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-google/Makefile Thu Nov 5 21:41:29 2015 (r400873) @@ -0,0 +1,21 @@ +# Created by: Yuri Victorovich +# $FreeBSD$ + +PORTNAME= google +PORTVERSION= 1.7 +CATEGORIES= www python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= yuri@rawbw.com +COMMENT= Python bindings to the Google search engine + +LICENSE= BSD2CLAUSE + +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}beautifulsoup>=4:${PORTSDIR}/www/py-beautifulsoup + +USES= python +USE_PYTHON= autoplist distutils +NO_ARCH= yes + +.include Added: head/www/py-google/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-google/distinfo Thu Nov 5 21:41:29 2015 (r400873) @@ -0,0 +1,2 @@ +SHA256 (google-1.7.tar.gz) = d6e25f5d55b5205d84564452d459ce815924ffaf19ef077188e274959aa7df64 +SIZE (google-1.7.tar.gz) = 6127 Added: head/www/py-google/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-google/pkg-descr Thu Nov 5 21:41:29 2015 (r400873) @@ -0,0 +1,3 @@ +Google search from Python. + +WWW: https://breakingcode.wordpress.com/