From 12ab0c9218a34c65fcfc3eb5645ef8024c483c8b Mon Sep 17 00:00:00 2001 From: Ryan Fox Date: Sat, 28 Oct 2023 15:54:56 -0700 Subject: [PATCH] dev-python/pypandoc: add 1.12 --- dev-python/pypandoc/Manifest | 1 + dev-python/pypandoc/pypandoc-1.12.ebuild | 26 ++++++++++++++++++++++++ dev-python/pypandoc/pypandoc-9999.ebuild | 2 +- 3 files changed, 28 insertions(+), 1 deletion(-) create mode 100644 dev-python/pypandoc/pypandoc-1.12.ebuild diff --git a/dev-python/pypandoc/Manifest b/dev-python/pypandoc/Manifest index 67b3d4d..da12188 100644 --- a/dev-python/pypandoc/Manifest +++ b/dev-python/pypandoc/Manifest @@ -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 diff --git a/dev-python/pypandoc/pypandoc-1.12.ebuild b/dev-python/pypandoc/pypandoc-1.12.ebuild new file mode 100644 index 0000000..e13ce6b --- /dev/null +++ b/dev-python/pypandoc/pypandoc-1.12.ebuild @@ -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" diff --git a/dev-python/pypandoc/pypandoc-9999.ebuild b/dev-python/pypandoc/pypandoc-9999.ebuild index 989dad7..e13ce6b 100644 --- a/dev-python/pypandoc/pypandoc-9999.ebuild +++ b/dev-python/pypandoc/pypandoc-9999.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=poetry -PYTHON_COMPAT=( python3_{8..11} ) +PYTHON_COMPAT=( python3_{8..12} ) inherit distutils-r1