From owner-svn-ports-head@freebsd.org Fri Jun 24 23:04:25 2016 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 8AA9BB803A1; Fri, 24 Jun 2016 23:04:25 +0000 (UTC) (envelope-from cpm@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 4ABD819D6; Fri, 24 Jun 2016 23:04:25 +0000 (UTC) (envelope-from cpm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u5ON4O1t026679; Fri, 24 Jun 2016 23:04:24 GMT (envelope-from cpm@FreeBSD.org) Received: (from cpm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u5ON4O0r026675; Fri, 24 Jun 2016 23:04:24 GMT (envelope-from cpm@FreeBSD.org) Message-Id: <201606242304.u5ON4O0r026675@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cpm set sender to cpm@FreeBSD.org using -f From: "Carlos J. Puga Medina" Date: Fri, 24 Jun 2016 23:04:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r417451 - in head/misc: . py-socli 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.22 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: Fri, 24 Jun 2016 23:04:25 -0000 Author: cpm Date: Fri Jun 24 23:04:24 2016 New Revision: 417451 URL: https://svnweb.freebsd.org/changeset/ports/417451 Log: New port: misc/py-socli Stack overflow command line client written in python. Using SoCLI you can search and browse stack overflow without leaving the terminal. WWW: https://pypi.python.org/pypi/socli/ Submitted by: me Reviewed by: amdmi3, feld (mentors) Approved by: amdmi3, feld (mentors) Differential Revision: D6939 Added: head/misc/py-socli/ head/misc/py-socli/Makefile (contents, props changed) head/misc/py-socli/distinfo (contents, props changed) head/misc/py-socli/pkg-descr (contents, props changed) Modified: head/misc/Makefile Modified: head/misc/Makefile ============================================================================== --- head/misc/Makefile Fri Jun 24 23:02:44 2016 (r417450) +++ head/misc/Makefile Fri Jun 24 23:04:24 2016 (r417451) @@ -380,6 +380,7 @@ SUBDIR += py-qt4-doc SUBDIR += py-qt5-demo SUBDIR += py-qt5-doc + SUBDIR += py-socli SUBDIR += py-spdx SUBDIR += py-spdx-lookup SUBDIR += py-tqdm Added: head/misc/py-socli/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/py-socli/Makefile Fri Jun 24 23:04:24 2016 (r417451) @@ -0,0 +1,24 @@ +# Created by: Carlos J. Puga Medina +# $FreeBSD$ + +PORTNAME= socli +PORTVERSION= 1.3a +CATEGORIES= misc python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= cpm@FreeBSD.org +COMMENT= Stack overflow command line interface + +LICENSE= BSD3CLAUSE + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}beautifulsoup4>=0:textproc/py-beautifulsoup4 \ + ${PYTHON_PKGNAMEPREFIX}requests>=0:www/py-requests + +USES= python:3 zip +USE_PYTHON= autoplist distutils +WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION:S/a//g} + +NO_ARCH= yes + +.include Added: head/misc/py-socli/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/py-socli/distinfo Fri Jun 24 23:04:24 2016 (r417451) @@ -0,0 +1,3 @@ +TIMESTAMP = 1466691313 +SHA256 (socli-1.3a.zip) = 1bfecc38132e51c140179b44999b964a87ef6a23989fb3b8d8024b739dd1bafa +SIZE (socli-1.3a.zip) = 5463 Added: head/misc/py-socli/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/py-socli/pkg-descr Fri Jun 24 23:04:24 2016 (r417451) @@ -0,0 +1,4 @@ +Stack overflow command line client written in python. Using SoCLI you can +search and browse stack overflow without leaving the terminal. + +WWW: https://pypi.python.org/pypi/socli/