From c61796c4ed2cdeba734f80a3dc9a022e6687e1c9d366f48a5293a5de3ceefaca Mon Sep 17 00:00:00 2001 From: Dominique Leuenberger Date: Wed, 25 Jan 2017 22:26:33 +0000 Subject: [PATCH] Accepting request 451239 from devel:languages:python MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - update to 0.16.3: IMPROVEMENTS * Fixed failing test-cases on windows. (Koen Martens) * Add support for worktrees. See `git-worktree(1)` and `gitrepository-layout(5)`. (Laurent Rineau) * Add support for `commondir` file in Git control directories. (Laurent Rineau) * Add support for passwords in HTTP URLs. (Jon Bain, Mika Mäenpää) * Add `release_robot` script to contrib, allowing easy finding of current version based on Git tags. (Mark Mikofski) * Add ``Blob.splitlines`` method. (Jelmer Vernooij) * Add `dulwich.config.parse_submodules` function. * Add `RefsContainer.follow` method. (#438) * Support `ssh://` URLs in get_transport_and_path_from_url(). (Jelmer Vernooij, #402) * Support missing empty line after headers in Git commits and tags. (Nicolas Dandrimont, #413) * Fix `dulwich.porcelain.status` when used in empty trees. (Jelmer Vernooij, #415) * Return copies of objects in MemoryObjectStore rather than references, making the behaviour more consistent with that of DiskObjectStore. (Félix Mattrat, Jelmer Vernooij) * Fix ``dulwich.web`` on Python3. (#295, Jonas Haag) * Many bugfixes, see NEWS file for details CHANGES * Changed license from "GNU General Public License, version 2.0 or later" OBS-URL: https://build.opensuse.org/request/show/451239 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-dulwich?expand=0&rev=19 --- dulwich-0.12.0.tar.gz | 3 --- dulwich-0.16.3.tar.gz | 3 +++ python-dulwich.changes | 36 ++++++++++++++++++++++++++++++++++++ python-dulwich.spec | 14 +++++--------- 4 files changed, 44 insertions(+), 12 deletions(-) delete mode 100644 dulwich-0.12.0.tar.gz create mode 100644 dulwich-0.16.3.tar.gz diff --git a/dulwich-0.12.0.tar.gz b/dulwich-0.12.0.tar.gz deleted file mode 100644 index ac4f2ab..0000000 --- a/dulwich-0.12.0.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:8f9070f37eec6175aab60d7064246b5b6453b2fab342589101f1c8feda0a0cc6 -size 293900 diff --git a/dulwich-0.16.3.tar.gz b/dulwich-0.16.3.tar.gz new file mode 100644 index 0000000..376550f --- /dev/null +++ b/dulwich-0.16.3.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a2a03e131e5dc5efdf61119b6c16558b202528cca220b6b1e7cb0e7fe3e843a +size 304337 diff --git a/python-dulwich.changes b/python-dulwich.changes index e13d9e3..b9c87f5 100644 --- a/python-dulwich.changes +++ b/python-dulwich.changes @@ -1,3 +1,39 @@ +------------------------------------------------------------------- +Wed Jan 18 17:49:04 UTC 2017 - dmueller@suse.com + +- update to 0.16.3: + IMPROVEMENTS + * Fixed failing test-cases on windows. + (Koen Martens) + * Add support for worktrees. See `git-worktree(1)` and + `gitrepository-layout(5)`. (Laurent Rineau) + * Add support for `commondir` file in Git control + directories. (Laurent Rineau) + * Add support for passwords in HTTP URLs. + (Jon Bain, Mika Mäenpää) + * Add `release_robot` script to contrib, + allowing easy finding of current version based on Git tags. + (Mark Mikofski) + * Add ``Blob.splitlines`` method. + (Jelmer Vernooij) + * Add `dulwich.config.parse_submodules` function. + * Add `RefsContainer.follow` method. (#438) + * Support `ssh://` URLs in get_transport_and_path_from_url(). + (Jelmer Vernooij, #402) + * Support missing empty line after headers in Git commits and tags. + (Nicolas Dandrimont, #413) + * Fix `dulwich.porcelain.status` when used in empty trees. + (Jelmer Vernooij, #415) + * Return copies of objects in MemoryObjectStore rather than + references, making the behaviour more consistent with that of + DiskObjectStore. (Félix Mattrat, Jelmer Vernooij) + * Fix ``dulwich.web`` on Python3. (#295, Jonas Haag) + * Many bugfixes, see NEWS file for details + CHANGES + * Changed license from "GNU General Public License, version 2.0 or later" + to "Apache License, version 2.0 or later or GNU General Public License, + version 2.0 or later". (#153) + ------------------------------------------------------------------- Mon Aug 15 14:51:56 UTC 2016 - toddrme2178@gmail.com diff --git a/python-dulwich.spec b/python-dulwich.spec index df35035..29ffad4 100644 --- a/python-dulwich.spec +++ b/python-dulwich.spec @@ -1,7 +1,7 @@ # # spec file for package python-dulwich # -# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -17,22 +17,18 @@ Name: python-dulwich -Version: 0.12.0 +Version: 0.16.3 Release: 0 Url: https://www.dulwich.io Summary: Pure-Python Git Library -License: GPL-2.0+ +License: GPL-2.0+ or Apache-2.0 Group: Development/Languages/Python -Source: https://pypi.python.org/packages/source/d/dulwich/dulwich-%{version}.tar.gz -BuildRoot: %{_tmppath}/%{name}-%{version}-build +Source: https://pypi.io/packages/source/d/dulwich/dulwich-%{version}.tar.gz BuildRequires: fdupes BuildRequires: python-Sphinx BuildRequires: python-devel Requires(post): update-alternatives Requires(preun): update-alternatives -%if 0%{?suse_version} && 0%{?suse_version} <= 1110 -%{!?python_sitearch: %global python_sitearch %(python -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} -%endif %description Simple Pure-Python implementation of the Git file formats and protocols. Dulwich @@ -70,7 +66,7 @@ fi %files %defattr(-,root,root,-) -%doc COPYING NEWS README.md +%doc COPYING NEWS README.md %doc build/sphinx/html %{_bindir}/dulwich %{_bindir}/dul-receive-pack