View | Details | Raw Unified | Return to bug 187170
Collapse All | Expand All

(-)b/devel/dulwich/Makefile (-7 / +7 lines)
Lines 1-21 Link Here
1
# Created by: Marco Broeder <marco.broeder@gmx.eu>
1
# Created by: Marco Broeder <marco.broeder@posteo.eu>
2
# $FreeBSD: head/devel/dulwich/Makefile 335926 2013-12-08 19:10:41Z pawel $
2
# $FreeBSD: head/devel/dulwich/Makefile 335926 2013-12-08 19:10:41Z pawel $
3
3
4
PORTNAME=	dulwich
4
PORTNAME=	dulwich
5
PORTVERSION=	0.9.4
5
PORTVERSION=	0.9.5
6
CATEGORIES=	devel python
6
CATEGORIES=	devel python
7
MASTER_SITES=	CHEESESHOP
7
MASTER_SITES=	CHEESESHOP
8
PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
8
PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
9
9
10
MAINTAINER=	marco.broeder@gmx.eu
10
MAINTAINER=	marco.broeder@posteo.eu
11
COMMENT=	Pure-Python implementation of the Git file formats and protocols
11
COMMENT=	Python implementation of the Git file formats and protocols
12
12
13
LICENSE=	GPLv2 GPLv3
13
LICENSE=	GPLv2 GPLv3
14
LICENSE_COMB=	dual
14
LICENSE_COMB=	dual
15
15
16
PORTDOCS=	NEWS README introduction.txt object-store.txt protocol.txt \
16
PORTDOCS=	NEWS README file-format.txt introduction.txt object-store.txt \
17
		remote.txt repo.txt tag.txt
17
		protocol.txt remote.txt repo.txt tag.txt
18
PORTEXAMPLES=	clone.py config.py diff.py
18
PORTEXAMPLES=	clone.py config.py diff.py latest_change.py
19
19
20
USE_PYTHON=	2
20
USE_PYTHON=	2
21
USE_PYDISTUTILS=yes
21
USE_PYDISTUTILS=yes
(-)b/devel/dulwich/distinfo (-2 / +2 lines)
Lines 1-2 Link Here
1
SHA256 (dulwich-0.9.4.tar.gz) = 1cd555533d9a5cc319f5c68e21e31be190104ee1be5b5d3899a8a522e924b3fc
1
SHA256 (dulwich-0.9.5.tar.gz) = 751fe9e1d32b61e21f086b4fa07ca96b69165a7ad24c5cebaef4f8803f512c0b
2
SIZE (dulwich-0.9.4.tar.gz) = 235283
2
SIZE (dulwich-0.9.5.tar.gz) = 237255
(-)b/devel/dulwich/pkg-descr (-5 / +7 lines)
Lines 1-7 Link Here
1
Dulwich is a pure-Python implementation of the Git file formats and protocols.
1
Dulwich is a Python implementation of the Git file formats and protocols,
2
without the need to have Git installed.
2
3
3
It aims to give an interface to git repos that doesn't call out to git directly
4
It aims to provide an interface to Git repos (both local and remote) that
4
but instead uses pure Python. It is based on the Python-Git module released by
5
does not call out to Git directly but instead uses pure Python. All
5
James Westby.
6
functionality is available in pure Python. Optional C extensions can be
7
built for improved performance.
6
8
7
WWW: http://www.samba.org/~jelmer/dulwich/
9
WWW: https://www.samba.org/~jelmer/dulwich/

Return to bug 187170