[Python-modules-commits] [dulwich] branch master updated (5a5ef5b -> d0a9993)

Jelmer Vernooij jelmer at moszumanska.debian.org
Sun Dec 13 15:42:02 UTC 2015


This is an automated email from the git hooks/post-receive script.

jelmer pushed a change to branch master
in repository dulwich.

      from  5a5ef5b   Drop unstable branch, just use 'master' per DPMT policy.
       new  521669b   Start on 0.11.3.
       new  fcb1880   give permission to relicence my contribution
       new  f69d615   Relicensing, see #153
       new  6ae640a   Force language used by C git, in case it's run with a different locale.
       new  32d7415   Remove max.
       new  24848d9   Add test that demonstrates behaviour of 'as_dict' for bare and non-bare repos
       new  a3760ae   Fix inconsistency in handling of trailing slashes.
       new  47ca2d0   gitolite requires single quotes (') around the repository name.
       new  feb5b24   Fix bytes/string literal type errors for Python 3.4.
       new  4a80559   Merge some SSH escaping fixes from tommie-lie.
       new  fbaeaee   Simplify handling of SSH command invocation.
       new  36282bc   Fix tests on Python3.
       new  234e8a1   Add dulwich.archive module.
       new  efb9e9d   Add convenience method for parsing a commit reference.
       new  2be2b74   Clarify behaviour of parse_committishs.
       new  6bd957f   Initial work towards git-upload-archive support.
       new  e9f2fa4   Once again, fix tests on python3.
       new  334be7f   Skip second archive test for now, as it's known broken on some platforms and needs more debugging.
       new  b90cad1   Previously the following would crash under Python 3.
       new  bd43f45   Add note saying this will be the last release supporting Python2.6
       new  8212d51   s/ListCBytesIO/ChunkedBytesIO/g
       new  50f86b0   Mark archive tests as known failing on python2.6.
       new  4a46d68   subprocess's mswindows attribute has gone private in 3.5
       new  31e48d5   Clarify that tox and travis can be used for running tests.
       new  79cbe7f   Add basic porcelain page in tutorial.
       new  362b547   Remove Chris.
       new  b870861   Distinguish code written by and copyright.
       new  0d7d643   Add constant for control dir name.
       new  304dae8   Avoid using regular expressions for gitfile parsing.
       new  68cd0d2   Enhanced parsing of partial/ambiguous refs based on https://git-scm.com/docs/gitrevisions
       new  dc2e0aa   Update NEWS, fix style.
       new  ef233fb   Add format_reflog_line.
       new  4aca02e   Add parse_reflog_line.
       new  9713fdb   Add read_reflog.
       new  11271cd   Fix tests.
       new  e02f902   Add missing DECREF on local variable
       new  109fe00   Make the C accelerator modules compatible with Python 3
       new  4c0ef6e   Treat pathnames as bytes in the Python 3 C modules
       new  b1e3eaf   Avoid deprecation warning due to renamed assertion method in Py3.2+
       new  0b78314   Merge branch 'py3-c-modules' of git://github.com/lelit/dulwich
       new  71f831b   Avoid hasattr.
       new  ad0cf4d   Remove unused import.
       new  421c978   Update NEWS.
       new  5e9d957   Fix thinpack support over http
       new  826d050   Add note about performance, update NEWS.
       new  152faba   Clarify in docstrings that Client.{fetch_pack,fetch} returns all remote refs, not just those fetched.
       new  8523fac   Ship .testr.conf and TODO.
       new  29696a2   Release 0.12.0.
       new  64a442c   Imported Upstream version 0.12.0
       new  e47b11b   Merge tag 'upstream/0.12.0' into unstable
       new  8c4c341   New upstream release.
       new  2844c54   Drop patch 02_cgit_c: applied upstream.
       new  2f0a1ea   Remove changes to .gitignore.
       new  d0a9993   releasing package dulwich version 0.12.0-1

The 54 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .gitignore                                         |  10 --
 .testr.conf                                        |   4 +
 CONTRIBUTING                                       |   2 +
 MANIFEST.in                                        |   2 +
 NEWS                                               |  30 ++++++
 PKG-INFO                                           |   2 +-
 TODO                                               |   2 +
 debian/changelog                                   |   7 ++
 debian/patches/02_cgit_c                           |  12 ---
 ...394b093fd4567f36a947b809aa042fbed9b8-1447179624 |  47 ---------
 debian/patches/series                              |   2 -
 docs/tutorial/index.txt                            |   1 +
 docs/tutorial/introduction.txt                     |  12 ++-
 docs/tutorial/porcelain.txt                        |  34 +++++++
 dulwich.egg-info/PKG-INFO                          |   2 +-
 dulwich.egg-info/SOURCES.txt                       |   8 +-
 dulwich.egg-info/pbr.json                          |   1 -
 dulwich/__init__.py                                |   2 +-
 dulwich/_diff_tree.c                               |  78 +++++++++++---
 dulwich/_objects.c                                 |  79 ++++++++++-----
 dulwich/_pack.c                                    |  63 ++++++++++--
 dulwich/archive.py                                 | 112 +++++++++++++++++++++
 dulwich/client.py                                  |  37 ++++---
 dulwich/contrib/paramiko_vendor.py                 |  49 +--------
 dulwich/objectspec.py                              |  29 +++++-
 dulwich/porcelain.py                               |  27 +++--
 dulwich/reflog.py                                  |  72 +++++++++++++
 dulwich/refs.py                                    |   2 +
 dulwich/repo.py                                    |  31 ++++--
 dulwich/server.py                                  |  32 +++++-
 dulwich/tests/__init__.py                          |   2 +
 dulwich/tests/compat/test_client.py                |   3 +-
 dulwich/tests/test_archive.py                      |  67 ++++++++++++
 dulwich/tests/test_client.py                       |  14 ++-
 dulwich/tests/test_objectspec.py                   |  52 +++++++++-
 dulwich/tests/test_porcelain.py                    |   3 -
 dulwich/tests/test_reflog.py                       |  69 +++++++++++++
 dulwich/tests/test_repository.py                   |  20 +++-
 dulwich/tests/test_server.py                       |   8 +-
 setup.py                                           |   2 +-
 40 files changed, 794 insertions(+), 237 deletions(-)
 delete mode 100644 .gitignore
 create mode 100644 .testr.conf
 create mode 100644 TODO
 delete mode 100644 debian/patches/02_cgit_c
 delete mode 100644 debian/patches/auto-0.11.2-1-7cbc394b093fd4567f36a947b809aa042fbed9b8-1447179624
 create mode 100644 docs/tutorial/porcelain.txt
 delete mode 100644 dulwich.egg-info/pbr.json
 create mode 100644 dulwich/archive.py
 create mode 100644 dulwich/reflog.py
 create mode 100644 dulwich/tests/test_archive.py
 create mode 100644 dulwich/tests/test_reflog.py

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/dulwich.git



More information about the Python-modules-commits mailing list