Gentoo Archives: gentoo-commits

From: Ben Kohler <bkohler@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/grip/
Date: Mon, 28 Dec 2020 18:50:23
Message-Id: 1609181410.3f17aaf8443ebee9973abd23e50317766135bb53.bkohler@gentoo
1 commit: 3f17aaf8443ebee9973abd23e50317766135bb53
2 Author: Ben Kohler <bkohler <AT> gentoo <DOT> org>
3 AuthorDate: Mon Dec 28 18:15:35 2020 +0000
4 Commit: Ben Kohler <bkohler <AT> gentoo <DOT> org>
5 CommitDate: Mon Dec 28 18:50:10 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3f17aaf8
7
8 app-text/grip: add python3_9 & fix USE deps
9
10 Package-Manager: Portage-3.0.12, Repoman-3.0.2
11 Signed-off-by: Ben Kohler <bkohler <AT> gentoo.org>
12
13 app-text/grip/grip-4.5.2-r2.ebuild | 28 ++++++++++++++++++++++++++++
14 1 file changed, 28 insertions(+)
15
16 diff --git a/app-text/grip/grip-4.5.2-r2.ebuild b/app-text/grip/grip-4.5.2-r2.ebuild
17 new file mode 100644
18 index 00000000000..12692b8ffac
19 --- /dev/null
20 +++ b/app-text/grip/grip-4.5.2-r2.ebuild
21 @@ -0,0 +1,28 @@
22 +# Copyright 1999-2020 Gentoo Authors
23 +# Distributed under the terms of the GNU General Public License v2
24 +
25 +EAPI=7
26 +
27 +PYTHON_COMPAT=( pypy3 python3_{7..9} )
28 +DISTUTILS_USE_SETUPTOOLS=rdepend
29 +inherit distutils-r1
30 +
31 +DESCRIPTION="Preview GitHub Markdown files like Readme locally before committing them"
32 +HOMEPAGE="https://github.com/joeyespo/grip"
33 +LICENSE="MIT"
34 +
35 +SLOT="0"
36 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
37 +
38 +KEYWORDS="~amd64"
39 +
40 +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
41 +RDEPEND="
42 + !media-sound/grip
43 + >=dev-python/docopt-0.4.0[${PYTHON_USEDEP}]
44 + >=dev-python/flask-0.10.1[${PYTHON_USEDEP}]
45 + >=dev-python/markdown-2.5.1[${PYTHON_USEDEP}]
46 + >=dev-python/path-and-address-2.0.1[${PYTHON_USEDEP}]
47 + >=dev-python/pygments-1.6[${PYTHON_USEDEP}]
48 + >=dev-python/requests-2.4.1[${PYTHON_USEDEP}]
49 +"