diff options
author | Sam James <sam@gentoo.org> | 2021-02-06 22:37:28 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2021-02-06 22:37:28 +0000 |
commit | 556d63a9dfee4107a3a38f16b351a66b03159c5e (patch) | |
tree | a840811bd4b4d1e41914533e792b9580197b8d61 /dev-python/recommonmark | |
parent | dev-python/recommonmark: fix tests with Sphinx 3 (diff) | |
download | gentoo-556d63a9dfee4107a3a38f16b351a66b03159c5e.tar.gz gentoo-556d63a9dfee4107a3a38f16b351a66b03159c5e.tar.bz2 gentoo-556d63a9dfee4107a3a38f16b351a66b03159c5e.zip |
dev-python/recommonmark: bump to 0.7.1
0.7.1 doesn't seem to have any changes over 0.7,
but it was tagged anyway, and we were on 0.6.0.
Package-Manager: Portage-3.0.14, Repoman-3.0.2
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'dev-python/recommonmark')
-rw-r--r-- | dev-python/recommonmark/Manifest | 1 | ||||
-rw-r--r-- | dev-python/recommonmark/recommonmark-0.7.1.ebuild | 30 |
2 files changed, 31 insertions, 0 deletions
diff --git a/dev-python/recommonmark/Manifest b/dev-python/recommonmark/Manifest index 8403f7f1de48..48f48612b255 100644 --- a/dev-python/recommonmark/Manifest +++ b/dev-python/recommonmark/Manifest @@ -1 +1,2 @@ DIST recommonmark-0.6.0.tar.gz 24537 BLAKE2B 47f667ca0799394dc88964709efc59d1e2a68973b1c00fb41abfb514166e939b8dd0b6a0827285cfa1bb60669e08868b7a0993b6a32880fc0dd22cfefa6cf273 SHA512 44005b3fd0052cd8d4fce8a64f9d66a1ac75dc3041a28c115e922254956b2143296cbfbc0a2396b9f95691145645c4242e3be68e695b2c62ae37964014511679 +DIST recommonmark-0.7.1.tar.gz 24720 BLAKE2B 6543a23bd262be0ff6847fc1eb1bd3dad433606aa1adb52162cab2e0c4dd2265ac41b3816bbe1994c4f6ca732105712dbc9cd295d5cfd93061ad83520b8f449c SHA512 3e03440d606ea6247df9bd122a6fa2dccf01c0c315eeace046d5cd336657e26bbd1c6b7ad4ba46f344215905128b72508c036cc57bbe4b5e27df50c55371fe01 diff --git a/dev-python/recommonmark/recommonmark-0.7.1.ebuild b/dev-python/recommonmark/recommonmark-0.7.1.ebuild new file mode 100644 index 000000000000..e9b2fe6b79ce --- /dev/null +++ b/dev-python/recommonmark/recommonmark-0.7.1.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DISTUTILS_USE_SETUPTOOLS=rdepend +PYTHON_COMPAT=( python3_{7,8,9} ) + +inherit distutils-r1 + +DESCRIPTION="Python docutils-compatibility bridge to CommonMark" +HOMEPAGE="https://recommonmark.readthedocs.io/" +SRC_URI="https://github.com/rtfd/recommonmark/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux" + +RDEPEND=" + >=dev-python/commonmark-0.8.1[${PYTHON_USEDEP}] + >=dev-python/docutils-0.14[${PYTHON_USEDEP}] + dev-python/sphinx[${PYTHON_USEDEP}] +" + +PATCHES=( + "${FILESDIR}/${PN}-0.6.0-sphinx3-1.patch" + "${FILESDIR}/${PN}-0.6.0-sphinx3-2.patch" +) + +distutils_enable_tests pytest |