summaryrefslogtreecommitdiff
path: root/dev-python/pyenchant
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-06-04 16:24:49 -0500
committerroot <root@alpha.trunkmasters.com>2026-06-04 16:24:49 -0500
commita3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7 (patch)
tree0c52bbae1c242fbc296bd650fcd1167685f81492 /dev-python/pyenchant
parentbfd9c39e4712ebdb442d4ca0673061faed1e70e1 (diff)
downloadbaldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.gz
baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.xz
baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.zip
Adding metadata
Diffstat (limited to 'dev-python/pyenchant')
-rw-r--r--dev-python/pyenchant/Manifest2
-rw-r--r--dev-python/pyenchant/metadata.xml21
-rw-r--r--dev-python/pyenchant/pyenchant-3.2.2-r1.ebuild40
-rw-r--r--dev-python/pyenchant/pyenchant-3.3.0.ebuild35
4 files changed, 0 insertions, 98 deletions
diff --git a/dev-python/pyenchant/Manifest b/dev-python/pyenchant/Manifest
deleted file mode 100644
index 8148f9a5c686..000000000000
--- a/dev-python/pyenchant/Manifest
+++ /dev/null
@@ -1,2 +0,0 @@
-DIST pyenchant-3.2.2.gh.tar.gz 75565 BLAKE2B 150bdca0d316b2242d60d8c42baf2e5e8cee3df2c57bf47be61170af956cb8c4ee1a584ad2aedd1ed8f203028938c8c0ada40ea45045746deeb4e67c53dc5c70 SHA512 42ab2e0cc38af4223ec0233c9e22cd151aa9bda5b56b7bd642e39e3a323ab3c034391123af5d3a5399551533ba1c1746abd6bc9ee2ab4c7879b9bf0ac91e056d
-DIST pyenchant-3.3.0.gh.tar.gz 77934 BLAKE2B 9773effc74dc93ce43383b2a03fccd655ce93bb48220e4422acde7f6baefabd8f4a6a77adcb856340a342f85ffd6d2817d115e54053df682d9e6e2f7eb2b5c32 SHA512 4b18d40a17ea0826c9ce042fb39dafde32e28809f4deae74e6a7ff62a4b92a3e351274d0fcaecd4f14fd408c1c8e67270bb124b3b562865e73779875e6550aee
diff --git a/dev-python/pyenchant/metadata.xml b/dev-python/pyenchant/metadata.xml
deleted file mode 100644
index 861d749dbc4c..000000000000
--- a/dev-python/pyenchant/metadata.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="project">
- <email>python@gentoo.org</email>
- <name>Python</name>
- </maintainer>
- <longdescription lang="en">
- PyEnchant is a set of language bindings and some wrapper classes to
- make the excellent Enchant spellchecker available as a Python
- module. The bindings are generated using SWIG. It includes all the
- functionality of Enchant with the flexibility of Python and a nice
- 'Pythonic' object-oriented interface. It also aims to provide some
- higher-level functionality than is available in the C API.
- </longdescription>
- <upstream>
- <remote-id type="pypi">pyenchant</remote-id>
- <remote-id type="sourceforge">pyenchant</remote-id>
- <remote-id type="github">pyenchant/pyenchant</remote-id>
- </upstream>
-</pkgmetadata>
diff --git a/dev-python/pyenchant/pyenchant-3.2.2-r1.ebuild b/dev-python/pyenchant/pyenchant-3.2.2-r1.ebuild
deleted file mode 100644
index be08320306f5..000000000000
--- a/dev-python/pyenchant/pyenchant-3.2.2-r1.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{13..14} )
-
-inherit distutils-r1
-
-DESCRIPTION="Python bindings for the Enchant spellchecking system"
-HOMEPAGE="
- https://github.com/pyenchant/pyenchant/
- https://pypi.org/project/pyenchant/
-"
-SRC_URI="
- https://github.com/pyenchant/pyenchant/archive/v${PV}.tar.gz
- -> ${P}.gh.tar.gz
-"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~mips ppc ppc64 ~riscv ~s390 ~sparc x86"
-
-RDEPEND="
- app-text/enchant:*
-"
-BDEPEND="
- test? (
- app-dicts/myspell-en
- )
-"
-
-distutils_enable_tests pytest
-
-EPYTEST_DESELECT=(
- # https://github.com/pyenchant/pyenchant/issues/313
- tests/test_pwl.py::test_dwpwl
- tests/test_pwl.py::test_suggestions
-)
diff --git a/dev-python/pyenchant/pyenchant-3.3.0.ebuild b/dev-python/pyenchant/pyenchant-3.3.0.ebuild
deleted file mode 100644
index ec2b8e41d332..000000000000
--- a/dev-python/pyenchant/pyenchant-3.3.0.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 1999-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{13..14} )
-
-inherit distutils-r1
-
-DESCRIPTION="Python bindings for the Enchant spellchecking system"
-HOMEPAGE="
- https://github.com/pyenchant/pyenchant/
- https://pypi.org/project/pyenchant/
-"
-SRC_URI="
- https://github.com/pyenchant/pyenchant/archive/v${PV}.tar.gz
- -> ${P}.gh.tar.gz
-"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~mips ~ppc ppc64 ~riscv ~s390 ~sparc x86"
-
-RDEPEND="
- app-text/enchant:*
-"
-BDEPEND="
- test? (
- app-dicts/myspell-en
- )
-"
-
-EPYTEST_PLUGINS=()
-distutils_enable_tests pytest