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/markups/
Date: Mon, 01 Feb 2021 08:50:59
Message-Id: 1612169449.2b4bb86048a8c42506b0efeb18e3c5a99ee631be.mgorny@gentoo
1 commit: 2b4bb86048a8c42506b0efeb18e3c5a99ee631be
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Mon Feb 1 08:28:09 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon Feb 1 08:50:49 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2b4bb860
7
8 dev-python/markups: Bump to 3.1.0
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/markups/Manifest | 1 +
13 dev-python/markups/markups-3.1.0.ebuild | 42 +++++++++++++++++++++++++++++++++
14 2 files changed, 43 insertions(+)
15
16 diff --git a/dev-python/markups/Manifest b/dev-python/markups/Manifest
17 index 71335c820b7..d70c1e2634c 100644
18 --- a/dev-python/markups/Manifest
19 +++ b/dev-python/markups/Manifest
20 @@ -1 +1,2 @@
21 DIST Markups-3.0.0.tar.gz 16966 BLAKE2B 9245b1b0056bda9538fabf8540ddc41f2861a41c2ea42f29da195393bb85a63af1273109cb8f3d15ee4b257774512e3002d95948bab4a4493d89e18d687f19ce SHA512 3dfb97f29e801fa296e7ea22f2693d05fe9a9bfdf6c9b560cf6a44d04abfb6c2ac0717093732b6fbd9ea052ab9f8d054b3aae10a0c16516af3815ca1d720aef5
22 +DIST Markups-3.1.0.tar.gz 20146 BLAKE2B 426c6f050868e423eeb7f01cee930b088c4b6f7748b7f198f03880cb7d6cc237575c6253d40631aad1601e193ff0e2b587906492c07b953903ee12422e06cb3c SHA512 eaf99b8f521dc93008e0e2519e5c6e8885609457739378d5af6e3aa044a9dd1370bf906a061d8a284d8ad4f9c5196c01a6d8dde3a4630898fe4711154cef7ce0
23
24 diff --git a/dev-python/markups/markups-3.1.0.ebuild b/dev-python/markups/markups-3.1.0.ebuild
25 new file mode 100644
26 index 00000000000..1877e90402e
27 --- /dev/null
28 +++ b/dev-python/markups/markups-3.1.0.ebuild
29 @@ -0,0 +1,42 @@
30 +# Copyright 1999-2021 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=7
34 +
35 +PYTHON_COMPAT=( python3_{7..9} )
36 +
37 +inherit distutils-r1
38 +
39 +MY_P=${P^}
40 +
41 +DESCRIPTION="A wrapper around various text markups"
42 +HOMEPAGE="
43 + https://pymarkups.readthedocs.io/en/latest/
44 + https://github.com/retext-project/pymarkups
45 + https://pypi.org/project/Markups/
46 +"
47 +SRC_URI="mirror://pypi/${MY_P:0:1}/${PN^}/${MY_P}.tar.gz"
48 +S="${WORKDIR}/${MY_P}"
49 +
50 +LICENSE="BSD"
51 +SLOT="0"
52 +KEYWORDS="~amd64 ~x86"
53 +
54 +RDEPEND="
55 + $(python_gen_cond_dep '
56 + dev-python/importlib_metadata[${PYTHON_USEDEP}]
57 + ' python3_7 pypy3)
58 + dev-python/markdown[${PYTHON_USEDEP}]
59 + dev-python/python-markdown-math[${PYTHON_USEDEP}]
60 + dev-python/pyyaml[${PYTHON_USEDEP}]
61 +"
62 +DEPEND="${RDEPEND}"
63 +BDEPEND="
64 + test? (
65 + app-text/pytextile[${PYTHON_USEDEP}]
66 + dev-python/docutils[${PYTHON_USEDEP}]
67 + dev-python/pygments[${PYTHON_USEDEP}]
68 + )
69 +"
70 +
71 +distutils_enable_tests unittest