diff options
author | V3n3RiX <venerix@redcorelinux.org> | 2019-12-15 18:09:03 +0000 |
---|---|---|
committer | V3n3RiX <venerix@redcorelinux.org> | 2019-12-15 18:09:03 +0000 |
commit | 7bc9c63c9da678a7e6fceb095d56c634afd22c56 (patch) | |
tree | 4a67d50a439e9af63947e5f8b6ba3719af98b6c9 /dev-python/python-markdown-math | |
parent | b284a3168fa91a038925d2ecf5e4791011ea5e7d (diff) |
gentoo resync : 15.12.2019
Diffstat (limited to 'dev-python/python-markdown-math')
-rw-r--r-- | dev-python/python-markdown-math/Manifest | 2 | ||||
-rw-r--r-- | dev-python/python-markdown-math/python-markdown-math-0.6-r1.ebuild (renamed from dev-python/python-markdown-math/python-markdown-math-0.6.ebuild) | 18 |
2 files changed, 13 insertions, 7 deletions
diff --git a/dev-python/python-markdown-math/Manifest b/dev-python/python-markdown-math/Manifest index 0352a0a3cfaf..a75fa0d0ea2a 100644 --- a/dev-python/python-markdown-math/Manifest +++ b/dev-python/python-markdown-math/Manifest @@ -1,3 +1,3 @@ DIST python-markdown-math-0.6.tar.gz 6406 BLAKE2B 43172ba4b36b697f196bd569c93d56d1a3a05aaa306b1f149f3b70372e624e35fc0d3f3ea3c58c6b86e00c68408a5ebfe9fcc6562fe5065c7f8a7aa8683ee084 SHA512 af5773dc5b6d8968d811487a86fd027042d381b8b5b37683b519f03f21097bafd3d174881d8201cb6524e0975cd6868781e116cec6406fa20ffd3c6b9f9d4e87 -EBUILD python-markdown-math-0.6.ebuild 703 BLAKE2B 37363410bf137e7000eace670054cd61991da34756c14024c39e452af23f0757fec5aaf239903cc086818826b67104aa6fa75922ed9abf2205955291fb904654 SHA512 87dea1991ca3236a0ad68af5fc6c1cc27e67634a145b5fd0044282b1b47ec54e6ec36452cb7903094121b447eeab3c73e9a96dc371829e7eafebf8cac9486890 +EBUILD python-markdown-math-0.6-r1.ebuild 896 BLAKE2B 47ddda0b9e94ba4bf807f8b087181e5779ab0039027662abc704c1dde402e17df4d1996778737ca1c0760089dbbac6a448a181f6e0c0155d6966d1b464695f1d SHA512 3b29685e63fddb68a0dafa23478137a7224e4bac032db3b8bbc5dea8f52cb0b2277f94e7e1243152906e7272442884cd687bd7ed37ff7063391adeb11010adc0 MISC metadata.xml 618 BLAKE2B 38507a41b254385cc67fc807c7bc9597c22f65bf7ccad19a128d619d1b1ee86aeef3244fa01c90ab652179a9999146f02ac5bed4f57fec308f82c03356bf88a1 SHA512 cfdc0f283f5351aa12165bf85cd9e428f8d1d4c80eda12bacacbcf11d2b195d6306bc406b64ddd7dbdc3b086c7d2fbde70a424e0169751a9b92ae48e02544802 diff --git a/dev-python/python-markdown-math/python-markdown-math-0.6.ebuild b/dev-python/python-markdown-math/python-markdown-math-0.6-r1.ebuild index d018e35912cc..dd47511ee123 100644 --- a/dev-python/python-markdown-math/python-markdown-math-0.6.ebuild +++ b/dev-python/python-markdown-math/python-markdown-math-0.6-r1.ebuild @@ -11,21 +11,27 @@ MY_PN="python-${PN}" DESCRIPTION="Math extension for Python-Markdown" HOMEPAGE="https://github.com/mitya57/python-markdown-math" -if [[ ${PV} == *9999 ]] +if [[ ${PV} == **9999 ]] then inherit git-r3 EGIT_REPO_URI="https://github.com/mitya57/python-markdown-math.git" - else +else SRC_URI="mirror://pypi/${MY_PN:0:1}/${PN}/${P}.tar.gz" - KEYWORDS="~amd64 ~x86" + KEYWORDS="amd64 x86" fi LICENSE="BSD" SLOT="0" -KEYWORDS="~amd64 ~x86" +KEYWORDS="amd64 x86" IUSE="test" - -DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" +RESTRICT="!test? ( test )" + +# Tests for python2.7 ran fine even with dev-python/markdown-2.6.5, +# but python3.7 is only supported from 3.x onwards. +DEPEND=" + >=dev-python/markdown-3.0.1[${PYTHON_USEDEP}] + dev-python/setuptools[${PYTHON_USEDEP}] +" RDEPEND="${DEPEND}" BDEPEND="" |