Update to dulwich 0.9.7. From MAINTAINER. Tweaks by me.
This commit is contained in:
parent
46414850ba
commit
a5b90b40ff
@ -1,9 +1,8 @@
|
||||
# $OpenBSD: Makefile,v 1.13 2014/10/03 22:51:48 sthen Exp $
|
||||
# $OpenBSD: Makefile,v 1.14 2014/10/12 20:57:06 juanfra Exp $
|
||||
|
||||
COMMENT = pure Python implementation of Git file formats and protocols
|
||||
COMMENT = pure Python implementation of Git file formats and protocols
|
||||
|
||||
MODPY_EGG_VERSION = 0.9.5
|
||||
REVISION = 0
|
||||
MODPY_EGG_VERSION = 0.9.7
|
||||
DISTNAME = dulwich-${MODPY_EGG_VERSION}
|
||||
PKGNAME = py-${DISTNAME}
|
||||
|
||||
@ -14,17 +13,24 @@ HOMEPAGE = http://samba.org/~jelmer/dulwich/
|
||||
MAINTAINER = Dmitrij D. Czarkoff <czarkoff@gmail.com>
|
||||
|
||||
# GPLv2
|
||||
PERMIT_PACKAGE_CDROM = Yes
|
||||
PERMIT_PACKAGE_CDROM = Yes
|
||||
|
||||
WANTLIB += pthread ${MODPY_WANTLIB}
|
||||
|
||||
MASTER_SITES = ${MASTER_SITE_PYPI:=d/dulwich/}
|
||||
|
||||
MODULES = lang/python
|
||||
MODPY_SETUPTOOLS = Yes
|
||||
|
||||
TEST_DEPENDS = devel/py-nose \
|
||||
devel/git,-main
|
||||
RUN_DEPENDS = devel/py-gevent \
|
||||
net/py-geventhttpclient
|
||||
|
||||
WANTLIB += ${MODPY_WANTLIB}
|
||||
# One test fails due to the lack of OpenStack SWIFT.
|
||||
# The other failed tests are related to this bug:
|
||||
# https://github.com/surfly/gevent/issues/446
|
||||
TEST_DEPENDS = ${RUN_DEPENDS} \
|
||||
devel/py-nose \
|
||||
devel/git,-main
|
||||
|
||||
do-test:
|
||||
cd ${WRKSRC} && nosetests
|
||||
|
@ -1,2 +1,2 @@
|
||||
SHA256 (dulwich-0.9.5.tar.gz) = dR/p4dMrYeIfCGtPoHypa2kWWnrSTFzrrvT4gD9RLAs=
|
||||
SIZE (dulwich-0.9.5.tar.gz) = 237255
|
||||
SHA256 (dulwich-0.9.7.tar.gz) = Eud7BDSjuzB16cluYI7pw/heSbycgzUTmrqHld5AAPM=
|
||||
SIZE (dulwich-0.9.7.tar.gz) = 259335
|
||||
|
@ -1,5 +1,4 @@
|
||||
@comment $OpenBSD: PLIST,v 1.2 2014/03/25 16:18:02 sthen Exp $
|
||||
bin/dul-daemon
|
||||
@comment $OpenBSD: PLIST,v 1.3 2014/10/12 20:57:06 juanfra Exp $
|
||||
bin/dul-receive-pack
|
||||
bin/dul-upload-pack
|
||||
bin/dul-web
|
||||
@ -12,15 +11,25 @@ lib/python${MODPY_VERSION}/site-packages/dulwich-${MODPY_EGG_VERSION}-py${MODPY_
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich-${MODPY_EGG_VERSION}-py${MODPY_VERSION}.egg-info/top_level.txt
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/__init__.py
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/__init__.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/_compat.py
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/_compat.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/_diff_tree.c
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/_diff_tree.so
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/_objects.c
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/_objects.so
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/_pack.c
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/_pack.so
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/client.py
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/client.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/config.py
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/config.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/contrib/
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/contrib/__init__.py
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/contrib/__init__.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/contrib/swift.py
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/contrib/swift.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/contrib/test_swift.py
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/contrib/test_swift.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/contrib/test_swift_smoke.py
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/contrib/test_swift_smoke.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/diff_tree.py
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/diff_tree.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/errors.py
|
||||
@ -29,6 +38,8 @@ lib/python${MODPY_VERSION}/site-packages/dulwich/fastexport.py
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/fastexport.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/file.py
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/file.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/greenthreads.py
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/greenthreads.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/hooks.py
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/hooks.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/index.py
|
||||
@ -57,6 +68,7 @@ lib/python${MODPY_VERSION}/site-packages/dulwich/repo.py
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/repo.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/server.py
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/server.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/stdint.h
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/__init__.py
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/__init__.pyc
|
||||
@ -79,6 +91,165 @@ lib/python${MODPY_VERSION}/site-packages/dulwich/tests/compat/test_web.py
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/compat/test_web.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/compat/utils.py
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/compat/utils.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/blobs/
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/blobs/11/
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/blobs/11/11111111111111111111111111111111111111
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/blobs/6f/
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/blobs/6f/670c0fb53f9463760b7295fbb814e965fb20c8
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/blobs/95/
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/blobs/95/4a536f7819d40e6f637f849ee187dd10066349
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/blobs/e6/
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/blobs/e6/9de29bb2d1d6434b8b29ae775ad8c2e48c5391
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/commits/
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/commits/0d/
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/commits/0d/89f20333fbb1d2f3a94da77f4981373d8f4310
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/commits/5d/
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/commits/5d/ac377bdded4c9aeb8dff595f0faeebcc8498cc
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/commits/60/
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/commits/60/dacdc733de308bb77bb76ce0fb0f9b44c9769e
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/indexes/
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/indexes/index
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/packs/
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/packs/pack-bc63ddad95e7321ee734ea11a7a62d314e0d7481.idx
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/packs/pack-bc63ddad95e7321ee734ea11a7a62d314e0d7481.pack
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/.gitattributes
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/a.git/
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/a.git/HEAD
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/a.git/objects/
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/a.git/objects/28/
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/a.git/objects/28/237f4dc30d0d462658d6b937b08a0f0b6ef55a
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/a.git/objects/2a/
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/a.git/objects/2a/72d929692c41d8554c07f6301757ba18a65d91
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/a.git/objects/4e/
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/a.git/objects/4e/f30bbfe26431a69c3820d3a683df54d688f2ec
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/a.git/objects/4f/
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/a.git/objects/4f/2e6529203aa6d44b5af6e3292c837ceda003f9
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/a.git/objects/7d/
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/a.git/objects/7d/9a07d797595ef11344549b8d08198e48c15364
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/a.git/objects/a2/
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/a.git/objects/a2/96d0bb611188cabb256919f36bc30117cca005
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/a.git/objects/a9/
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/a.git/objects/a9/0fa2d900a17e99b433217e988c4eb4a2e9a097
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/a.git/objects/b0/
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/a.git/objects/b0/931cadc54336e78a1d980420e3268903b57a50
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/a.git/objects/ff/
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/a.git/objects/ff/d47d45845a8f6576491e1edb97e3fe6a850e7f
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/a.git/packed-refs
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/a.git/refs/
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/a.git/refs/heads/
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/a.git/refs/heads/master
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/a.git/refs/tags/
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/a.git/refs/tags/mytag
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/empty.git/
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/empty.git/HEAD
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/empty.git/config
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/empty.git/objects/
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/empty.git/objects/info/
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/empty.git/objects/info/.gitignore
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/empty.git/objects/pack/
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/empty.git/objects/pack/.gitignore
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/empty.git/refs/
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/empty.git/refs/heads/
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/empty.git/refs/heads/.gitignore
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/empty.git/refs/tags/
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/empty.git/refs/tags/.gitignore
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/ooo_merge.git/
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/ooo_merge.git/HEAD
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/ooo_merge.git/objects/
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/ooo_merge.git/objects/29/
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/ooo_merge.git/objects/29/69be3e8ee1c0222396a5611407e4769f14e54b
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/ooo_merge.git/objects/38/
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/ooo_merge.git/objects/38/74e9c60a6d149c44c928140f250d81e6381520
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/ooo_merge.git/objects/6f/
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/ooo_merge.git/objects/6f/670c0fb53f9463760b7295fbb814e965fb20c8
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/ooo_merge.git/objects/70/
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/ooo_merge.git/objects/70/c190eb48fa8bbb50ddc692a17b44cb781af7f6
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/ooo_merge.git/objects/76/
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/ooo_merge.git/objects/76/01d7f6231db6a57f7bbb79ee52e4d462fd44d1
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/ooo_merge.git/objects/90/
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/ooo_merge.git/objects/90/182552c4a85a45ec2a835cadc3451bebdfe870
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/ooo_merge.git/objects/95/
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/ooo_merge.git/objects/95/4a536f7819d40e6f637f849ee187dd10066349
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/ooo_merge.git/objects/b2/
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/ooo_merge.git/objects/b2/a2766a2879c209ab1176e7e778b81ae422eeaa
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/ooo_merge.git/objects/f5/
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/ooo_merge.git/objects/f5/07291b64138b875c28e03469025b1ea20bc614
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/ooo_merge.git/objects/f9/
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/ooo_merge.git/objects/f9/e39b120c68182a4ba35349f832d0e4e61f485c
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/ooo_merge.git/objects/fb/
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/ooo_merge.git/objects/fb/5b0425c7ce46959bec94d54b9a157645e114f5
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/ooo_merge.git/refs/
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/ooo_merge.git/refs/heads/
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/ooo_merge.git/refs/heads/master
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/refs.git/
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/refs.git/HEAD
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/refs.git/objects/
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/refs.git/objects/3b/
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/refs.git/objects/3b/9e5457140e738c2dcd39bf6d7acf88379b90d1
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/refs.git/objects/3e/
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/refs.git/objects/3e/c9c43c84ff242e3ef4a9fc5bc111fd780a76a8
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/refs.git/objects/42/
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/refs.git/objects/42/d06bd4b77fed026b154d16493e5deab78f02ec
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/refs.git/objects/a1/
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/refs.git/objects/a1/8114c31713746a33a2e70d9914d1ef3e781425
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/refs.git/objects/cd/
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/refs.git/objects/cd/a609072918d7b70057b6bef9f4c2537843fcfe
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/refs.git/objects/df/
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/refs.git/objects/df/6800012397fb85c56e7418dd4eb9405dee075c
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/refs.git/packed-refs
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/refs.git/refs/
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/refs.git/refs/heads/
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/refs.git/refs/heads/40-char-ref-aaaaaaaaaaaaaaaaaa
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/refs.git/refs/heads/loop
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/refs.git/refs/heads/master
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/refs.git/refs/tags/
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/refs.git/refs/tags/refs-0.2
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/server_new.export
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/server_old.export
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/simple_merge.git/
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/simple_merge.git/HEAD
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/simple_merge.git/objects/
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/simple_merge.git/objects/0d/
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/simple_merge.git/objects/0d/89f20333fbb1d2f3a94da77f4981373d8f4310
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/simple_merge.git/objects/1b/
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/simple_merge.git/objects/1b/6318f651a534b38f9c7aedeebbd56c1e896853
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/simple_merge.git/objects/29/
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/simple_merge.git/objects/29/69be3e8ee1c0222396a5611407e4769f14e54b
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/simple_merge.git/objects/4c/
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/simple_merge.git/objects/4c/ffe90e0a41ad3f5190079d7c8f036bde29cbe6
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/simple_merge.git/objects/5d/
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/simple_merge.git/objects/5d/ac377bdded4c9aeb8dff595f0faeebcc8498cc
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/simple_merge.git/objects/60/
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/simple_merge.git/objects/60/dacdc733de308bb77bb76ce0fb0f9b44c9769e
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/simple_merge.git/objects/6f/
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/simple_merge.git/objects/6f/670c0fb53f9463760b7295fbb814e965fb20c8
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/simple_merge.git/objects/70/
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/simple_merge.git/objects/70/c190eb48fa8bbb50ddc692a17b44cb781af7f6
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/simple_merge.git/objects/90/
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/simple_merge.git/objects/90/182552c4a85a45ec2a835cadc3451bebdfe870
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/simple_merge.git/objects/95/
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/simple_merge.git/objects/95/4a536f7819d40e6f637f849ee187dd10066349
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/simple_merge.git/objects/ab/
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/simple_merge.git/objects/ab/64bbdcc51b170d21588e5c5d391ee5c0c96dfd
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/simple_merge.git/objects/d4/
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/simple_merge.git/objects/d4/bdad6549dfedf25d3b89d21f506aff575b28a7
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/simple_merge.git/objects/d8/
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/simple_merge.git/objects/d8/0c186a03f423a81b39df39dc87fd269736ca86
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/simple_merge.git/objects/e6/
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/simple_merge.git/objects/e6/9de29bb2d1d6434b8b29ae775ad8c2e48c5391
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/simple_merge.git/refs/
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/simple_merge.git/refs/heads/
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/simple_merge.git/refs/heads/master
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/submodule/
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/repos/submodule/dotgit
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/tags/
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/tags/71/
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/tags/71/033db03a03c6a36721efcf1968dd8f8e0cf023
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/trees/
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/trees/70/
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/data/trees/70/c190eb48fa8bbb50ddc692a17b44cb781af7f6
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/test_blackbox.py
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/test_blackbox.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/test_client.py
|
||||
@ -93,6 +264,8 @@ lib/python${MODPY_VERSION}/site-packages/dulwich/tests/test_file.py
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/test_file.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/test_grafts.py
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/test_grafts.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/test_greenthreads.py
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/test_greenthreads.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/test_hooks.py
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/test_hooks.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/dulwich/tests/test_index.py
|
||||
|
Loading…
Reference in New Issue
Block a user