pkgsrc/devel/py-dulwich/Makefile
adam 0bc5bcbfbd py-dulwich: updated to 0.18.6
0.18.6:
BUG FIXES
* Fix handling of empty repositories in ``porcelain.clone``.
* Raise an error when attempting to add paths that are not under the
  repository.
* Fix error message for missing trailing ].

IMPROVEMENTS
* Enforce date field parsing consistency. This also add checks on
  those date fields for potential overflow.
2017-11-14 11:36:22 +00:00

26 lines
926 B
Makefile

# $NetBSD: Makefile,v 1.25 2017/11/14 11:36:22 adam Exp $
DISTNAME= dulwich-0.18.6
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
CATEGORIES= devel python
MASTER_SITES= ${MASTER_SITE_PYPI:=d/dulwich/}
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= https://www.dulwich.io/
COMMENT= Python implementation of Git
LICENSE= apache-2.0 OR gnu-gpl-v2
# TEST_DEPENDS
BUILD_DEPENDS+= ${PYPKGPREFIX}-fastimport-[0-9]*:../../devel/py-fastimport
BUILD_DEPENDS+= ${PYPKGPREFIX}-mock-[0-9]*:../../devel/py-mock
BUILD_DEPENDS+= ${PYPKGPREFIX}-gevent-[0-9]*:../../net/py-gevent
BUILD_DEPENDS+= ${PYPKGPREFIX}-geventhttpclient-[0-9]*:../../net/py-geventhttpclient
post-install:
cd ${DESTDIR}${PREFIX}/bin && \
${MV} dul-receive-pack dul-receive-pack${PYVERSSUFFIX} && \
${MV} dul-upload-pack dul-upload-pack${PYVERSSUFFIX} && \
${MV} dulwich dulwich${PYVERSSUFFIX} || ${TRUE}
.include "../../lang/python/egg.mk"
.include "../../mk/bsd.pkg.mk"