Gentoo Archives: gentoo-commits

From: Patrick McLean <chutzpah@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/dulwich/
Date: Wed, 29 Jan 2020 19:53:25
Message-Id: 1580327588.d3a0d892d73cd69def5df1463cb649903aa805dc.chutzpah@gentoo
1 commit: d3a0d892d73cd69def5df1463cb649903aa805dc
2 Author: Patrick McLean <patrick.mclean <AT> sony <DOT> com>
3 AuthorDate: Tue Jan 28 19:54:56 2020 +0000
4 Commit: Patrick McLean <chutzpah <AT> gentoo <DOT> org>
5 CommitDate: Wed Jan 29 19:53:08 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d3a0d892
7
8 dev-python/dulwich-0.19.15: Version bump, add py38
9
10 Copyright: Sony Interactive Entertainment Inc.
11 Package-Manager: Portage-2.3.86, Repoman-2.3.20
12 Signed-off-by: Patrick McLean <chutzpah <AT> gentoo.org>
13
14 dev-python/dulwich/Manifest | 1 +
15 dev-python/dulwich/dulwich-0.19.15.ebuild | 59 +++++++++++++++++++++++++++++++
16 2 files changed, 60 insertions(+)
17
18 diff --git a/dev-python/dulwich/Manifest b/dev-python/dulwich/Manifest
19 index ca27387acaf..68b575e1c41 100644
20 --- a/dev-python/dulwich/Manifest
21 +++ b/dev-python/dulwich/Manifest
22 @@ -1,4 +1,5 @@
23 DIST dulwich-0.18.5.tar.gz 330097 BLAKE2B c29f3016ab63082051c8c4fc42301c12ca752008a317afc41defceee2db47e50efb69b9a21b3d50c241b3b51c32222c1e9cf35eedaf2811f66cec2330ce7865a SHA512 4ba0f70ebddf4c7f4e71721812e228f820226d4ea42bda4d5f06a0720a029d4dddb800cfc05b2610525922c5fcef1020edd1485105706d9ef3fcf810e6381035
24 DIST dulwich-0.18.6.tar.gz 331325 BLAKE2B 781227bf91d8df8f941dd2eddb1682fb8c358d37f35671b08334ef197355e33dbbd09d18b43a179f9200cd6abca563a2fc833da68bd860859a52d951fe679ac0 SHA512 2d2120e23dd4bc2c9dcfe601f21ac757ee3fe2a343923c50b32c067f4d329ac89cdf0894bff450bf52c69e99759bb8692f0f14ed73d01be6bc3b0402d58d1148
25 +DIST dulwich-0.19.15.tar.gz 369491 BLAKE2B ffaabbd68ee228e771b8a56c9a5b70498e49a4547f3f0ff87225ca4ee0a222fca5cd75a36293fb0d111615f4fe9550acd2825732a178f67d9f6b538abf9fc37f SHA512 ae56cf4748ea5f9d275f2d1456bf9fce77859ad2eeba6b7d8f34283e212404ba385f377f4fb86b88dc40982649ec8cfb12ea407dd25ada7cb2b0e862568ac7da
26 DIST dulwich-0.19.4.tar.gz 349813 BLAKE2B a14dc2dccdb68df639a6a4bbf3aa8314fe831f7086573d7cd194f7426eb0021b2faa1663edf318b37031be90121e64a1186c381bfb2cd32a3824abac2a3aa52b SHA512 42aa7d35a491f2d98a8afae6e0afc68089f9d37dbd706961359f1d624a47c627dceb73bb614b608d29dd28faf87406f2e81b1ddcec607aeb0fabc9744b733232
27 DIST dulwich-0.19.6.tar.gz 349939 BLAKE2B a88836c8a6fa3f732643f88cb94ec37c138146336709651f7fbc604fe80ff3dcf88b24ffca5e5d14c3c947b847a9678fa8b431ef6be0b78e6046bcd3f7ed29bc SHA512 7e13b465672c5eee4f6d14f28e9cba63ceddf1ad119822fabd17b01ad6b89c6dd8c0bbf562bdf50e0ada5ce17bcad531549054417d744e5cf64a610e8a1740bc
28
29 diff --git a/dev-python/dulwich/dulwich-0.19.15.ebuild b/dev-python/dulwich/dulwich-0.19.15.ebuild
30 new file mode 100644
31 index 00000000000..98efcfd48ea
32 --- /dev/null
33 +++ b/dev-python/dulwich/dulwich-0.19.15.ebuild
34 @@ -0,0 +1,59 @@
35 +# Copyright 1999-2020 Gentoo Authors
36 +# Distributed under the terms of the GNU General Public License v2
37 +
38 +EAPI=7
39 +
40 +PYTHON_COMPAT=( python{2_7,3_{6,7,8}} )
41 +
42 +inherit distutils-r1
43 +
44 +DESCRIPTION="Pure-Python implementation of the Git file formats and protocols"
45 +HOMEPAGE="https://github.com/jelmer/dulwich/ https://pypi.org/project/dulwich/"
46 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
47 +
48 +LICENSE="GPL-2+"
49 +SLOT="0"
50 +KEYWORDS="~amd64 ~arm64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
51 +IUSE="doc examples test"
52 +RESTRICT="!test? ( test )"
53 +
54 +RDEPEND="
55 + dev-python/certifi[${PYTHON_USEDEP}]
56 + >=dev-python/urllib3-1.23[${PYTHON_USEDEP}]
57 +"
58 +DEPEND="
59 + dev-python/setuptools[${PYTHON_USEDEP}]
60 + doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
61 + test? (
62 + ${RDEPEND}
63 + dev-python/gevent[${PYTHON_USEDEP}]
64 + dev-python/geventhttpclient[${PYTHON_USEDEP}]
65 + dev-python/mock[${PYTHON_USEDEP}]
66 + dev-python/python-fastimport[${PYTHON_USEDEP}]
67 + )"
68 +
69 +DISTUTILS_IN_SOURCE_BUILD=1
70 +
71 +# One test sometimes fails
72 +# https://github.com/jelmer/dulwich/issues/541
73 +PATCHES=( "${FILESDIR}/${PN}-0.18.3-skip-failing-test.patch" )
74 +
75 +python_compile_all() {
76 + use doc && emake -C docs html
77 +}
78 +
79 +python_test() {
80 + # Do not use make check which rebuilds the extension and uses -Werror,
81 + # causing unexpected failures.
82 + "${EPYTHON}" -m unittest -v dulwich.tests.test_suite \
83 + || die "tests failed with ${EPYTHON}"
84 +}
85 +
86 +python_install_all() {
87 + use doc && local HTML_DOCS=( docs/build/html/. )
88 + if use examples; then
89 + docompress -x "/usr/share/doc/${PF}/examples"
90 + dodoc -r examples
91 + fi
92 + distutils-r1_python_install_all
93 +}