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