From owner-svn-ports-all@freebsd.org Thu May 18 16:03:19 2017 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 91CE6D73425; Thu, 18 May 2017 16:03:19 +0000 (UTC) (envelope-from sunpoet@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 54B6CFA3; Thu, 18 May 2017 16:03:19 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v4IG3Ic2002768; Thu, 18 May 2017 16:03:18 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v4IG3IJ2002764; Thu, 18 May 2017 16:03:18 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201705181603.v4IG3IJ2002764@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 18 May 2017 16:03:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r441160 - in head/devel: . py-gitdb2 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.23 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, 18 May 2017 16:03:19 -0000 Author: sunpoet Date: Thu May 18 16:03:17 2017 New Revision: 441160 URL: https://svnweb.freebsd.org/changeset/ports/441160 Log: Add py-gitdb2 2.0.0 GitDB allows you to access bare git repositories for reading and writing. It aims at allowing full access to loose objects as well as packs with performance and scalability in mind. It operates exclusively on streams, allowing to handle large objects with a small memory footprint. WWW: https://pypi.python.org/pypi/gitdb2 WWW: https://github.com/gitpython-developers/gitdb Added: head/devel/py-gitdb2/ head/devel/py-gitdb2/Makefile (contents, props changed) head/devel/py-gitdb2/distinfo (contents, props changed) head/devel/py-gitdb2/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Thu May 18 16:02:57 2017 (r441159) +++ head/devel/Makefile Thu May 18 16:03:17 2017 (r441160) @@ -4322,6 +4322,7 @@ SUBDIR += py-gevent SUBDIR += py-git-up SUBDIR += py-gitdb + SUBDIR += py-gitdb2 SUBDIR += py-gitless SUBDIR += py-gitosis SUBDIR += py-gitpython Added: head/devel/py-gitdb2/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-gitdb2/Makefile Thu May 18 16:03:17 2017 (r441160) @@ -0,0 +1,22 @@ +# Created by: Po-Chuan Hsieh +# $FreeBSD$ + +PORTNAME= gitdb2 +PORTVERSION= 2.0.0 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Git Object Database + +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}smmap2>=2.0.0:devel/py-smmap2 + +NO_ARCH= yes +USE_PYTHON= autoplist distutils +USES= python + +.include Added: head/devel/py-gitdb2/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-gitdb2/distinfo Thu May 18 16:03:17 2017 (r441160) @@ -0,0 +1,3 @@ +TIMESTAMP = 1495051521 +SHA256 (gitdb2-2.0.0.tar.gz) = b9f3209b401b8b4da5f94966c9c17650e66b7474ee5cd2dde5d983d1fba3ab66 +SIZE (gitdb2-2.0.0.tar.gz) = 392536 Added: head/devel/py-gitdb2/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-gitdb2/pkg-descr Thu May 18 16:03:17 2017 (r441160) @@ -0,0 +1,7 @@ +GitDB allows you to access bare git repositories for reading and writing. It +aims at allowing full access to loose objects as well as packs with performance +and scalability in mind. It operates exclusively on streams, allowing to handle +large objects with a small memory footprint. + +WWW: https://pypi.python.org/pypi/gitdb2 +WWW: https://github.com/gitpython-developers/gitdb