summaryrefslogtreecommitdiff
path: root/dev-python/whoosh
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/whoosh
parentbfd9c39e4712ebdb442d4ca0673061faed1e70e1 (diff)
downloadbaldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.gz
baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.xz
baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.zip
Adding metadata
Diffstat (limited to 'dev-python/whoosh')
-rw-r--r--dev-python/whoosh/Manifest1
-rw-r--r--dev-python/whoosh/files/whoosh-2.7.4-tests-specify-utf8.patch13
-rw-r--r--dev-python/whoosh/metadata.xml20
-rw-r--r--dev-python/whoosh/whoosh-2.7.4-r2.ebuild41
4 files changed, 0 insertions, 75 deletions
diff --git a/dev-python/whoosh/Manifest b/dev-python/whoosh/Manifest
deleted file mode 100644
index d2554bed372e..000000000000
--- a/dev-python/whoosh/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST Whoosh-2.7.4.tar.gz 968741 BLAKE2B 698ec603eb1201f2b1a934785f84108cb5d91114c9a4e1943cfcd2c8c878f7fb0a0868d54d3a11f8aa30890179c555bdc11cbf34962f5f4781c6d43a090ba872 SHA512 7cdefdcf52b704ffe50c00718c42677e2ddfe879f81ad2d14b580b0e026cc0ebb6b9ddc99d8709eaff4eb9b83f654b042c8792821e1ed90aa85cfa6f82845074
diff --git a/dev-python/whoosh/files/whoosh-2.7.4-tests-specify-utf8.patch b/dev-python/whoosh/files/whoosh-2.7.4-tests-specify-utf8.patch
deleted file mode 100644
index 94636c199a4c..000000000000
--- a/dev-python/whoosh/files/whoosh-2.7.4-tests-specify-utf8.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-Python 2 requires specifying the file encoding
-See also:
-https://www.python.org/dev/peps/pep-0263/
-https://bugs.gentoo.org/show_bug.cgi?id=608324
-
---- a/tests/test_reading.py
-+++ b/tests/test_reading.py
-@@ -1,3 +1,5 @@
-+# -*- coding: utf-8 -*-
-+
- from __future__ import with_statement
- import random, threading, time
-
diff --git a/dev-python/whoosh/metadata.xml b/dev-python/whoosh/metadata.xml
deleted file mode 100644
index f0a019788d14..000000000000
--- a/dev-python/whoosh/metadata.xml
+++ /dev/null
@@ -1,20 +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>
- <stabilize-allarches/>
- <longdescription lang="en">
- Whoosh is a fast, featureful full-text indexing and searching
- library implemented in pure Python. Programmers can use it to
- easily add search functionality to their applications and websites.
- Every part of how Whoosh works can be extended or replaced to meet
- your needs exactly.
- </longdescription>
- <upstream>
- <remote-id type="github">mchaput/whoosh</remote-id>
- <remote-id type="pypi">Whoosh</remote-id>
- </upstream>
-</pkgmetadata>
diff --git a/dev-python/whoosh/whoosh-2.7.4-r2.ebuild b/dev-python/whoosh/whoosh-2.7.4-r2.ebuild
deleted file mode 100644
index a36337b1d8b9..000000000000
--- a/dev-python/whoosh/whoosh-2.7.4-r2.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYPI_NO_NORMALIZE=1
-PYPI_PN=${PN^}
-PYTHON_COMPAT=( python3_{13..14} )
-inherit distutils-r1 pypi
-
-DESCRIPTION="Fast, pure-Python full text indexing, search and spell checking library"
-HOMEPAGE="
- https://pypi.org/project/Whoosh/
- https://github.com/mchaput/whoosh
-"
-
-LICENSE="BSD-2"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 ~sparc x86 ~x64-solaris"
-
-PATCHES=(
- "${FILESDIR}"/${PN}-2.7.4-tests-specify-utf8.patch
-)
-
-distutils_enable_sphinx docs/source
-distutils_enable_tests pytest
-
-EPYTEST_DESELECT=(
- # TODO
- tests/test_automata.py::test_minimize_dfa
-)
-
-python_prepare_all() {
- # (backport from upstream)
- sed -i -e '/cmdclass/s:pytest:PyTest:' setup.py || die
- # fix old section name
- sed -i -e 's@\[pytest\]@[tool:pytest]@' setup.cfg || die
-
- distutils-r1_python_prepare_all
-}