View | Details | Raw Unified | Return to bug 199335 | Differences between
and this patch

Collapse All | Expand All

(-)py-gitpython/Makefile (-10 / +13 lines)
Lines 1-23 Link Here
1
# Created by: Wen Heping <wenheping@gmail.com>
2
# $FreeBSD$
1
# $FreeBSD$
3
2
4
PORTNAME=	GitPython
3
PORTNAME=	GitPython
5
PORTVERSION=	0.3.1
4
PORTVERSION=	1.0.1
6
PORTREVISION=	1
7
CATEGORIES=	devel python
5
CATEGORIES=	devel python
8
MASTER_SITES=	CHEESESHOP
6
MASTER_SITES=	CHEESESHOP
9
PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
7
PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
10
8
11
MAINTAINER=	ports@FreeBSD.org
9
MAINTAINER=	che@bein.link
12
COMMENT=	Python Git Library
10
COMMENT=	Python Git Library
13
11
14
DEPRECATED=	No more public distfiles
12
LICENSE=	BSD3CLAUSE
15
EXPIRATION_DATE=	2014-03-07
13
LICENSE_FILE=	${WRKSRC}/LICENSE
16
14
17
RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}gitdb>0:${PORTSDIR}/devel/py-gitdb
15
RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}gitdb>=0.6.4:${PORTSDIR}/devel/py-gitdb
16
TEST_DEPENDS=	${PYTHON_PKGNAMEPREFIX}nose>=0:${PORTSDIR}/devel/py-nose \
17
	${PYTHON_PKGNAMEPREFIX}mock>=0:${PORTSDIR}/devel/py-mock \
18
	${PYTHON_PKGNAMEPREFIX}gitdb>=0.6.4:${PORTSDIR}/devel/py-gitdb
18
19
19
USE_PYTHON=	yes
20
USES=		python
20
USE_PYDISTUTILS=yes
21
USE_PYTHON=	autoplist distutils
21
PYDISTUTILS_AUTOPLIST=	yes
22
22
23
regression-test: build
24
	cd ${WRKSRC} && ${PYTHON_CMD} -m nose
25
23
.include <bsd.port.mk>
26
.include <bsd.port.mk>
(-)py-gitpython/distinfo (-2 / +2 lines)
Lines 1-2 Link Here
1
SHA256 (GitPython-0.3.1.tar.gz) = 24a8b936f084d06268b92fa625fbf81cc2a849f01b4c7edf7e492ce8e3f84d3c
1
SHA256 (GitPython-1.0.1.tar.gz) = 9c88c17bbcae2a445ff64024ef13526224f70e35e38c33416be5ceb56ca7f760
2
SIZE (GitPython-0.3.1.tar.gz) = 257331
2
SIZE (GitPython-1.0.1.tar.gz) = 355108
(-)py-gitpython/pkg-descr (-9 / +3 lines)
Lines 1-10 Link Here
1
GitPython is a python library used to interact with
1
GitPython is a python library used to interact with git repositories, 
2
Git repositories. GitPython provides object model
2
high-level like git-porcelain, or low-level like git-plumbing.
3
access to your git repository. Once you have created
4
a repository object, you can traverse it to find
5
parent commit(s), trees, blobs, etc.
6
3
7
GitPython is a port of the grit library in Ruby
4
WWW: https://github.com/gitpython-developers/GitPython
8
created by Tom Preston-Werner and Chris Wanstrath.
9
10
WWW: http://gitorious.org/projects/git-python/

Return to bug 199335