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 Dec 17 13:46:16 UTC 2018

Modified Files:
        pkgsrc/devel/py-dulwich: ALTERNATIVES Makefile PLIST distinfo

Log Message:
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.


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 pkgsrc/devel/py-dulwich/ALTERNATIVES
cvs rdiff -u -r1.28 -r1.29 pkgsrc/devel/py-dulwich/Makefile
cvs rdiff -u -r1.13 -r1.14 pkgsrc/devel/py-dulwich/PLIST
cvs rdiff -u -r1.25 -r1.26 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/ALTERNATIVES
diff -u pkgsrc/devel/py-dulwich/ALTERNATIVES:1.1 pkgsrc/devel/py-dulwich/ALTERNATIVES:1.2
--- pkgsrc/devel/py-dulwich/ALTERNATIVES:1.1    Fri Jul 14 10:53:35 2017
+++ pkgsrc/devel/py-dulwich/ALTERNATIVES        Mon Dec 17 13:46:16 2018
@@ -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@

Index: pkgsrc/devel/py-dulwich/Makefile
diff -u pkgsrc/devel/py-dulwich/Makefile:1.28 pkgsrc/devel/py-dulwich/Makefile:1.29
--- pkgsrc/devel/py-dulwich/Makefile:1.28       Tue Sep 11 07:16:28 2018
+++ pkgsrc/devel/py-dulwich/Makefile    Mon Dec 17 13:46:16 2018
@@ -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 @@ TEST_DEPENDS+=        ${PYPKGPREFIX}-mock-[0-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"

Index: pkgsrc/devel/py-dulwich/PLIST
diff -u pkgsrc/devel/py-dulwich/PLIST:1.13 pkgsrc/devel/py-dulwich/PLIST:1.14
--- pkgsrc/devel/py-dulwich/PLIST:1.13  Mon Jul  9 07:53:23 2018
+++ pkgsrc/devel/py-dulwich/PLIST       Mon Dec 17 13:46:16 2018
@@ -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/client.pyo
 ${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

Index: pkgsrc/devel/py-dulwich/distinfo
diff -u pkgsrc/devel/py-dulwich/distinfo:1.25 pkgsrc/devel/py-dulwich/distinfo:1.26
--- pkgsrc/devel/py-dulwich/distinfo:1.25       Tue Sep 11 07:16:28 2018
+++ pkgsrc/devel/py-dulwich/distinfo    Mon Dec 17 13:46:16 2018
@@ -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