Tue Feb 7 20:06:44 2012 UTC ()
Update to 0.8.3

Changelog:
0.8.3	2012-01-21

 FEATURES

  * The config parser now supports the git-config file format as
    described in git-config(1) and can write git config files.
    (Jelmer Vernooij, #531092, #768687)

  * ``Repo.do_commit`` will now use the user identity from
    .git/config or ~/.gitconfig if none was explicitly specified.
   (Jelmer Vernooij)

 BUG FIXES

  * Allow ``determine_wants`` methods to include the zero sha in their
    return value. (Jelmer Vernooij)

0.8.2	2011-12-18

 BUG FIXES

  * Cope with different zlib buffer sizes in sha1 file parser.
    (Jelmer Vernooij)

  * Fix get_transport_and_path for HTTP/HTTPS URLs.
    (Bruno Reni辿)

  * Avoid calling free_objects() on NULL in error cases. (Chris Eberle)

  * Fix use --bare argument to 'dulwich init'. (Chris Eberle)

  * Properly abort connections when the determine_wants function
    raises an exception. (Jelmer Vernooij, #856769)

  * Tweak xcodebuild hack to deal with more error output.
    (Jelmer Vernooij, #903840)

 FEATURES

  * Add support for retrieving tarballs from remote servers.
    (Jelmer Vernooij, #379087)

  * New method ``update_server_info`` which generates data
    for dumb server access. (Jelmer Vernooij, #731235)

0.8.1	2011-10-31

 FEATURES

  * Repo.do_commit has a new argument 'ref'.

  * Repo.do_commit has a new argument 'merge_heads'. (Jelmer Vernooij)

  * New ``Repo.get_walker`` method. (Jelmer Vernooij)

  * New ``Repo.clone`` method. (Jelmer Vernooij, #725369)

  * ``GitClient.send_pack`` now supports the 'side-band-64k' capability.
    (Jelmer Vernooij)

  * ``HttpGitClient`` which supports the smart server protocol over
    HTTP. "dumb" access is not yet supported. (Jelmer Vernooij, #373688)

  * Add basic support for alternates. (Jelmer Vernooij, #810429)

 CHANGES

  * unittest2 or python >= 2.7 is now required for the testsuite.
    testtools is no longer supported. (Jelmer Vernooij, #830713)

 BUG FIXES

  * Fix compilation with older versions of MSVC.  (Martin gz)

  * Special case 'refs/stash' as a valid ref. (Jelmer Vernooij, #695577)

  * Smart protocol clients can now change refs even if they are
    not uploading new data. (Jelmer Vernooij, #855993)

 * Don't compile C extensions when running in pypy.
   (Ronny Pfannschmidt, #881546)

 * Use different name for strnlen replacement function to avoid clashing
   with system strnlen. (Jelmer Vernooij, #880362)

 API CHANGES

  * ``Repo.revision_history`` is now deprecated in favor of ``Repo.get_walker``.
    (Jelmer Vernooij)

0.8.0	2011-08-07

 FEATURES

  * New DeltaChainIterator abstract class for quickly iterating all objects in
    a pack, with implementations for pack indexing and inflation.
    (Dave Borowitz)

  * New walk module with a Walker class for customizable commit walking.
    (Dave Borowitz)

  * New tree_changes_for_merge function in diff_tree. (Dave Borowitz)

  * Easy rename detection in RenameDetector even without find_copies_harder.
    (Dave Borowitz)

 BUG FIXES

  * Avoid storing all objects in memory when writing pack.
    (Jelmer Vernooij, #813268)

  * Support IPv6 for git:// connections. (Jelmer Vernooij, #801543)

  * Improve performance of Repo.revision_history(). (Timo Schmid, #535118)

  * Fix use of SubprocessWrapper on Windows. (Paulo Madeira, #670035)

  * Fix compilation on newer versions of Mac OS X (Lion and up). (Ryan McKern, #794543)

  * Prevent raising ValueError for correct refs in RefContainer.__delitem__.

  * Correctly return a tuple from MemoryObjectStore.get_raw. (Dave Borowitz)

  * Fix a bug in reading the pack checksum when there are fewer than 20 bytes
    left in the buffer. (Dave Borowitz)

  * Support ~ in git:// URL paths. (Jelmer Vernooij, #813555)

  * Make ShaFile.__eq__ work when other is not a ShaFile. (Dave Borowitz)

  * ObjectStore.get_graph_walker() now no longer yields the same
    revision more than once. This has a significant improvement for
    performance when wide revision graphs are involved.
    (Jelmer Vernooij, #818168)

  * Teach ReceivePackHandler how to read empty packs. (Dave Borowitz)

  * Don't send a pack with duplicates of the same object. (Dave Borowitz)

  * Teach the server how to serve a clone of an empty repo. (Dave Borowitz)

  * Correctly advertise capabilities during receive-pack. (Dave Borowitz)

  * Fix add/add and add/rename conflicts in tree_changes_for_merge.
    (Dave Borowitz)

  * Use correct MIME types in web server. (Dave Borowitz)

 API CHANGES

  * write_pack no longer takes the num_objects argument and requires an object
    to be passed in that is iterable (rather than an iterator) and that
    provides __len__.  (Jelmer Vernooij)

  * write_pack_data has been renamed to write_pack_objects and no longer takes a
    num_objects argument. (Jelmer Vernooij)

  * take_msb_bytes, read_zlib_chunks, unpack_objects, and
    PackStreamReader.read_objects now take an additional argument indicating a
    crc32 to compute. (Dave Borowitz)

  * PackObjectIterator was removed; its functionality is still exposed by
    PackData.iterobjects. (Dave Borowitz)

  * Add a sha arg to write_pack_object to incrementally compute a SHA.
    (Dave Borowitz)

  * Include offset in PackStreamReader results. (Dave Borowitz)

  * Move PackStreamReader from server to pack. (Dave Borowitz)

  * Extract a check_length_and_checksum, compute_file_sha, and
    pack_object_header pack helper functions. (Dave Borowitz)

  * Extract a compute_file_sha function. (Dave Borowitz)

  * Remove move_in_thin_pack as a separate method; add_thin_pack now completes
    the thin pack and moves it in in one step. Remove ThinPackData as well.
    (Dave Borowitz)

  * Custom buffer size in read_zlib_chunks. (Dave Borowitz)

  * New UnpackedObject data class that replaces ad-hoc tuples in the return
    value of unpack_object and various DeltaChainIterator methods.
    (Dave Borowitz)

  * Add a lookup_path convenience method to Tree. (Dave Borowitz)

  * Optionally create RenameDetectors without passing in tree SHAs.
    (Dave Borowitz)

  * Optionally include unchanged entries in RenameDetectors. (Dave Borowitz)

  * Optionally pass a RenameDetector to tree_changes. (Dave Borowitz)

  * Optionally pass a request object through to server handlers. (Dave Borowitz)

 TEST CHANGES

  * If setuptools is installed, "python setup.py test" will now run the testsuite.
    (Jelmer Vernooij)

  * Add a new build_pack test utility for building packs from a simple spec.
    (Dave Borowitz)

  * Add a new build_commit_graph test utility for building commits from a
    simple spec. (Dave Borowitz)

0.7.1	2011-04-12

 BUG FIXES

  * Fix double decref in _diff_tree.c. (Ted Horst, #715528)

  * Fix the build on Windows. (Pascal Quantin)

  * Fix get_transport_and_path compatibility with pre-2.6.5 versions of Python.
    (Max Bowsher, #707438)

  * BaseObjectStore.determine_wants_all no longer breaks on zero SHAs.
    (Jelmer Vernooij)

  * write_tree_diff() now supports submodules.
    (Jelmer Vernooij)

  * Fix compilation for XCode 4 and older versions of distutils.sysconfig.
    (Daniele Sluijters)

 IMPROVEMENTS

  * Sphinxified documentation. (Lukasz Balcerzak)

  * Add Pack.keep.(Marc Brinkmann)

 API CHANGES

  * The order of the parameters to Tree.add(name, mode, sha) has changed, and
    is now consistent with the rest of Dulwich. Existing code will still
    work but print a DeprecationWarning. (Jelmer Vernooij, #663550)

  * Tree.entries() is now deprecated in favour of Tree.items() and
    Tree.iteritems(). (Jelmer Vernooij)

0.7.0	2011-01-21

 FEATURES

  * New `dulwich.diff_tree` module for simple content-based rename detection.
    (Dave Borowitz)

  * Add Tree.items(). (Jelmer Vernooij)

  * Add eof() and unread_pkt_line() methods to Protocol. (Dave Borowitz)

  * Add write_tree_diff(). (Jelmer Vernooij)

  * Add `serve_command` function for git server commands as executables.
    (Jelmer Vernooij)

  * dulwich.client.get_transport_and_path now supports rsync-style repository URLs.
    (Dave Borowitz, #568493)

 BUG FIXES

  * Correct short-circuiting operation for no-op fetches in the server.
    (Dave Borowitz)

  * Support parsing git mbox patches without a version tail, as generated by
    Mercurial.  (Jelmer Vernooij)

  * Fix dul-receive-pack and dul-upload-pack. (Jelmer Vernooij)

  * Zero-padded file modes in Tree objects no longer trigger an exception but
    the check code warns about them. (Augie Fackler, #581064)

  * Repo.init() now honors the mkdir flag. (#671159)

  * The ref format is now checked when setting a ref rather than when reading it back.
    (Dave Borowitz, #653527)

  * Make sure pack files are closed correctly. (Tay Ray Chuan)

 DOCUMENTATION

  * Run the tutorial inside the test suite. (Jelmer Vernooij)

  * Reorganized and updated the tutorial. (Jelmer Vernooij, Dave Borowitz, #610550,
     #610540)

0.6.2	2010-10-16

 BUG FIXES

  * HTTP server correctly handles empty CONTENT_LENGTH. (Dave Borowitz)

  * Don't error when creating GitFiles with the default mode. (Dave Borowitz)

  * ThinPackData.from_file now works with resolve_ext_ref callback.
    (Dave Borowitz)

  * Provide strnlen() on mingw32 which doesn't have it. (Hans Kolek)

  * Set bare=true in the configuratin for bare repositories. (Dirk Neumann)

 FEATURES

  * Use slots for core objects to save up on memory. (Jelmer Vernooij)

  * Web server supports streaming progress/pack output. (Dave Borowitz)

  * New public function dulwich.pack.write_pack_header. (Dave Borowitz)

  * Distinguish between missing files and read errors in HTTP server.
    (Dave Borowitz)

  * Initial work on support for fastimport using python-fastimport.
    (Jelmer Vernooij)

  * New dulwich.pack.MemoryPackIndex class. (Jelmer Vernooij)

  * Delegate SHA peeling to the object store.  (Dave Borowitz)

 TESTS

  * Use GitFile when modifying packed-refs in tests. (Dave Borowitz)

  * New tests in test_web with better coverage and fewer ad-hoc mocks.
    (Dave Borowitz)

  * Standardize quote delimiters in test_protocol. (Dave Borowitz)

  * Fix use when testtools is installed. (Jelmer Vernooij)

  * Add trivial test for write_pack_header. (Jelmer Vernooij)

  * Refactor some of dulwich.tests.compat.server_utils. (Dave Borowitz)

  * Allow overwriting id property of objects in test utils. (Dave Borowitz)

  * Use real in-memory objects rather than stubs for server tests.
    (Dave Borowitz)

  * Clean up MissingObjectFinder. (Dave Borowitz)

 API CHANGES

  * ObjectStore.iter_tree_contents now walks contents in depth-first, sorted
    order. (Dave Borowitz)

  * ObjectStore.iter_tree_contents can optionally yield tree objects as well.
    (Dave Borowitz).

  * Add side-band-64k support to ReceivePackHandler. (Dave Borowitz)

  * Change server capabilities methods to classmethods. (Dave Borowitz)

  * Tweak server handler injection. (Dave Borowitz)

  * PackIndex1 and PackIndex2 now subclass FilePackIndex, which is
    itself a subclass of PackIndex. (Jelmer Vernooij)

 DOCUMENTATION

  * Add docstrings for various functions in dulwich.objects. (Jelmer Vernooij)

  * Clean up docstrings in dulwich.protocol. (Dave Borowitz)

  * Explicitly specify allowed protocol commands to
    ProtocolGraphWalker.read_proto_line.  (Dave Borowitz)

  * Add utility functions to DictRefsContainer. (Dave Borowitz)

0.6.1	2010-07-22

 BUG FIXES

  * Fix memory leak in C implementation of sorted_tree_items. (Dave Borowitz)

  * Use correct path separators for named repo files. (Dave Borowitz)

  * python > 2.7 and testtools-based test runners will now also pick up skipped
    tests correctly. (Jelmer Vernooij)

 FEATURES

  * Move named file initilization to BaseRepo. (Dave Borowitz)

  * Add logging utilities and git/HTTP server logging. (Dave Borowitz)

  * The GitClient interface has been cleaned up and instances are now reusable.
    (Augie Fackler)

  * Allow overriding paths to executables in GitSSHClient.
    (Ross Light, Jelmer Vernooij, #585204)

  * Add PackBasedObjectStore.pack_loose_objects(). (Jelmer Vernooij)

 TESTS

  * Add tests for sorted_tree_items and C implementation. (Dave Borowitz)

  * Add a MemoryRepo that stores everything in memory. (Dave Borowitz)

  * Quiet logging output from web tests. (Dave Borowitz)

  * More flexible version checking for compat tests. (Dave Borowitz)

  * Compat tests for servers with and without side-band-64k. (Dave Borowitz)

 CLEANUP

  * Clean up file headers. (Dave Borowitz)

 TESTS

  * Use GitFile when modifying packed-refs in tests. (Dave Borowitz)

 API CHANGES

  * dulwich.pack.write_pack_index_v{1,2} now take a file-like object
    rather than a filename. (Jelmer Vernooij)

  * Make dul-daemon/dul-web trivial wrappers around server functionality.
    (Dave Borowitz)

  * Move reference WSGI handler to web.py. (Dave Borowitz)

  * Factor out _report_status in ReceivePackHandler. (Dave Borowitz)

  * Factor out a function to convert a line to a pkt-line. (Dave Borowitz)


(ryoon)
diff -r1.3 -r1.4 pkgsrc/devel/py-dulwich/Makefile
diff -r1.3 -r1.4 pkgsrc/devel/py-dulwich/PLIST
diff -r1.3 -r1.4 pkgsrc/devel/py-dulwich/distinfo

cvs diff -r1.3 -r1.4 pkgsrc/devel/py-dulwich/Makefile (expand / switch to unified diff)

--- pkgsrc/devel/py-dulwich/Makefile 2010/06/14 10:15:15 1.3
+++ pkgsrc/devel/py-dulwich/Makefile 2012/02/07 20:06:44 1.4
@@ -1,17 +1,17 @@ @@ -1,17 +1,17 @@
1# $NetBSD: Makefile,v 1.3 2010/06/14 10:15:15 joerg Exp $ 1# $NetBSD: Makefile,v 1.4 2012/02/07 20:06:44 ryoon Exp $
2# 2#
3 3
4DISTNAME= dulwich-0.6.0 4DISTNAME= dulwich-0.8.3
5PKGNAME= ${PYPKGPREFIX}-${DISTNAME} 5PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
6EGG_NAME= ${DISTNAME} 6EGG_NAME= ${DISTNAME}
7CATEGORIES= devel python 7CATEGORIES= devel python
8MASTER_SITES= http://samba.org/~jelmer/dulwich/ 8MASTER_SITES= http://samba.org/~jelmer/dulwich/
9 9
10MAINTAINER= pkgsrc-users@NetBSD.org 10MAINTAINER= pkgsrc-users@NetBSD.org
11HOMEPAGE= http://samba.org/~jelmer/dulwich/ 11HOMEPAGE= http://samba.org/~jelmer/dulwich/
12COMMENT= Python implementation of Git 12COMMENT= Python implementation of Git
13 13
14PKG_DESTDIR_SUPPORT= user-destdir 14PKG_DESTDIR_SUPPORT= user-destdir
15 15
16.include "../../lang/python/egg.mk" 16.include "../../lang/python/egg.mk"
17.include "../../mk/bsd.pkg.mk" 17.include "../../mk/bsd.pkg.mk"

cvs diff -r1.3 -r1.4 pkgsrc/devel/py-dulwich/PLIST (expand / switch to unified diff)

--- pkgsrc/devel/py-dulwich/PLIST 2010/06/14 10:15:15 1.3
+++ pkgsrc/devel/py-dulwich/PLIST 2012/02/07 20:06:44 1.4
@@ -1,74 +1,93 @@ @@ -1,74 +1,93 @@
1@comment $NetBSD: PLIST,v 1.3 2010/06/14 10:15:15 joerg Exp $ 1@comment $NetBSD: PLIST,v 1.4 2012/02/07 20:06:44 ryoon Exp $
2bin/dul-daemon 2bin/dul-daemon
3bin/dul-web 3bin/dul-web
4bin/dulwich 4bin/dulwich
5${PYSITELIB}/${EGG_INFODIR}/PKG-INFO 5${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
6${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt 6${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
7${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt 7${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
8${PYSITELIB}/${EGG_INFODIR}/top_level.txt 8${PYSITELIB}/${EGG_INFODIR}/top_level.txt
9${PYSITELIB}/dulwich/__init__.py 9${PYSITELIB}/dulwich/__init__.py
10${PYSITELIB}/dulwich/__init__.pyc 10${PYSITELIB}/dulwich/__init__.pyc
11${PYSITELIB}/dulwich/__init__.pyo 11${PYSITELIB}/dulwich/__init__.pyo
 12${PYSITELIB}/dulwich/_compat.py
 13${PYSITELIB}/dulwich/_compat.pyc
 14${PYSITELIB}/dulwich/_compat.pyo
 15${PYSITELIB}/dulwich/_diff_tree.so
12${PYSITELIB}/dulwich/_objects.so 16${PYSITELIB}/dulwich/_objects.so
13${PYSITELIB}/dulwich/_pack.so 17${PYSITELIB}/dulwich/_pack.so
14${PYSITELIB}/dulwich/client.py 18${PYSITELIB}/dulwich/client.py
15${PYSITELIB}/dulwich/client.pyc 19${PYSITELIB}/dulwich/client.pyc
16${PYSITELIB}/dulwich/client.pyo 20${PYSITELIB}/dulwich/client.pyo
 21${PYSITELIB}/dulwich/config.py
 22${PYSITELIB}/dulwich/config.pyc
 23${PYSITELIB}/dulwich/config.pyo
 24${PYSITELIB}/dulwich/diff_tree.py
 25${PYSITELIB}/dulwich/diff_tree.pyc
 26${PYSITELIB}/dulwich/diff_tree.pyo
17${PYSITELIB}/dulwich/errors.py 27${PYSITELIB}/dulwich/errors.py
18${PYSITELIB}/dulwich/errors.pyc 28${PYSITELIB}/dulwich/errors.pyc
19${PYSITELIB}/dulwich/errors.pyo 29${PYSITELIB}/dulwich/errors.pyo
20${PYSITELIB}/dulwich/fastexport.py 30${PYSITELIB}/dulwich/fastexport.py
21${PYSITELIB}/dulwich/fastexport.pyc 31${PYSITELIB}/dulwich/fastexport.pyc
22${PYSITELIB}/dulwich/fastexport.pyo 32${PYSITELIB}/dulwich/fastexport.pyo
23${PYSITELIB}/dulwich/file.py 33${PYSITELIB}/dulwich/file.py
24${PYSITELIB}/dulwich/file.pyc 34${PYSITELIB}/dulwich/file.pyc
25${PYSITELIB}/dulwich/file.pyo 35${PYSITELIB}/dulwich/file.pyo
26${PYSITELIB}/dulwich/index.py 36${PYSITELIB}/dulwich/index.py
27${PYSITELIB}/dulwich/index.pyc 37${PYSITELIB}/dulwich/index.pyc
28${PYSITELIB}/dulwich/index.pyo 38${PYSITELIB}/dulwich/index.pyo
 39${PYSITELIB}/dulwich/log_utils.py
 40${PYSITELIB}/dulwich/log_utils.pyc
 41${PYSITELIB}/dulwich/log_utils.pyo
29${PYSITELIB}/dulwich/lru_cache.py 42${PYSITELIB}/dulwich/lru_cache.py
30${PYSITELIB}/dulwich/lru_cache.pyc 43${PYSITELIB}/dulwich/lru_cache.pyc
31${PYSITELIB}/dulwich/lru_cache.pyo 44${PYSITELIB}/dulwich/lru_cache.pyo
32${PYSITELIB}/dulwich/misc.py 
33${PYSITELIB}/dulwich/misc.pyc 
34${PYSITELIB}/dulwich/misc.pyo 
35${PYSITELIB}/dulwich/object_store.py 45${PYSITELIB}/dulwich/object_store.py
36${PYSITELIB}/dulwich/object_store.pyc 46${PYSITELIB}/dulwich/object_store.pyc
37${PYSITELIB}/dulwich/object_store.pyo 47${PYSITELIB}/dulwich/object_store.pyo
38${PYSITELIB}/dulwich/objects.py 48${PYSITELIB}/dulwich/objects.py
39${PYSITELIB}/dulwich/objects.pyc 49${PYSITELIB}/dulwich/objects.pyc
40${PYSITELIB}/dulwich/objects.pyo 50${PYSITELIB}/dulwich/objects.pyo
41${PYSITELIB}/dulwich/pack.py 51${PYSITELIB}/dulwich/pack.py
42${PYSITELIB}/dulwich/pack.pyc 52${PYSITELIB}/dulwich/pack.pyc
43${PYSITELIB}/dulwich/pack.pyo 53${PYSITELIB}/dulwich/pack.pyo
44${PYSITELIB}/dulwich/patch.py 54${PYSITELIB}/dulwich/patch.py
45${PYSITELIB}/dulwich/patch.pyc 55${PYSITELIB}/dulwich/patch.pyc
46${PYSITELIB}/dulwich/patch.pyo 56${PYSITELIB}/dulwich/patch.pyo
47${PYSITELIB}/dulwich/protocol.py 57${PYSITELIB}/dulwich/protocol.py
48${PYSITELIB}/dulwich/protocol.pyc 58${PYSITELIB}/dulwich/protocol.pyc
49${PYSITELIB}/dulwich/protocol.pyo 59${PYSITELIB}/dulwich/protocol.pyo
50${PYSITELIB}/dulwich/repo.py 60${PYSITELIB}/dulwich/repo.py
51${PYSITELIB}/dulwich/repo.pyc 61${PYSITELIB}/dulwich/repo.pyc
52${PYSITELIB}/dulwich/repo.pyo 62${PYSITELIB}/dulwich/repo.pyo
53${PYSITELIB}/dulwich/server.py 63${PYSITELIB}/dulwich/server.py
54${PYSITELIB}/dulwich/server.pyc 64${PYSITELIB}/dulwich/server.pyc
55${PYSITELIB}/dulwich/server.pyo 65${PYSITELIB}/dulwich/server.pyo
56${PYSITELIB}/dulwich/tests/__init__.py 66${PYSITELIB}/dulwich/tests/__init__.py
57${PYSITELIB}/dulwich/tests/__init__.pyc 67${PYSITELIB}/dulwich/tests/__init__.pyc
58${PYSITELIB}/dulwich/tests/__init__.pyo 68${PYSITELIB}/dulwich/tests/__init__.pyo
 69${PYSITELIB}/dulwich/tests/test_blackbox.py
 70${PYSITELIB}/dulwich/tests/test_blackbox.pyc
 71${PYSITELIB}/dulwich/tests/test_blackbox.pyo
59${PYSITELIB}/dulwich/tests/test_client.py 72${PYSITELIB}/dulwich/tests/test_client.py
60${PYSITELIB}/dulwich/tests/test_client.pyc 73${PYSITELIB}/dulwich/tests/test_client.pyc
61${PYSITELIB}/dulwich/tests/test_client.pyo 74${PYSITELIB}/dulwich/tests/test_client.pyo
 75${PYSITELIB}/dulwich/tests/test_config.py
 76${PYSITELIB}/dulwich/tests/test_config.pyc
 77${PYSITELIB}/dulwich/tests/test_config.pyo
 78${PYSITELIB}/dulwich/tests/test_diff_tree.py
 79${PYSITELIB}/dulwich/tests/test_diff_tree.pyc
 80${PYSITELIB}/dulwich/tests/test_diff_tree.pyo
62${PYSITELIB}/dulwich/tests/test_fastexport.py 81${PYSITELIB}/dulwich/tests/test_fastexport.py
63${PYSITELIB}/dulwich/tests/test_fastexport.pyc 82${PYSITELIB}/dulwich/tests/test_fastexport.pyc
64${PYSITELIB}/dulwich/tests/test_fastexport.pyo 83${PYSITELIB}/dulwich/tests/test_fastexport.pyo
65${PYSITELIB}/dulwich/tests/test_file.py 84${PYSITELIB}/dulwich/tests/test_file.py
66${PYSITELIB}/dulwich/tests/test_file.pyc 85${PYSITELIB}/dulwich/tests/test_file.pyc
67${PYSITELIB}/dulwich/tests/test_file.pyo 86${PYSITELIB}/dulwich/tests/test_file.pyo
68${PYSITELIB}/dulwich/tests/test_index.py 87${PYSITELIB}/dulwich/tests/test_index.py
69${PYSITELIB}/dulwich/tests/test_index.pyc 88${PYSITELIB}/dulwich/tests/test_index.pyc
70${PYSITELIB}/dulwich/tests/test_index.pyo 89${PYSITELIB}/dulwich/tests/test_index.pyo
71${PYSITELIB}/dulwich/tests/test_lru_cache.py 90${PYSITELIB}/dulwich/tests/test_lru_cache.py
72${PYSITELIB}/dulwich/tests/test_lru_cache.pyc 91${PYSITELIB}/dulwich/tests/test_lru_cache.pyc
73${PYSITELIB}/dulwich/tests/test_lru_cache.pyo 92${PYSITELIB}/dulwich/tests/test_lru_cache.pyo
74${PYSITELIB}/dulwich/tests/test_object_store.py 93${PYSITELIB}/dulwich/tests/test_object_store.py
@@ -82,22 +101,31 @@ ${PYSITELIB}/dulwich/tests/test_pack.pyc @@ -82,22 +101,31 @@ ${PYSITELIB}/dulwich/tests/test_pack.pyc
82${PYSITELIB}/dulwich/tests/test_pack.pyo 101${PYSITELIB}/dulwich/tests/test_pack.pyo
83${PYSITELIB}/dulwich/tests/test_patch.py 102${PYSITELIB}/dulwich/tests/test_patch.py
84${PYSITELIB}/dulwich/tests/test_patch.pyc 103${PYSITELIB}/dulwich/tests/test_patch.pyc
85${PYSITELIB}/dulwich/tests/test_patch.pyo 104${PYSITELIB}/dulwich/tests/test_patch.pyo
86${PYSITELIB}/dulwich/tests/test_protocol.py 105${PYSITELIB}/dulwich/tests/test_protocol.py
87${PYSITELIB}/dulwich/tests/test_protocol.pyc 106${PYSITELIB}/dulwich/tests/test_protocol.pyc
88${PYSITELIB}/dulwich/tests/test_protocol.pyo 107${PYSITELIB}/dulwich/tests/test_protocol.pyo
89${PYSITELIB}/dulwich/tests/test_repository.py 108${PYSITELIB}/dulwich/tests/test_repository.py
90${PYSITELIB}/dulwich/tests/test_repository.pyc 109${PYSITELIB}/dulwich/tests/test_repository.pyc
91${PYSITELIB}/dulwich/tests/test_repository.pyo 110${PYSITELIB}/dulwich/tests/test_repository.pyo
92${PYSITELIB}/dulwich/tests/test_server.py 111${PYSITELIB}/dulwich/tests/test_server.py
93${PYSITELIB}/dulwich/tests/test_server.pyc 112${PYSITELIB}/dulwich/tests/test_server.pyc
94${PYSITELIB}/dulwich/tests/test_server.pyo 113${PYSITELIB}/dulwich/tests/test_server.pyo
 114${PYSITELIB}/dulwich/tests/test_utils.py
 115${PYSITELIB}/dulwich/tests/test_utils.pyc
 116${PYSITELIB}/dulwich/tests/test_utils.pyo
 117${PYSITELIB}/dulwich/tests/test_walk.py
 118${PYSITELIB}/dulwich/tests/test_walk.pyc
 119${PYSITELIB}/dulwich/tests/test_walk.pyo
95${PYSITELIB}/dulwich/tests/test_web.py 120${PYSITELIB}/dulwich/tests/test_web.py
96${PYSITELIB}/dulwich/tests/test_web.pyc 121${PYSITELIB}/dulwich/tests/test_web.pyc
97${PYSITELIB}/dulwich/tests/test_web.pyo 122${PYSITELIB}/dulwich/tests/test_web.pyo
98${PYSITELIB}/dulwich/tests/utils.py 123${PYSITELIB}/dulwich/tests/utils.py
99${PYSITELIB}/dulwich/tests/utils.pyc 124${PYSITELIB}/dulwich/tests/utils.pyc
100${PYSITELIB}/dulwich/tests/utils.pyo 125${PYSITELIB}/dulwich/tests/utils.pyo
 126${PYSITELIB}/dulwich/walk.py
 127${PYSITELIB}/dulwich/walk.pyc
 128${PYSITELIB}/dulwich/walk.pyo
101${PYSITELIB}/dulwich/web.py 129${PYSITELIB}/dulwich/web.py
102${PYSITELIB}/dulwich/web.pyc 130${PYSITELIB}/dulwich/web.pyc
103${PYSITELIB}/dulwich/web.pyo 131${PYSITELIB}/dulwich/web.pyo

cvs diff -r1.3 -r1.4 pkgsrc/devel/py-dulwich/distinfo (expand / switch to unified diff)

--- pkgsrc/devel/py-dulwich/distinfo 2010/06/14 10:15:15 1.3
+++ pkgsrc/devel/py-dulwich/distinfo 2012/02/07 20:06:44 1.4
@@ -1,5 +1,5 @@ @@ -1,5 +1,5 @@
1$NetBSD: distinfo,v 1.3 2010/06/14 10:15:15 joerg Exp $ 1$NetBSD: distinfo,v 1.4 2012/02/07 20:06:44 ryoon Exp $
2 2
3SHA1 (dulwich-0.6.0.tar.gz) = 4ef7d920582372f4af690f5fcb1177f343caaf92 3SHA1 (dulwich-0.8.3.tar.gz) = d22041d2b7be93d11042087749d4203062b6d12e
4RMD160 (dulwich-0.6.0.tar.gz) = ee8aadfe4661db79c89d4110f349b33f5da6108d 4RMD160 (dulwich-0.8.3.tar.gz) = 915ad05a7653d88439c287b1a49a2e44122fdcf8
5Size (dulwich-0.6.0.tar.gz) = 127143 bytes 5Size (dulwich-0.8.3.tar.gz) = 200480 bytes