From owner-svn-ports-all@FreeBSD.ORG Mon Mar 3 18:36:11 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 638ADD41; Mon, 3 Mar 2014 18:36:11 +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)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 440D3B63; Mon, 3 Mar 2014 18:36:11 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s23IaBhM058645; Mon, 3 Mar 2014 18:36:11 GMT (envelope-from pawel@svn.freebsd.org) Received: (from pawel@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s23IaAKH058642; Mon, 3 Mar 2014 18:36:10 GMT (envelope-from pawel@svn.freebsd.org) Message-Id: <201403031836.s23IaAKH058642@svn.freebsd.org> From: Pawel Pekala Date: Mon, 3 Mar 2014 18:36:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r346950 - head/devel/dulwich 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.17 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: Mon, 03 Mar 2014 18:36:11 -0000 Author: pawel Date: Mon Mar 3 18:36:10 2014 New Revision: 346950 URL: http://svnweb.freebsd.org/changeset/ports/346950 QAT: https://qat.redports.org/buildarchive/r346950/ Log: - Update to version 0.9.5 - Change maintainer's email address - Reword pkg-descr file PR: ports/187170 Submitted by: maintainer Modified: head/devel/dulwich/Makefile head/devel/dulwich/distinfo head/devel/dulwich/pkg-descr Modified: head/devel/dulwich/Makefile ============================================================================== --- head/devel/dulwich/Makefile Mon Mar 3 18:29:49 2014 (r346949) +++ head/devel/dulwich/Makefile Mon Mar 3 18:36:10 2014 (r346950) @@ -1,21 +1,21 @@ -# Created by: Marco Broeder +# Created by: Marco Broeder # $FreeBSD$ PORTNAME= dulwich -PORTVERSION= 0.9.4 +PORTVERSION= 0.9.5 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -MAINTAINER= marco.broeder@gmx.eu -COMMENT= Pure-Python implementation of the Git file formats and protocols +MAINTAINER= marco.broeder@posteo.eu +COMMENT= Python implementation of the Git file formats and protocols LICENSE= GPLv2 GPLv3 LICENSE_COMB= dual -PORTDOCS= NEWS README introduction.txt object-store.txt protocol.txt \ - remote.txt repo.txt tag.txt -PORTEXAMPLES= clone.py config.py diff.py +PORTDOCS= NEWS README file-format.txt introduction.txt object-store.txt \ + protocol.txt remote.txt repo.txt tag.txt +PORTEXAMPLES= clone.py config.py diff.py latest_change.py USE_PYTHON= 2 USE_PYDISTUTILS=yes Modified: head/devel/dulwich/distinfo ============================================================================== --- head/devel/dulwich/distinfo Mon Mar 3 18:29:49 2014 (r346949) +++ head/devel/dulwich/distinfo Mon Mar 3 18:36:10 2014 (r346950) @@ -1,2 +1,2 @@ -SHA256 (dulwich-0.9.4.tar.gz) = 1cd555533d9a5cc319f5c68e21e31be190104ee1be5b5d3899a8a522e924b3fc -SIZE (dulwich-0.9.4.tar.gz) = 235283 +SHA256 (dulwich-0.9.5.tar.gz) = 751fe9e1d32b61e21f086b4fa07ca96b69165a7ad24c5cebaef4f8803f512c0b +SIZE (dulwich-0.9.5.tar.gz) = 237255 Modified: head/devel/dulwich/pkg-descr ============================================================================== --- head/devel/dulwich/pkg-descr Mon Mar 3 18:29:49 2014 (r346949) +++ head/devel/dulwich/pkg-descr Mon Mar 3 18:36:10 2014 (r346950) @@ -1,7 +1,9 @@ -Dulwich is a pure-Python implementation of the Git file formats and protocols. +Dulwich is a Python implementation of the Git file formats and protocols, +without the need to have Git installed. -It aims to give an interface to git repos that doesn't call out to git directly -but instead uses pure Python. It is based on the Python-Git module released by -James Westby. +It aims to provide an interface to Git repos (both local and remote) that +does not call out to Git directly but instead uses pure Python. All +functionality is available in pure Python. Optional C extensions can be +built for improved performance. -WWW: http://www.samba.org/~jelmer/dulwich/ +WWW: https://www.samba.org/~jelmer/dulwich/