diff --git a/dev-python/pypandoc/Manifest b/dev-python/pypandoc/Manifest new file mode 100644 index 0000000000..cc22e0eff9 --- /dev/null +++ b/dev-python/pypandoc/Manifest @@ -0,0 +1 @@ +DIST pypandoc-1.5.tar.gz 26494 BLAKE2B f265effc55db8b1f706a4541f18119de2d0cccc7ab59ea83f80e6051ae4a4e36128d6b36c51e255c2ed0b0577c1df46284820c97f629fc3b790c301448a6bb39 SHA512 511f5f5f7bff8de686c3f74d3756d27a3ae245803e2e9b45abc957acf112b306eff057ce87e8f3b335de00b97d4753de31e9681830d9aa776247ca707683ed13 diff --git a/dev-python/pypandoc/metadata.xml b/dev-python/pypandoc/metadata.xml new file mode 100644 index 0000000000..e2184ea9c8 --- /dev/null +++ b/dev-python/pypandoc/metadata.xml @@ -0,0 +1,12 @@ + + + + + xgqt@protonmail.com + Maciej Barć + + + bebraw/pypandoc + pypandoc + + diff --git a/dev-python/pypandoc/pypandoc-1.5.ebuild b/dev-python/pypandoc/pypandoc-1.5.ebuild new file mode 100644 index 0000000000..6f5d84caf4 --- /dev/null +++ b/dev-python/pypandoc/pypandoc-1.5.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{6,7} ) + +inherit distutils-r1 + +DESCRIPTION="Pypandoc provides a thin wrapper for pandoc, a universal document converter" +HOMEPAGE=" + https://github.com/bebraw/pypandoc + https://pypi.org/project/pypandoc/ +" +SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" + +RDEPEND=" + app-text/pandoc + dev-haskell/pandoc-citeproc + dev-texlive/texlive-latex +" +DEPEND=" + ${RDEPEND} + >=dev-python/wheel-0.25.0[${PYTHON_USEDEP}] + dev-python/setuptools[${PYTHON_USEDEP}] + dev-python/urllib3[${PYTHON_USEDEP}] +" + +python_test() { + # Skip tests. Wants: internet access + sed -i -e 's:test_basic_conversion_from_http_url:_&:' tests.py || die + # Skip tests. Wants: nonexistent font + sed -i -e 's:test_pdf_conversion:_&:' tests.py || die + + "${EPYTHON}" tests.py || die "Tests fail with ${EPYTHON}" +}