Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pychm/
Date: Sat, 02 Nov 2019 11:39:26
Message-Id: 1572694741.6748844e5a0cdfc56ddeb8b0de86db748dbafff0.mgorny@gentoo
1 commit: 6748844e5a0cdfc56ddeb8b0de86db748dbafff0
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Nov 2 11:39:01 2019 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Nov 2 11:39:01 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6748844e
7
8 dev-python/pychm: Bump to 0.8.5
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/pychm/Manifest | 1 +
13 dev-python/pychm/pychm-0.8.5.ebuild | 26 ++++++++++++++++++++++++++
14 2 files changed, 27 insertions(+)
15
16 diff --git a/dev-python/pychm/Manifest b/dev-python/pychm/Manifest
17 index 0aa9cf92cd2..99c807879f1 100644
18 --- a/dev-python/pychm/Manifest
19 +++ b/dev-python/pychm/Manifest
20 @@ -1 +1,2 @@
21 DIST pychm-0.8.4.tar.gz 28803 BLAKE2B c6b66c83b1bd5b20280cb60636ccf2780f665fd589b107542c887fc791642f780701b84c8863883e02496c626b92552e3bbfdacd025723fccdb7947de62ada61 SHA512 0c0c107e59ea9f5fef97a0c2869349b5e90fc9eb7a37c35e8a929eaf764c7abe5a06a389340a912b9ba2f71172f3c94a78da016707bb201bbd07bdc3feddfe0d
22 +DIST pychm-0.8.5.gh.tar.gz 23539 BLAKE2B 4671ccca56153ee493f239de46a01c9e878448f46ecb7e1a39156457562d7f7ac951007e04bd534ea26455da68607eab9b2e2266eed71a7b14c90f103888887e SHA512 3f6b175710880fd4e45c4407af06bec580839517727ee0f5f706747c78be727171f7f8ad2d8fa9add0065825556c3a5d48cc1a6016705f34569350c495f5710d
23
24 diff --git a/dev-python/pychm/pychm-0.8.5.ebuild b/dev-python/pychm/pychm-0.8.5.ebuild
25 new file mode 100644
26 index 00000000000..301661fc7b7
27 --- /dev/null
28 +++ b/dev-python/pychm/pychm-0.8.5.ebuild
29 @@ -0,0 +1,26 @@
30 +# Copyright 1999-2019 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=7
34 +
35 +PYTHON_COMPAT=( python{2_7,3_{5,6,7}} )
36 +
37 +inherit distutils-r1
38 +
39 +DESCRIPTION="Python bindings for the chmlib library"
40 +HOMEPAGE="https://github.com/dottedmag/pychm"
41 +SRC_URI="https://github.com/dottedmag/pychm/archive/v${PV}.tar.gz -> ${P}.gh.tar.gz"
42 +
43 +LICENSE="GPL-2+"
44 +SLOT="0"
45 +KEYWORDS="~amd64 ~ppc ~x86"
46 +IUSE="test"
47 +RESTRICT="!test? ( test )"
48 +
49 +RDEPEND="dev-libs/chmlib"
50 +DEPEND="${RDEPEND}
51 + test? ( dev-python/pytest[${PYTHON_USEDEP}] )"
52 +
53 +python_test() {
54 + pytest -vv || die
55 +}