From owner-svn-ports-head@FreeBSD.ORG Thu Apr 2 21:23:44 2015 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CE9B8D0C; Thu, 2 Apr 2015 21:23:44 +0000 (UTC) Received: from svn.freebsd.org (svn.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 AFC908BA; Thu, 2 Apr 2015 21:23:44 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t32LNiJR003277; Thu, 2 Apr 2015 21:23:44 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t32LNhlM003273; Thu, 2 Apr 2015 21:23:43 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201504022123.t32LNhlM003273@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Thu, 2 Apr 2015 21:23:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r383074 - in head/devel: . py-pygitup 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.18-1 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, 02 Apr 2015 21:23:45 -0000 Author: pi Date: Thu Apr 2 21:23:42 2015 New Revision: 383074 URL: https://svnweb.freebsd.org/changeset/ports/383074 Log: New port: devel/py-pygitup PyGitUp is a Python implementation of the great aanand/git-up/. It not only fully covers the abilities of git-up and should be a drop-in replacement, but also extends it slightly. WWW: https://pypi.python.org/pypi/git-up PR: 198666 Submitted by: Maxim Filimonov Added: head/devel/py-pygitup/ head/devel/py-pygitup/Makefile (contents, props changed) head/devel/py-pygitup/distinfo (contents, props changed) head/devel/py-pygitup/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Thu Apr 2 21:21:39 2015 (r383073) +++ head/devel/Makefile Thu Apr 2 21:23:42 2015 (r383074) @@ -3985,6 +3985,7 @@ SUBDIR += py-pyflakes SUBDIR += py-pygit2 SUBDIR += py-pygithub + SUBDIR += py-pygitup SUBDIR += py-pygpx SUBDIR += py-pykde4 SUBDIR += py-pykdeuic4 Added: head/devel/py-pygitup/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pygitup/Makefile Thu Apr 2 21:23:42 2015 (r383074) @@ -0,0 +1,22 @@ +# $FreeBSD$ + +PORTNAME= git-up +PORTVERSION= 1.2.2 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= che@bein.link +COMMENT= Python implementation of 'git up' + +LICENSE= MIT + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pygit2>=0.21.1:${PORTSDIR}/devel/py-pygit2 \ + ${PYTHON_PKGNAMEPREFIX}colorama>=0.3.2:${PORTSDIR}/devel/py-colorama \ + ${PYTHON_PKGNAMEPREFIX}termcolor>=1.1.0:${PORTSDIR}/devel/py-termcolor \ + ${PYTHON_PKGNAMEPREFIX}docopt>=0.6.1:${PORTSDIR}/devel/py-docopt + +USES= python zip +USE_PYTHON= autoplist distutils + +.include Added: head/devel/py-pygitup/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pygitup/distinfo Thu Apr 2 21:23:42 2015 (r383074) @@ -0,0 +1,2 @@ +SHA256 (git-up-1.2.2.zip) = addad2b3a14155bbb7feee71fd0e52f153e39bfa375b0799f45e6e58a493a70a +SIZE (git-up-1.2.2.zip) = 24895 Added: head/devel/py-pygitup/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pygitup/pkg-descr Thu Apr 2 21:23:42 2015 (r383074) @@ -0,0 +1,5 @@ +PyGitUp is a Python implementation of the great aanand/git-up/. It +not only fully covers the abilities of git-up and should be a drop-in +replacement, but also extends it slightly. + +WWW: https://pypi.python.org/pypi/git-up