pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/devel/py-dulwich py-dulwich: updated to 0.19.9
details: https://anonhg.NetBSD.org/pkgsrc/rev/8a3b887958f2
branches: trunk
changeset: 326964:8a3b887958f2
user: adam <adam%pkgsrc.org@localhost>
date: Mon Dec 17 13:46:16 2018 +0000
description:
py-dulwich: updated to 0.19.9
0.19.9:
BUG FIXES
* Avoid fetching ghosts in Repo.fetch.
* Preserve port and username in parsed HTTP URLs.
* Add basic server side implementation of git-upload-archive.
0.19.8:
* Fix encoding when reading README file in setup.py.
0.19.7:
CHANGES
* Drop support for Python 3 < 3.4. This is because
pkg_resources (which get used by setuptools and mock)
no longer supports 3.3 and earlier.
IMPROVEMENTS
* Support depth argument to GitClient.fetch_pack and support
fetching and updating shallow metadata.
BUG FIXES
* Don't write to stdout and stderr when they are not available
* Fix compatibility with newer versions of git, which expect CONTENT_LENGTH
to be set to 0 for empty body requests.
* Raise an exception client-side when a caller tries to request
SHAs that are not directly referenced the servers' refs.
* Raise more informative errors when unable to connect to repository
over SSH or subprocess.
* Handle commit identity fields with multiple ">" characters.
IMPROVEMENTS
* dulwich.porcelain.get_object_by_path method for easily
accessing a path in another tree.
* Support the i18n.commitEncoding setting in config.
diffstat:
devel/py-dulwich/ALTERNATIVES | 6 +++---
devel/py-dulwich/Makefile | 10 +++++-----
devel/py-dulwich/PLIST | 11 +++++++----
devel/py-dulwich/distinfo | 10 +++++-----
4 files changed, 20 insertions(+), 17 deletions(-)
diffs (77 lines):
diff -r 3116b83c3195 -r 8a3b887958f2 devel/py-dulwich/ALTERNATIVES
--- a/devel/py-dulwich/ALTERNATIVES Mon Dec 17 13:39:37 2018 +0000
+++ b/devel/py-dulwich/ALTERNATIVES Mon Dec 17 13:46:16 2018 +0000
@@ -1,3 +1,3 @@
-bin/dul-receive-pack @PREFIX@/bin/dul-receive-pack@PYVERSSUFFIX@
-bin/dul-upload-pack @PREFIX@/bin/dul-upload-pack@PYVERSSUFFIX@
-bin/dulwich @PREFIX@/bin/dulwich@PYVERSSUFFIX@
+bin/dul-receive-pack @PREFIX@/bin/dul-receive-pack-@PYVERSSUFFIX@
+bin/dul-upload-pack @PREFIX@/bin/dul-upload-pack-@PYVERSSUFFIX@
+bin/dulwich @PREFIX@/bin/dulwich-@PYVERSSUFFIX@
diff -r 3116b83c3195 -r 8a3b887958f2 devel/py-dulwich/Makefile
--- a/devel/py-dulwich/Makefile Mon Dec 17 13:39:37 2018 +0000
+++ b/devel/py-dulwich/Makefile Mon Dec 17 13:46:16 2018 +0000
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.28 2018/09/11 07:16:28 adam Exp $
+# $NetBSD: Makefile,v 1.29 2018/12/17 13:46:16 adam Exp $
-DISTNAME= dulwich-0.19.6
+DISTNAME= dulwich-0.19.9
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
CATEGORIES= devel python
MASTER_SITES= ${MASTER_SITE_PYPI:=d/dulwich/}
@@ -19,9 +19,9 @@
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}
+ ${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"
diff -r 3116b83c3195 -r 8a3b887958f2 devel/py-dulwich/PLIST
--- a/devel/py-dulwich/PLIST Mon Dec 17 13:39:37 2018 +0000
+++ b/devel/py-dulwich/PLIST Mon Dec 17 13:46:16 2018 +0000
@@ -1,9 +1,11 @@
-@comment $NetBSD: PLIST,v 1.13 2018/07/09 07:53:23 adam Exp $
-bin/dul-receive-pack${PYVERSSUFFIX}
-bin/dul-upload-pack${PYVERSSUFFIX}
-bin/dulwich${PYVERSSUFFIX}
+@comment $NetBSD: PLIST,v 1.14 2018/12/17 13:46:16 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}/SOURCES.txt.~1~
+${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt.~2~
${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
${PYSITELIB}/${EGG_INFODIR}/requires.txt
${PYSITELIB}/${EGG_INFODIR}/top_level.txt
@@ -35,6 +37,7 @@
${PYSITELIB}/dulwich/config.py
${PYSITELIB}/dulwich/config.pyc
${PYSITELIB}/dulwich/config.pyo
+${PYSITELIB}/dulwich/contrib/README.md
${PYSITELIB}/dulwich/contrib/__init__.py
${PYSITELIB}/dulwich/contrib/__init__.pyc
${PYSITELIB}/dulwich/contrib/__init__.pyo
diff -r 3116b83c3195 -r 8a3b887958f2 devel/py-dulwich/distinfo
--- a/devel/py-dulwich/distinfo Mon Dec 17 13:39:37 2018 +0000
+++ b/devel/py-dulwich/distinfo Mon Dec 17 13:46:16 2018 +0000
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.25 2018/09/11 07:16:28 adam Exp $
+$NetBSD: distinfo,v 1.26 2018/12/17 13:46:16 adam Exp $
-SHA1 (dulwich-0.19.6.tar.gz) = 86aa55a4d7d83879555df2f2590497532db2b356
-RMD160 (dulwich-0.19.6.tar.gz) = b755b3fbe52bd8427ca837066b6de675fc60af47
-SHA512 (dulwich-0.19.6.tar.gz) = 7e13b465672c5eee4f6d14f28e9cba63ceddf1ad119822fabd17b01ad6b89c6dd8c0bbf562bdf50e0ada5ce17bcad531549054417d744e5cf64a610e8a1740bc
-Size (dulwich-0.19.6.tar.gz) = 349939 bytes
+SHA1 (dulwich-0.19.9.tar.gz) = 9b49cbe17177ee8c7e55a6cdb4b7e7f8da05ffaf
+RMD160 (dulwich-0.19.9.tar.gz) = e9a7b0a73a40bde0a192089dee97c8e2fea87e5a
+SHA512 (dulwich-0.19.9.tar.gz) = 7e97faaf566c60886ae806941c5d58495fd0fd3e7fe6d7d23033c6b721bd602ed6dce429c13d50fca6da320984a9a352edb7709c59cdea98c28ccd5522817580
+Size (dulwich-0.19.9.tar.gz) = 357081 bytes
Home |
Main Index |
Thread Index |
Old Index