[Python-modules-commits] [dulwich] branch master updated (807b799 -> 4ac8039)
Jelmer Vernooij
jelmer at moszumanska.debian.org
Sun Oct 9 13:23:29 UTC 2016
This is an automated email from the git hooks/post-receive script.
jelmer pushed a change to branch master
in repository dulwich.
from 807b799 releasing package dulwich version 0.14.1-1
new 2dcc75c Start on 0.15.0.
new 5e03d45 Update to reflect drop of Python2.6 support.
new f49b7cb Update setup.py to reflect that Python 2.6 is no longer supported, but 3.4 is.
new baa889e Made HttpGitClient.base_url private
new f52a2ee Add get_url() method to clients which will give full url to given path.
new 75e5db5 Tests for get_url()-methods.
new 0c65658 porcelain.push uses client.get_url as remote_location
new 8fc0812 Use standard URL generation functions.
new e62d2e2 Unicodify my surname.
new 0b2769b Use super to call parent __init__.
new f2c26f0 Revert "Run Git in tests without user's ".gitconfig"."
new 0913a1b Revert "Don't look up "HOME" environment variable unconditionally to avoid KeyError"
new 6d93bda Fix formatting of markdown in README.
new 9eb33ff Allow missing trailing LF when reading service name from HTTP servers. Fixes #442.
new 3b134a6 Quote special characters in usernames.
new e896247 Correct formatting in Porcelain doc
new 06ada55 Syntevo has agreed to relicensing their contribution to Dulwich under Apachev2+/GPLv2+.
new 7098611 As agreed by all contributors, change the license from:
new 6f937ef Remove relicensing file, update CONTRIBUTING for license changes.
new 5afa48a Add dulwich.porcelain.ls_tree.
new 34fe903 Consistently overwrite HOME.
new 0ee2ec1 Fix python3 compatibility.
new 4fc96f1 On Windows, os.rename will thrown WindowsError if the destination already exists. Fixes #448
new 5b1ae8c Add special-casing for Windows, as WindowsError isn't available on other platforms.
new aaaa689 Fix dulwich.porcelain.pull() with Python3. (#451)
new 958e827 Pull in tags during dulwich.porcelain.clone. Fixes #408
new 81488e0 Fix python3 compatibility.
new a725196 Fix Python3 compatibility.
new 3f693e5 s/iteritems/items/g
new 1b8231a Add script for updating preamble.
new 8c35904 Update header to reflect that license is now Apachev2 or GNU GPLv2+.
new 60ccab1 appveyor: upgrade win32 to build-220, teat also on py3.5
new 34a47e2 Fix missing comma.
new 62c8cbb Release 0.15.0.
new e886e13 New upstream version 0.15.0
new e72312a Merge tag 'upstream/0.15.0' into unstable
new c94a1c3 Add new upstream release.
new e9b875c Update debian/copyright to reflect that dulwich is now licensed under dual GPLv2+/Apache-2.
new a05d6eb Extend lintian overrides for testdata.
new 4ac8039 releasing package dulwich version 0.15.0-1
The 40 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:
CONTRIBUTING | 5 +-
COPYING | 209 ++++++++++++++++++++
NEWS | 324 +++++++++++++++++--------------
PKG-INFO | 10 +-
README.md | 7 +-
appveyor.yml | 14 +-
bin/dul-receive-pack | 26 +--
bin/dul-upload-pack | 26 +--
bin/dulwich | 43 ++--
debian/changelog | 9 +
debian/copyright | 20 +-
debian/pypy-dulwich.lintian-overrides | 2 +
debian/python-dulwich.lintian-overrides | 1 +
debian/python3-dulwich.lintian-overrides | 1 +
docs/tutorial/porcelain.txt | 6 +-
dulwich.egg-info/PKG-INFO | 10 +-
dulwich.egg-info/SOURCES.txt | 1 -
dulwich/__init__.py | 29 +--
dulwich/_diff_tree.c | 25 +--
dulwich/_objects.c | 25 +--
dulwich/_pack.c | 29 +--
dulwich/archive.py | 26 +--
dulwich/client.py | 83 ++++++--
dulwich/config.py | 26 +--
dulwich/contrib/__init__.py | 27 +--
dulwich/contrib/paramiko_vendor.py | 26 +--
dulwich/contrib/swift.py | 27 +--
dulwich/contrib/test_swift.py | 29 +--
dulwich/contrib/test_swift_smoke.py | 27 +--
dulwich/diff_tree.py | 26 +--
dulwich/errors.py | 26 +--
dulwich/fastexport.py | 27 +--
dulwich/file.py | 26 +--
dulwich/greenthreads.py | 27 +--
dulwich/hooks.py | 26 +--
dulwich/index.py | 26 +--
dulwich/log_utils.py | 26 +--
dulwich/lru_cache.py | 25 +--
dulwich/object_store.py | 35 ++--
dulwich/objects.py | 49 +++--
dulwich/objectspec.py | 26 +--
dulwich/pack.py | 26 +--
dulwich/patch.py | 26 +--
dulwich/porcelain.py | 85 ++++++--
dulwich/protocol.py | 26 +--
dulwich/reflog.py | 26 +--
dulwich/refs.py | 27 +--
dulwich/repo.py | 27 +--
dulwich/server.py | 26 +--
dulwich/tests/__init__.py | 67 +++----
dulwich/tests/compat/__init__.py | 27 +--
dulwich/tests/compat/server_utils.py | 27 +--
dulwich/tests/compat/test_client.py | 33 ++--
dulwich/tests/compat/test_pack.py | 27 +--
dulwich/tests/compat/test_repository.py | 27 +--
dulwich/tests/compat/test_server.py | 27 +--
dulwich/tests/compat/test_utils.py | 27 +--
dulwich/tests/compat/test_web.py | 27 +--
dulwich/tests/compat/utils.py | 30 +--
dulwich/tests/test_archive.py | 26 +--
dulwich/tests/test_blackbox.py | 26 +--
dulwich/tests/test_client.py | 78 ++++++--
dulwich/tests/test_config.py | 27 +--
dulwich/tests/test_diff_tree.py | 26 +--
dulwich/tests/test_fastexport.py | 27 +--
dulwich/tests/test_file.py | 26 +--
dulwich/tests/test_grafts.py | 26 +--
dulwich/tests/test_greenthreads.py | 27 +--
dulwich/tests/test_hooks.py | 26 +--
dulwich/tests/test_index.py | 26 +--
dulwich/tests/test_lru_cache.py | 25 +--
dulwich/tests/test_missing_obj_finder.py | 26 +--
dulwich/tests/test_object_store.py | 26 +--
dulwich/tests/test_objects.py | 40 ++--
dulwich/tests/test_objectspec.py | 27 +--
dulwich/tests/test_pack.py | 26 +--
dulwich/tests/test_patch.py | 26 +--
dulwich/tests/test_porcelain.py | 92 ++++++---
dulwich/tests/test_protocol.py | 26 +--
dulwich/tests/test_reflog.py | 27 +--
dulwich/tests/test_refs.py | 27 +--
dulwich/tests/test_repository.py | 27 +--
dulwich/tests/test_server.py | 26 +--
dulwich/tests/test_utils.py | 27 +--
dulwich/tests/test_walk.py | 26 +--
dulwich/tests/test_web.py | 26 +--
dulwich/tests/utils.py | 27 +--
dulwich/walk.py | 26 +--
dulwich/web.py | 26 +--
relicensing-apachev2.txt | 23 ---
setup.py | 13 +-
91 files changed, 1770 insertions(+), 1212 deletions(-)
create mode 100644 debian/pypy-dulwich.lintian-overrides
delete mode 100644 relicensing-apachev2.txt
--
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