Gentoo Archives: gentoo-commits

From: Alexey Shvetsov <alexxy@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pysol_cards/
Date: Tue, 30 Jul 2019 20:51:37
Message-Id: 1564519872.17431ead9fec8f897fda66c60233949f3d68345c.alexxy@gentoo
1 commit: 17431ead9fec8f897fda66c60233949f3d68345c
2 Author: Alexey Shvetsov <alexxy <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jul 30 20:50:06 2019 +0000
4 Commit: Alexey Shvetsov <alexxy <AT> gentoo <DOT> org>
5 CommitDate: Tue Jul 30 20:51:12 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=17431ead
7
8 dev-python/pysol_cards: Works with python3.7
9
10 Package-Manager: Portage-2.3.69, Repoman-2.3.16
11 Signed-off-by: Alexey Shvetsov <alexxy <AT> gentoo.org>
12
13 dev-python/pysol_cards/pysol_cards-0.6.2-r1.ebuild | 24 ++++++++++++++++++++++
14 1 file changed, 24 insertions(+)
15
16 diff --git a/dev-python/pysol_cards/pysol_cards-0.6.2-r1.ebuild b/dev-python/pysol_cards/pysol_cards-0.6.2-r1.ebuild
17 new file mode 100644
18 index 00000000000..fcf902452a3
19 --- /dev/null
20 +++ b/dev-python/pysol_cards/pysol_cards-0.6.2-r1.ebuild
21 @@ -0,0 +1,24 @@
22 +# Copyright 1999-2019 Gentoo Authors
23 +# Distributed under the terms of the GNU General Public License v2
24 +
25 +EAPI=7
26 +
27 +PYTHON_COMPAT=( python3_{6,7} )
28 +
29 +inherit distutils-r1
30 +
31 +DESCRIPTION="Deal PySol FreeCell cards"
32 +HOMEPAGE="https://pypi.org/project/pysol-cards/"
33 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
34 +
35 +LICENSE="Apache-2.0 MIT"
36 +SLOT="0"
37 +KEYWORDS="~amd64 ~arm64 ~x86"
38 +IUSE=""
39 +
40 +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
41 +RDEPEND="
42 + dev-python/pbr[${PYTHON_USEDEP}]
43 + dev-python/random2[${PYTHON_USEDEP}]
44 + dev-python/six[${PYTHON_USEDEP}]
45 +"