From 34799235b4d6b8d392bbe60676645dd0b140e716 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maciej=20Bar=C4=87?= Date: Fri, 1 May 2020 19:23:05 +0200 Subject: [PATCH] dev-python/pypandoc: new package; add version 1.5 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Package-Manager: Portage-2.3.89, Repoman-2.3.20 Signed-off-by: Maciej Barć --- dev-python/pypandoc/Manifest | 1 + dev-python/pypandoc/metadata.xml | 12 ++++++++ dev-python/pypandoc/pypandoc-1.5.ebuild | 40 +++++++++++++++++++++++++ 3 files changed, 53 insertions(+) create mode 100644 dev-python/pypandoc/Manifest create mode 100644 dev-python/pypandoc/metadata.xml create mode 100644 dev-python/pypandoc/pypandoc-1.5.ebuild 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}" +}