pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/devel/py-dulwich
Module Name: pkgsrc
Committed By: adam
Date: Mon Apr 9 09:05:51 UTC 2018
Modified Files:
pkgsrc/devel/py-dulwich: Makefile PLIST distinfo
Log Message:
py-dulwich: updated to 0.19.2
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.
To generate a diff of this commit:
cvs rdiff -u -r1.25 -r1.26 pkgsrc/devel/py-dulwich/Makefile
cvs rdiff -u -r1.11 -r1.12 pkgsrc/devel/py-dulwich/PLIST
cvs rdiff -u -r1.22 -r1.23 pkgsrc/devel/py-dulwich/distinfo
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/devel/py-dulwich/Makefile
diff -u pkgsrc/devel/py-dulwich/Makefile:1.25 pkgsrc/devel/py-dulwich/Makefile:1.26
--- pkgsrc/devel/py-dulwich/Makefile:1.25 Tue Nov 14 11:36:22 2017
+++ pkgsrc/devel/py-dulwich/Makefile Mon Apr 9 09:05:51 2018
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.25 2017/11/14 11:36:22 adam Exp $
+# $NetBSD: Makefile,v 1.26 2018/04/09 09:05:51 adam Exp $
-DISTNAME= dulwich-0.18.6
+DISTNAME= dulwich-0.19.2
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
CATEGORIES= devel python
MASTER_SITES= ${MASTER_SITE_PYPI:=d/dulwich/}
@@ -10,11 +10,12 @@ 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
+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 && \
Index: pkgsrc/devel/py-dulwich/PLIST
diff -u pkgsrc/devel/py-dulwich/PLIST:1.11 pkgsrc/devel/py-dulwich/PLIST:1.12
--- pkgsrc/devel/py-dulwich/PLIST:1.11 Tue Aug 22 08:02:24 2017
+++ pkgsrc/devel/py-dulwich/PLIST Mon Apr 9 09:05:51 2018
@@ -1,10 +1,11 @@
-@comment $NetBSD: PLIST,v 1.11 2017/08/22 08:02:24 adam Exp $
+@comment $NetBSD: PLIST,v 1.12 2018/04/09 09:05:51 adam Exp $
bin/dul-receive-pack${PYVERSSUFFIX}
bin/dul-upload-pack${PYVERSSUFFIX}
bin/dulwich${PYVERSSUFFIX}
${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
+${PYSITELIB}/${EGG_INFODIR}/requires.txt
${PYSITELIB}/${EGG_INFODIR}/top_level.txt
${PYSITELIB}/docs/tutorial/conclusion.txt
${PYSITELIB}/docs/tutorial/encoding.txt
@@ -85,6 +86,9 @@ ${PYSITELIB}/dulwich/log_utils.pyo
${PYSITELIB}/dulwich/lru_cache.py
${PYSITELIB}/dulwich/lru_cache.pyc
${PYSITELIB}/dulwich/lru_cache.pyo
+${PYSITELIB}/dulwich/mailmap.py
+${PYSITELIB}/dulwich/mailmap.pyc
+${PYSITELIB}/dulwich/mailmap.pyo
${PYSITELIB}/dulwich/object_store.py
${PYSITELIB}/dulwich/object_store.pyc
${PYSITELIB}/dulwich/object_store.pyo
@@ -267,6 +271,9 @@ ${PYSITELIB}/dulwich/tests/test_index.py
${PYSITELIB}/dulwich/tests/test_lru_cache.py
${PYSITELIB}/dulwich/tests/test_lru_cache.pyc
${PYSITELIB}/dulwich/tests/test_lru_cache.pyo
+${PYSITELIB}/dulwich/tests/test_mailmap.py
+${PYSITELIB}/dulwich/tests/test_mailmap.pyc
+${PYSITELIB}/dulwich/tests/test_mailmap.pyo
${PYSITELIB}/dulwich/tests/test_missing_obj_finder.py
${PYSITELIB}/dulwich/tests/test_missing_obj_finder.pyc
${PYSITELIB}/dulwich/tests/test_missing_obj_finder.pyo
Index: pkgsrc/devel/py-dulwich/distinfo
diff -u pkgsrc/devel/py-dulwich/distinfo:1.22 pkgsrc/devel/py-dulwich/distinfo:1.23
--- pkgsrc/devel/py-dulwich/distinfo:1.22 Tue Nov 14 11:36:22 2017
+++ pkgsrc/devel/py-dulwich/distinfo Mon Apr 9 09:05:51 2018
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.22 2017/11/14 11:36:22 adam Exp $
+$NetBSD: distinfo,v 1.23 2018/04/09 09:05:51 adam Exp $
-SHA1 (dulwich-0.18.6.tar.gz) = 57b52b9cdf04cb3ded6041c7add71c15e2ae9aa9
-RMD160 (dulwich-0.18.6.tar.gz) = 6053ca2dac5870d7926c80b884b2134e2e058dac
-SHA512 (dulwich-0.18.6.tar.gz) = 2d2120e23dd4bc2c9dcfe601f21ac757ee3fe2a343923c50b32c067f4d329ac89cdf0894bff450bf52c69e99759bb8692f0f14ed73d01be6bc3b0402d58d1148
-Size (dulwich-0.18.6.tar.gz) = 331325 bytes
+SHA1 (dulwich-0.19.2.tar.gz) = 2928ce834685509fe3b66670db2a07db0a1f1bc4
+RMD160 (dulwich-0.19.2.tar.gz) = f1ee2244b05cc617b1b091a1b1646930b453ea14
+SHA512 (dulwich-0.19.2.tar.gz) = b4bea6080e8dc4516638299b95c6abad2029bfdcf67b1bc3fb490c044ea0108602b0e8bae4c5c842b9cf6db7e6bef71365298300406dc7a6cd801cd92a1652dc
+Size (dulwich-0.19.2.tar.gz) = 342093 bytes
Home |
Main Index |
Thread Index |
Old Index