summaryrefslogtreecommitdiff
path: root/dev-python/pyphen
diff options
context:
space:
mode:
authorLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2022-11-17 08:28:36 +0000
committerLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2022-11-17 08:28:36 +0000
commit4f48e4a0f470005931c4befc794484b20d5ceee1 (patch)
tree3a6f532af80df6d2e7498761b297b24fb95a1a82 /dev-python/pyphen
parent55c1aeb48f0856d12d2a7d4fbfcf1cfa0e75e7da (diff)
downloadbaldeagleos-repo-4f48e4a0f470005931c4befc794484b20d5ceee1.tar.gz
baldeagleos-repo-4f48e4a0f470005931c4befc794484b20d5ceee1.tar.xz
baldeagleos-repo-4f48e4a0f470005931c4befc794484b20d5ceee1.zip
Adding metadata
Diffstat (limited to 'dev-python/pyphen')
-rw-r--r--dev-python/pyphen/Manifest1
-rw-r--r--dev-python/pyphen/pyphen-0.13.1.ebuild30
2 files changed, 31 insertions, 0 deletions
diff --git a/dev-python/pyphen/Manifest b/dev-python/pyphen/Manifest
index a972b919e779..11bb7cf15e97 100644
--- a/dev-python/pyphen/Manifest
+++ b/dev-python/pyphen/Manifest
@@ -1 +1,2 @@
DIST pyphen-0.13.0.gh.tar.gz 1976723 BLAKE2B 2a2934cabf13f1b77477d131622cd2f03c342557bdfe3b2f7cfbbf31c4538850e021e074798d80300f87b2557f87cbf3bbeafd01da03b38a7036609e61e140ec SHA512 67897cec0b213a755af53ac21c61ddc1ac573a724658543174c3f88adb5f3db367fecf3afb1e7035c0d5b87e624daa2fe7650cb6e44c63d3b9ef6962bbc5d9e2
+DIST pyphen-0.13.1.gh.tar.gz 1976786 BLAKE2B f836467ab8d75f48ed17bccf629193a0c3009a8fc6af114ef86606d468d70aa68f3af5d9dc77318282825cf3d21f661b2a4a93cbf305913ead5cb11de74f474e SHA512 230aec57f0a2db11f30b15115e5ed59ce19aed60120de24783f58ef831854ad7e236ae1da086bca01f9a41cef24f8402d9e0bf9251f6d55c38aa624fd55d4a3b
diff --git a/dev-python/pyphen/pyphen-0.13.1.ebuild b/dev-python/pyphen/pyphen-0.13.1.ebuild
new file mode 100644
index 000000000000..3538c2fac5ec
--- /dev/null
+++ b/dev-python/pyphen/pyphen-0.13.1.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=flit
+PYTHON_COMPAT=( python3_{7,8,9,10,11} )
+
+inherit distutils-r1
+
+DESCRIPTION="Python module for hyphenation using hunspell dictionaries"
+HOMEPAGE="
+ https://github.com/Kozea/Pyphen/
+ https://pypi.org/project/pyphen/
+"
+SRC_URI="
+ https://github.com/Kozea/Pyphen/archive/${PV}.tar.gz
+ -> ${P}.gh.tar.gz
+"
+S=${WORKDIR}/${P^}
+
+LICENSE="GPL-2+ LGPL-2+ MPL-1.1"
+SLOT="0"
+KEYWORDS="~amd64 ~riscv ~x86"
+
+distutils_enable_tests pytest
+
+python_test() {
+ epytest -o addopts=
+}