19ce0a9372
0.19.15: * Properly handle files that are just executable for the current user. * Fix handling of stored encoding in ``dulwich.porcelain.get_object_by_path`` on Python 3. * Support the include_trees and rename_detector arguments at the same time when diffing trees.
27 lines
1 KiB
Makefile
27 lines
1 KiB
Makefile
# $NetBSD: Makefile,v 1.35 2020/02/01 20:45:10 adam Exp $
|
|
|
|
DISTNAME= dulwich-0.19.15
|
|
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
|
|
|
|
DEPENDS+= ${PYPKGPREFIX}-certifi-[0-9]*:../../security/py-certifi
|
|
DEPENDS+= ${PYPKGPREFIX}-urllib3>=1.21:../../www/py-urllib3
|
|
TEST_DEPENDS+= ${PYPKGPREFIX}-fastimport-[0-9]*:../../devel/py-fastimport
|
|
TEST_DEPENDS+= ${PYPKGPREFIX}-gevent-[0-9]*:../../net/py-gevent
|
|
TEST_DEPENDS+= ${PYPKGPREFIX}-geventhttpclient-[0-9]*:../../net/py-geventhttpclient
|
|
TEST_DEPENDS+= ${PYPKGPREFIX}-mock-[0-9]*:../../devel/py-mock
|
|
|
|
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"
|