Gentoo Archives: gentoo-commits

From: Arthur Zamarin <arthurzam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/dulwich/
Date: Wed, 05 Jan 2022 08:46:08
Message-Id: 1641372357.975ad5c29c391a7f59b34ac7a7958a528fbd9275.arthurzam@gentoo
1 commit: 975ad5c29c391a7f59b34ac7a7958a528fbd9275
2 Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jan 5 07:46:51 2022 +0000
4 Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
5 CommitDate: Wed Jan 5 08:45:57 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=975ad5c2
7
8 dev-python/dulwich: add 0.20.27
9
10 Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
11
12 dev-python/dulwich/Manifest | 1 +
13 dev-python/dulwich/dulwich-0.20.27.ebuild | 55 +++++++++++++++++++++++++++++++
14 2 files changed, 56 insertions(+)
15
16 diff --git a/dev-python/dulwich/Manifest b/dev-python/dulwich/Manifest
17 index dc48a6c23dfa..558675fffec1 100644
18 --- a/dev-python/dulwich/Manifest
19 +++ b/dev-python/dulwich/Manifest
20 @@ -1 +1,2 @@
21 DIST dulwich-0.20.23.tar.gz 414150 BLAKE2B 0f7bfb237acc6bad874465a5bfed21adc29a2ef23875fbcbb92e7e3ff0ed6a4191a30b3975f90ef20b8320575e42abf31f8ec2199d558382c917d0510c2a8d96 SHA512 8bad3528dc87e70b39b59b2f7218579327db4dbd15937b63db76c9b8e7ba6d22e963eaec45b8d675c92f250516a541c395fdac391db68d0932dc5d8cd7ed9fb9
22 +DIST dulwich-0.20.27.tar.gz 416618 BLAKE2B 73ed04d9fc871a82126e212bdac0eaf235e44aa76f3e54c98bd50f71379fdd3082b2a3af12a22f3276a45909ef17e38a116deb6adfd650cdbfa19afa41803dd1 SHA512 dc82250c5b3cbccc1ccbb55ca2d871f4d17ddb3616cd92146468fc5f0d805d3fe349b2cedfb4e814e027c07f9352e87c72ca7e97ed6218aa621fa9311dc075c5
23
24 diff --git a/dev-python/dulwich/dulwich-0.20.27.ebuild b/dev-python/dulwich/dulwich-0.20.27.ebuild
25 new file mode 100644
26 index 000000000000..e282dc27d571
27 --- /dev/null
28 +++ b/dev-python/dulwich/dulwich-0.20.27.ebuild
29 @@ -0,0 +1,55 @@
30 +# Copyright 1999-2022 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +PYTHON_COMPAT=( python3_{8..10} )
36 +inherit distutils-r1
37 +
38 +DESCRIPTION="Pure-Python implementation of the Git file formats and protocols"
39 +HOMEPAGE="
40 + https://github.com/dulwich/dulwich/
41 + https://pypi.org/project/dulwich/"
42 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
43 +
44 +LICENSE="GPL-2+ Apache-2.0"
45 +SLOT="0"
46 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
47 +IUSE="doc examples test"
48 +RESTRICT="!test? ( test )"
49 +
50 +RDEPEND="
51 + dev-python/certifi[${PYTHON_USEDEP}]
52 + dev-python/urllib3[${PYTHON_USEDEP}]
53 +"
54 +BDEPEND="
55 + test? (
56 + ${RDEPEND}
57 + !hppa? ( !ia64? (
58 + dev-python/gevent[${PYTHON_USEDEP}]
59 + dev-python/geventhttpclient[${PYTHON_USEDEP}]
60 + ) )
61 + app-crypt/gpgme[python,${PYTHON_USEDEP}]
62 + dev-python/mock[${PYTHON_USEDEP}]
63 + dev-python/fastimport[${PYTHON_USEDEP}]
64 + )"
65 +
66 +distutils_enable_sphinx docs
67 +
68 +python_test() {
69 + # remove interference from the tests that do stuff like user.name
70 + unset GIT_AUTHOR_NAME GIT_AUTHOR_EMAIL GIT_AUTHOR_DATE \
71 + GIT_COMMITTER_NAME GIT_COMMITTER_EMAIL GIT_COMMITTER_DATE EMAIL
72 + # Do not use make check which rebuilds the extension and uses -Werror,
73 + # causing unexpected failures.
74 + "${EPYTHON}" -m unittest -v dulwich.tests.test_suite \
75 + || die "tests failed with ${EPYTHON}"
76 +}
77 +
78 +python_install_all() {
79 + if use examples; then
80 + docompress -x "/usr/share/doc/${PF}/examples"
81 + dodoc -r examples
82 + fi
83 + distutils-r1_python_install_all
84 +}