From owner-svn-ports-head@freebsd.org Thu Aug 4 09:52:53 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 4C95FBAE613; Thu, 4 Aug 2016 09:52:53 +0000 (UTC) (envelope-from koobs@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 235EF185D; Thu, 4 Aug 2016 09:52:53 +0000 (UTC) (envelope-from koobs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u749qqSW059296; Thu, 4 Aug 2016 09:52:52 GMT (envelope-from koobs@FreeBSD.org) Received: (from koobs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u749qpQk059291; Thu, 4 Aug 2016 09:52:51 GMT (envelope-from koobs@FreeBSD.org) Message-Id: <201608040952.u749qpQk059291@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: koobs set sender to koobs@FreeBSD.org using -f From: Kubilay Kocak Date: Thu, 4 Aug 2016 09:52:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r419605 - in head/net: . py-rainbowstream py-rainbowstream/files 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: Thu, 04 Aug 2016 09:52:53 -0000 Author: koobs Date: Thu Aug 4 09:52:51 2016 New Revision: 419605 URL: https://svnweb.freebsd.org/changeset/ports/419605 Log: [NEW] net/py-rainbowstream: Smart and nice Twitter client on terminal Terminal-based Twitter Client. Realtime tweetstream, compose, search, favorite ... and much more fun directly from terminal WWW: http://www.rainbowstream.org/ Requested by: Markus Langer (@langerma, via Twitter) Added: head/net/py-rainbowstream/ head/net/py-rainbowstream/Makefile (contents, props changed) head/net/py-rainbowstream/distinfo (contents, props changed) head/net/py-rainbowstream/files/ head/net/py-rainbowstream/files/patch-setup.py (contents, props changed) head/net/py-rainbowstream/pkg-descr (contents, props changed) Modified: head/net/Makefile Modified: head/net/Makefile ============================================================================== --- head/net/Makefile Thu Aug 4 09:33:27 2016 (r419604) +++ head/net/Makefile Thu Aug 4 09:52:51 2016 (r419605) @@ -1008,6 +1008,7 @@ SUBDIR += py-qt5-network SUBDIR += py-radix SUBDIR += py-raet + SUBDIR += py-rainbowstream SUBDIR += py-ripe.atlas.cousteau SUBDIR += py-ripe.atlas.sagan SUBDIR += py-ripe.atlas.tools Added: head/net/py-rainbowstream/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/py-rainbowstream/Makefile Thu Aug 4 09:52:51 2016 (r419605) @@ -0,0 +1,29 @@ +# Created by: Kubilay Kocak +# $FreeBSD$ + +PORTNAME= rainbowstream +PORTVERSION= 1.3.3 +CATEGORIES= net python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= koobs@FreeBSD.org +COMMENT= Smart and nice Twitter client on terminal + +LICENSE= MIT + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}dateutil>0:devel/py-dateutil \ + ${PYTHON_PKGNAMEPREFIX}arrow>0:devel/py-arrow \ + ${PYTHON_PKGNAMEPREFIX}requests>=2.5.3:www/py-requests \ + ${PYTHON_PKGNAMEPREFIX}pyfiglet>0:misc/py-pyfiglet \ + ${PYTHON_PKGNAMEPREFIX}twitter-tools>0:net/py-twitter-tools \ + ${PYTHON_PKGNAMEPREFIX}pillow>0:graphics/py-pillow \ + ${PYTHON_PKGNAMEPREFIX}pysocks>0:net/py-pysocks + +# Actually 2.7,3.2-3.4 +USES= python:2.7-3.4 +USE_PYTHON= autoplist concurrent distutils + +NO_ARCH= yes + +.include Added: head/net/py-rainbowstream/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/py-rainbowstream/distinfo Thu Aug 4 09:52:51 2016 (r419605) @@ -0,0 +1,3 @@ +TIMESTAMP = 1470297785 +SHA256 (rainbowstream-1.3.3.tar.gz) = 51d1755e055c3205a3cec660e2a798a6d4b35d202060a025145523bba846a920 +SIZE (rainbowstream-1.3.3.tar.gz) = 46165 Added: head/net/py-rainbowstream/files/patch-setup.py ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/py-rainbowstream/files/patch-setup.py Thu Aug 4 09:52:51 2016 (r419605) @@ -0,0 +1,11 @@ +--- setup.py.orig 2016-08-04 08:41:32 UTC ++++ setup.py +@@ -9,7 +9,7 @@ version = '1.3.3' + install_requires = [ + "python-dateutil", + "arrow", +- "requests==2.5.3", ++ "requests>=2.5.3", + "pyfiglet", + "twitter", + "Pillow", Added: head/net/py-rainbowstream/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/py-rainbowstream/pkg-descr Thu Aug 4 09:52:51 2016 (r419605) @@ -0,0 +1,4 @@ +Terminal-based Twitter Client. Realtime tweetstream, compose, search, +favorite ... and much more fun directly from terminal + +WWW: http://www.rainbowstream.org/