Gentoo Archives: gentoo-commits

From: Matt Thode <prometheanfire@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/dulwich/
Date: Fri, 16 Feb 2018 06:08:21
Message-Id: 1518754123.45c64be1e535f26ea0be9d2b99667c392b65e096.prometheanfire@gentoo
1 commit: 45c64be1e535f26ea0be9d2b99667c392b65e096
2 Author: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
3 AuthorDate: Fri Feb 16 04:08:43 2018 +0000
4 Commit: Matt Thode <prometheanfire <AT> gentoo <DOT> org>
5 CommitDate: Fri Feb 16 04:08:43 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=45c64be1
7
8 dev-python/dulwich: 0.18.6
9
10 Package-Manager: Portage-2.3.19, Repoman-2.3.6
11
12 dev-python/dulwich/Manifest | 1 +
13 dev-python/dulwich/dulwich-0.18.6.ebuild | 50 ++++++++++++++++++++++++++++++++
14 2 files changed, 51 insertions(+)
15
16 diff --git a/dev-python/dulwich/Manifest b/dev-python/dulwich/Manifest
17 index 836bb52d788..a4d4c458fd5 100644
18 --- a/dev-python/dulwich/Manifest
19 +++ b/dev-python/dulwich/Manifest
20 @@ -1 +1,2 @@
21 DIST dulwich-0.18.5.tar.gz 330097 BLAKE2B c29f3016ab63082051c8c4fc42301c12ca752008a317afc41defceee2db47e50efb69b9a21b3d50c241b3b51c32222c1e9cf35eedaf2811f66cec2330ce7865a SHA512 4ba0f70ebddf4c7f4e71721812e228f820226d4ea42bda4d5f06a0720a029d4dddb800cfc05b2610525922c5fcef1020edd1485105706d9ef3fcf810e6381035
22 +DIST dulwich-0.18.6.tar.gz 331325 BLAKE2B 781227bf91d8df8f941dd2eddb1682fb8c358d37f35671b08334ef197355e33dbbd09d18b43a179f9200cd6abca563a2fc833da68bd860859a52d951fe679ac0 SHA512 2d2120e23dd4bc2c9dcfe601f21ac757ee3fe2a343923c50b32c067f4d329ac89cdf0894bff450bf52c69e99759bb8692f0f14ed73d01be6bc3b0402d58d1148
23
24 diff --git a/dev-python/dulwich/dulwich-0.18.6.ebuild b/dev-python/dulwich/dulwich-0.18.6.ebuild
25 new file mode 100644
26 index 00000000000..d15c71b6f2c
27 --- /dev/null
28 +++ b/dev-python/dulwich/dulwich-0.18.6.ebuild
29 @@ -0,0 +1,50 @@
30 +# Copyright 1999-2018 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=6
34 +
35 +PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
36 +
37 +inherit distutils-r1
38 +
39 +DESCRIPTION="Pure-Python implementation of the Git file formats and protocols"
40 +HOMEPAGE="https://github.com/jelmer/dulwich/ https://pypi.python.org/pypi/dulwich"
41 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
42 +
43 +LICENSE="GPL-2+"
44 +SLOT="0"
45 +KEYWORDS="~amd64 ~arm64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
46 +IUSE="doc examples test"
47 +
48 +DEPEND="
49 + dev-python/setuptools[${PYTHON_USEDEP}]
50 + test? (
51 + dev-python/gevent[${PYTHON_USEDEP}]
52 + dev-python/geventhttpclient[${PYTHON_USEDEP}]
53 + dev-python/mock[${PYTHON_USEDEP}]
54 + dev-python/python-fastimport[${PYTHON_USEDEP}]
55 + )"
56 +
57 +DISTUTILS_IN_SOURCE_BUILD=1
58 +
59 +# One test sometimes fails
60 +# https://github.com/jelmer/dulwich/issues/541
61 +PATCHES=( "${FILESDIR}/${PN}-0.18.3-skip-failing-test.patch" )
62 +
63 +python_compile_all() {
64 + use doc && emake -C docs html
65 +}
66 +
67 +python_test() {
68 + emake check
69 +}
70 +
71 +python_install_all() {
72 + use doc && local HTML_DOCS=( docs/build/html/. )
73 + if use examples; then
74 + insinto "/usr/share/doc/${PF}"
75 + docompress -x "/usr/share/doc/${PF}/examples"
76 + doins -r examples
77 + fi
78 + distutils-r1_python_install_all
79 +}