diff options
author | Michał Górny <mgorny@gentoo.org> | 2021-02-01 09:28:09 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2021-02-01 09:50:49 +0100 |
commit | 2b4bb86048a8c42506b0efeb18e3c5a99ee631be (patch) | |
tree | c4d189f14096271def93f538afb120a86f9cf219 /dev-python/markups | |
parent | dev-python/jupyter_core: Bump to 4.7.1 (diff) | |
download | gentoo-2b4bb86048a8c42506b0efeb18e3c5a99ee631be.tar.gz gentoo-2b4bb86048a8c42506b0efeb18e3c5a99ee631be.tar.bz2 gentoo-2b4bb86048a8c42506b0efeb18e3c5a99ee631be.zip |
dev-python/markups: Bump to 3.1.0
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/markups')
-rw-r--r-- | dev-python/markups/Manifest | 1 | ||||
-rw-r--r-- | dev-python/markups/markups-3.1.0.ebuild | 42 |
2 files changed, 43 insertions, 0 deletions
diff --git a/dev-python/markups/Manifest b/dev-python/markups/Manifest index 71335c820b7b..d70c1e2634cf 100644 --- a/dev-python/markups/Manifest +++ b/dev-python/markups/Manifest @@ -1 +1,2 @@ DIST Markups-3.0.0.tar.gz 16966 BLAKE2B 9245b1b0056bda9538fabf8540ddc41f2861a41c2ea42f29da195393bb85a63af1273109cb8f3d15ee4b257774512e3002d95948bab4a4493d89e18d687f19ce SHA512 3dfb97f29e801fa296e7ea22f2693d05fe9a9bfdf6c9b560cf6a44d04abfb6c2ac0717093732b6fbd9ea052ab9f8d054b3aae10a0c16516af3815ca1d720aef5 +DIST Markups-3.1.0.tar.gz 20146 BLAKE2B 426c6f050868e423eeb7f01cee930b088c4b6f7748b7f198f03880cb7d6cc237575c6253d40631aad1601e193ff0e2b587906492c07b953903ee12422e06cb3c SHA512 eaf99b8f521dc93008e0e2519e5c6e8885609457739378d5af6e3aa044a9dd1370bf906a061d8a284d8ad4f9c5196c01a6d8dde3a4630898fe4711154cef7ce0 diff --git a/dev-python/markups/markups-3.1.0.ebuild b/dev-python/markups/markups-3.1.0.ebuild new file mode 100644 index 000000000000..1877e90402e0 --- /dev/null +++ b/dev-python/markups/markups-3.1.0.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{7..9} ) + +inherit distutils-r1 + +MY_P=${P^} + +DESCRIPTION="A wrapper around various text markups" +HOMEPAGE=" + https://pymarkups.readthedocs.io/en/latest/ + https://github.com/retext-project/pymarkups + https://pypi.org/project/Markups/ +" +SRC_URI="mirror://pypi/${MY_P:0:1}/${PN^}/${MY_P}.tar.gz" +S="${WORKDIR}/${MY_P}" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND=" + $(python_gen_cond_dep ' + dev-python/importlib_metadata[${PYTHON_USEDEP}] + ' python3_7 pypy3) + dev-python/markdown[${PYTHON_USEDEP}] + dev-python/python-markdown-math[${PYTHON_USEDEP}] + dev-python/pyyaml[${PYTHON_USEDEP}] +" +DEPEND="${RDEPEND}" +BDEPEND=" + test? ( + app-text/pytextile[${PYTHON_USEDEP}] + dev-python/docutils[${PYTHON_USEDEP}] + dev-python/pygments[${PYTHON_USEDEP}] + ) +" + +distutils_enable_tests unittest |