add pypandoc-1.7.4

This commit is contained in:
2022-03-20 08:30:51 +01:00
committed by Andreas Billmeier
parent a43f9cb82a
commit 805068db5f
4 changed files with 53 additions and 2 deletions

View File

@@ -0,0 +1,3 @@
DIST pypandoc-1.7.4.tar.gz 30526 BLAKE2B 44ea2083e014874e4fc5ce9ce8d2dcff64319e7d0d77baffc61fa0d0c2a7fd209642f706eaf4ad258b65a4f0ad8851a9ea02d38d0db4e71c136b972a5934cb79 SHA512 01a7165974ca844b55c387e8ed9b5278c43b5879ca6ea51e0aafab9f035667d37fc06a52a5c0820e18b321ddd5185e53a49561c84e157cb0ead76c7f84d0bcc1
EBUILD pypandoc-1.7.4.ebuild 700 BLAKE2B 2552dd1e12bb55ce19bda99fe3d4967996b2565af813b9f585c46302f9bd3ec043af9ed1299b8db28b46c69912f6ee8125dc40d696b7d476a7bea0c22b8f1574 SHA512 367921e7bfbc02d4f112174cbad77407a523b3edfe002c5b83efe0e87c7d1438c0746d739167bcd71775d4ede5d899a2de11998056d9a6f783c0bdd251e27010
MISC metadata.xml 470 BLAKE2B 5889f558656b6506c62439d9ba70a50c45e6543dd6f4ea3eb281539cc2d29514f2fa30d2766de1009618bc5b8e126d46bcb712b07e7af4fa85f6a94666a31ad8 SHA512 b1223ab5f85ef92e1e8def25654c3af9f8f78e3a8c0bb6c515c826f6546eea04d387f6778c31cb65c33d5385d7889a8b23d868a3140f902e569a45366ec94a56

View File

@@ -0,0 +1,15 @@
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="project">
<email>b@edevau.net</email>
<name>Andreas Billmeier</name>
</maintainer>
<upstream>
<remote-id type="pypi">pypandoc</remote-id>
<maintainer status="unknown">
<email>bebraw@gmail.com</email>
<name>b'Juho Veps\xc3\xa4l\xc3\xa4inen'</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@@ -0,0 +1,33 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{8..10} )
inherit distutils-r1
DESCRIPTION="Thin wrapper for pandoc."
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 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
RDEPEND=""
BDEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/nose[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
nosetests --verbose || die
py.test -v -v || die
}