1
0

dev-python/pypandoc: add 1.12

This commit is contained in:
Ryan Fox 2023-10-28 15:54:56 -07:00
parent 75983d2ed0
commit 12ab0c9218
3 changed files with 28 additions and 1 deletions

View File

@ -1,2 +1,3 @@
DIST pypandoc-1.11.gh.tar.gz 69118 BLAKE2B d2a48c6c342325bd8a38ac697616ea5f694fe5928d1538e4ee47d4ffbcdc1c1206e9d68eea214c3edffabef0018cb2950f0cda7e700be5894cb41fe7a7de3446 SHA512 1ca753ac2da9ad1a98c72aa639b6809e31d8c5da85a3a843f91675f95861e5056c183f67d73008c064b8fd2c82a4cd255f20b1c0073cc288a1e0e6a74caa9f94
DIST pypandoc-1.12.gh.tar.gz 69756 BLAKE2B d8e3f10aa830889488872aeadca8551abfe68e8d77755db4c99212d23523254db0480eb09fad6b63d3e80c2992331a8fb56de56a5fd753c73bfb144d3bbbd308 SHA512 889050011fd6d2c79a8c0ab84e7effab849b75cf0616daf746d43f3f0165b1ace14d15b2d030370453ff4110fbddc97bf4886695619ffabd1eb235f9ed2d9cb3
DIST pypandoc-1.9.gh.tar.gz 36826 BLAKE2B 2d86bdbd4d8a61987e61c7d8ac71c96f58152dd2b0a377ce962563b4f39ec79cdd9ff066e875f9788141a449e32b217d5288aefd12fc6c25e21a950bd4e39455 SHA512 3cb95ffe21dc049f6b758314e2292b4db4eb7994540c10a2f25d9404f933ab2cea59f116432b77881bd9f8e651b73e64d8bfe2819720b2bae2aff438e70ebe5d

View File

@ -0,0 +1,26 @@
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=poetry
PYTHON_COMPAT=( python3_{8..12} )
inherit distutils-r1
if [[ ${PV} == 9999 ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/NicklasTegner/pypandoc.git"
else
SRC_URI="https://github.com/NicklasTegner/pypandoc/archive/v${PV}.tar.gz -> ${P}.gh.tar.gz"
KEYWORDS="~amd64"
fi
DESCRIPTION="Thin wrapper for pandoc"
HOMEPAGE="https://github.com/NicklasTegner/pypandoc"
LICENSE="MIT"
SLOT="0"
DEPEND=""
RDEPEND="app-text/pandoc"
BDEPEND=">=dev-python/pip-8.1.10"

View File

@ -4,7 +4,7 @@
EAPI=8
DISTUTILS_USE_PEP517=poetry
PYTHON_COMPAT=( python3_{8..11} )
PYTHON_COMPAT=( python3_{8..12} )
inherit distutils-r1