85d727db09
0.19.2: BUG FIXES * Fix deprecated Index.iterblobs method. 0.19.1: IMPROVEMENTS * Add 'dulwich.mailmap' file for reading mailmap files. * Dulwich no longer depends on urllib3[secure]. Instead, "dulwich[https]" can be used to pull in the necessary dependencies for HTTPS support. * Support the `http.sslVerify` and `http.sslCAInfo` configuration options. * Factor out `dulwich.client.parse_rsync_url` function. * Fix repeat HTTP requests using the same smart HTTP client. * New 'client.PLinkSSHVendor' for creating connections using PuTTY's plink.exe. * Only pass in `key_filename` and `password` to SSHVendor implementations if those parameters are set. (This helps with older SSHVendor implementations) API CHANGES * Index.iterblobs has been renamed to Index.iterobjects.
27 lines
1 KiB
Makefile
27 lines
1 KiB
Makefile
# $NetBSD: Makefile,v 1.26 2018/04/09 09:05:51 adam Exp $
|
|
|
|
DISTNAME= dulwich-0.19.2
|
|
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"
|