diff options
author | V3n3RiX <venerix@koprulu.sector> | 2022-01-04 01:27:12 +0000 |
---|---|---|
committer | V3n3RiX <venerix@koprulu.sector> | 2022-01-04 01:27:12 +0000 |
commit | 3517852e3b8a68d1e997770fc0650c5053bafc6c (patch) | |
tree | 44068672445b1418489aed82de58df3c470289e7 /dev-python/pyphen | |
parent | 0f15659d48c193027158492acb726297501202c5 (diff) |
gentoo resync : 04.01.2022
Diffstat (limited to 'dev-python/pyphen')
-rw-r--r-- | dev-python/pyphen/Manifest | 2 | ||||
-rw-r--r-- | dev-python/pyphen/pyphen-0.12.0.ebuild | 29 |
2 files changed, 31 insertions, 0 deletions
diff --git a/dev-python/pyphen/Manifest b/dev-python/pyphen/Manifest index 7fab243c2ec5..58718286db3c 100644 --- a/dev-python/pyphen/Manifest +++ b/dev-python/pyphen/Manifest @@ -1,3 +1,5 @@ DIST Pyphen-0.11.0.tar.gz 1967507 BLAKE2B 0bea108e78894082f59693a4ffa6c7f9f6aaec5fc10d0ecf4dc9b6c12fbcfde2cdd835e813b1041797cbc30d5e6e33f5626a517e8cc0535a7a001c8ac779fa4c SHA512 cdb4ee065698e27a4662984b76ee5c494c0d8e7d6b377667399f40d0dffc2b1d730956f3fa1fe73a08c17601152c99321b6fd5dd4d48361c54e9a6b635f02f0d +DIST Pyphen-0.12.0.tar.gz 1969022 BLAKE2B 9b7f6712a2085507684ddde52401a75b05d0a13a530572f0f08b9143168a8ea61a5ee73983606b19f88ff23f3c5344aa87722c3986291c7349f82e95dd3b1f19 SHA512 abecf0773f59b7a757b47c6512f1bf8e98f4709b285f04cf235c085ab4767eb95deab8ede4b792d6f4a6156d47287f9f712cb658939ed5afc475644e282adbd3 EBUILD pyphen-0.11.0-r1.ebuild 706 BLAKE2B ceee9ee318d5b0cf6a3cd1a333120487f8c9204afa63d639537cfcde25beb169aefc086368d22291ad6360fab93ae1f4d9f9cef57a842f5751eff6566df437c4 SHA512 9bda76ba4ed6c155d19c61ef7530d417da50e25dbc63cad729c20769d40391bc0a3ffb2a24070c199e85f814d5c810525ffb56ce1bcb201e5b53e0f7ade082b6 +EBUILD pyphen-0.12.0.ebuild 706 BLAKE2B 59a6dcb3e7241955ce3baac3156737c1b3a539e2e95e4fbb827bc3ae8cb6e0a11d47bbc716cb26ef1dc79440eb479e8cd490965cb84015f34e2ebeccbd90045b SHA512 98c7bf67ecde6569cca64d90e84fc3b9b8b0aec3dc477f94b8c0e18ce30888b3e3697820ebc7c9c374bed79cb5fbc20672b01954dd16557baa095dd137fb2b90 MISC metadata.xml 498 BLAKE2B fbe488a6cdb4ec1dffbc8455b1369b35ebdce6f86f7ea0afc7451b838eab586c2b4d7579ce77844412978bf3a1de964793f2a3766d9402b143921d5d00373e85 SHA512 3a9f7942d0c87655067e13537ffd7f050f87c964a25be650ff38ea4d217dfe84e3a0508f7c14333d8be5f8c191711720d83837e447f0fb1d0213dc439c5a9fb7 diff --git a/dev-python/pyphen/pyphen-0.12.0.ebuild b/dev-python/pyphen/pyphen-0.12.0.ebuild new file mode 100644 index 000000000000..b70a51d50b40 --- /dev/null +++ b/dev-python/pyphen/pyphen-0.12.0.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_SETUPTOOLS=pyproject.toml +PYTHON_COMPAT=( python3_{8..10} ) + +inherit distutils-r1 + +DESCRIPTION="Python module for hyphenation using hunspell dictionaries" +HOMEPAGE="https://github.com/Kozea/Pyphen" +SRC_URI="https://github.com/Kozea/Pyphen/archive/${PV}.tar.gz -> ${P^}.tar.gz" +S=${WORKDIR}/${P^} + +LICENSE="GPL-2+ LGPL-2+ MPL-1.1" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +BDEPEND=" + >=dev-python/pyproject2setuppy-18[${PYTHON_USEDEP}]" + +distutils_enable_tests pytest + +src_prepare() { + # avoid dep on extra plugins + sed -i -e '/addopts/d' pyproject.toml || die + distutils-r1_src_prepare +} |