From 068424b26532f3551a81421a9be67ed206e5c11a Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Wed, 11 Aug 2021 07:02:28 +0100 Subject: gentoo resync : 11.08.2021 --- dev-python/pyspelling/Manifest | 2 ++ dev-python/pyspelling/pyspelling-2.7.3.ebuild | 52 +++++++++++++++++++++++++++ 2 files changed, 54 insertions(+) create mode 100644 dev-python/pyspelling/pyspelling-2.7.3.ebuild (limited to 'dev-python/pyspelling') diff --git a/dev-python/pyspelling/Manifest b/dev-python/pyspelling/Manifest index 198873509ef8..8cd8ba74e52f 100644 --- a/dev-python/pyspelling/Manifest +++ b/dev-python/pyspelling/Manifest @@ -1,3 +1,5 @@ DIST pyspelling-2.7.2.tar.gz 150911 BLAKE2B 813eca2c4bdf377fd7babec376dd2991713db59c66b509c656cb24a314776c2cc360ec9ff884baec6607f27cae3169672746580d3c58abad35dbfe9f605fc51e SHA512 2937c1985ec6f27713275d9f31d3529e35f219df211be0ac9f1ae89d5c92a1e52c51b982291be7bd25375eb6404f52ac0ad893afbe73aada1fb03923dc09f721 +DIST pyspelling-2.7.3.tar.gz 151244 BLAKE2B bdfb40c6f39dc5adcc31691ef75b2582e78e8d0ed800ef0e263f8f98987ce3911650cb08085315c617c185e6ef183a11508fde4608349d0dad435b9f4fe1da98 SHA512 6903b620993933e80dfef320c0218c6372ee37f1db958b489d273aca24dd91bcc86fd12967848b8e31c2d7d458fb5fbfb521f41328c5955a1914f7d552ae7341 EBUILD pyspelling-2.7.2.ebuild 1339 BLAKE2B 96a39eebeca78294d1953d455a4565d90a2aedfdb3296e7f7e87c7ab7a21e36a0f1336dab2a23bc1601c1b5d0cc5b0686c4ecf84e8845153d8f4ddd5aa4ef9e3 SHA512 a87e64846eb564529264ed0144a1ffc956ddc6a508b4ccc3d88e733b7cfd419c877a3aa6085596f361c7857827c5e58b1073b3c8d24da8d7d087fe2c3dd5e4b9 +EBUILD pyspelling-2.7.3.ebuild 1307 BLAKE2B 81e9b850b176123461706c112bcdeca511fabc53b1577880c159a4c0cf55daa483eeb1d95e56a3015bec7b75d2dad3ff81f0ff6b5f0404c672eeed2bd360dc73 SHA512 0310fef4478e18590ee1a8857ef16d5c39c9f79b1056732e3d6c332a5d82d3367f063f7c153209d7d699aab3f047f02ecf13f85d99099be83f14443b0434f37a MISC metadata.xml 1922 BLAKE2B 0c37a511b81e5cbd3c859848c6dc5d6956534534a21a680abe897692e7da6f399d0cf9c0fbfde9e2246cd20fee7c7884f26c4a3362532b6888346bd559cf11b0 SHA512 64ed2646fb3210997ba08dc3a4eb33299d30015d4060d0bc3a24221ca1067aec99c907efa870092b3eafe1d5724524022d74d8f6feafba3013b65f7cdb8b2f9c diff --git a/dev-python/pyspelling/pyspelling-2.7.3.ebuild b/dev-python/pyspelling/pyspelling-2.7.3.ebuild new file mode 100644 index 000000000000..73d0ffb19840 --- /dev/null +++ b/dev-python/pyspelling/pyspelling-2.7.3.ebuild @@ -0,0 +1,52 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{8..10} ) + +DOCS_BUILDER="mkdocs" +DOCS_DEPEND=" + ~dev-python/mkdocs_pymdownx_material_extras-1.1.3 + dev-python/mkdocs-git-revision-date-localized-plugin + dev-python/mkdocs-minify-plugin +" + +inherit distutils-r1 docs + +DESCRIPTION="Spell checker automation tool" +HOMEPAGE="https://github.com/facelessuser/pyspelling" +SRC_URI="https://github.com/facelessuser/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND=" + || ( app-text/aspell app-text/hunspell ) + + dev-python/beautifulsoup:4[${PYTHON_USEDEP}] + dev-python/html5lib[${PYTHON_USEDEP}] + dev-python/lxml[${PYTHON_USEDEP}] + dev-python/markdown[${PYTHON_USEDEP}] + dev-python/pyyaml[${PYTHON_USEDEP}] + >=dev-python/soupsieve-1.8[${PYTHON_USEDEP}] + >=dev-python/wcmatch-6.0.3[${PYTHON_USEDEP}] +" + +BDEPEND="test? ( dev-vcs/git )" + +distutils_enable_tests pytest + +python_prepare_all() { + # mkdocs-git-revision-date-localized-plugin needs git repo + if use doc; then + git init || die + git config --global user.email "you@example.com" || die + git config --global user.name "Your Name" || die + git add . || die + git commit -m 'init' || die + fi + + distutils-r1_python_prepare_all +} -- cgit v1.2.3