From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id DDB55158091 for ; Fri, 17 Jun 2022 04:54:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 56187E0942; Fri, 17 Jun 2022 04:54:55 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 240ACE0942 for ; Fri, 17 Jun 2022 04:54:55 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D4792342190 for ; Fri, 17 Jun 2022 04:54:53 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2979A510 for ; Fri, 17 Jun 2022 04:54:51 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1655441682.70ba53136ef0295647bdb19c648b9e8abbc8cdcf.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/whoosh/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/whoosh/whoosh-2.7.4-r1.ebuild X-VCS-Directories: dev-python/whoosh/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 70ba53136ef0295647bdb19c648b9e8abbc8cdcf X-VCS-Branch: master Date: Fri, 17 Jun 2022 04:54:51 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: d01f2c0a-63de-4e5c-abc9-b8a945c4b6c4 X-Archives-Hash: cf9cb9fead7638cb69dcc089176727b9 commit: 70ba53136ef0295647bdb19c648b9e8abbc8cdcf Author: Michał Górny gentoo org> AuthorDate: Fri Jun 17 04:17:55 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Fri Jun 17 04:54:42 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=70ba5313 dev-python/whoosh: Remove old Signed-off-by: Michał Górny gentoo.org> dev-python/whoosh/whoosh-2.7.4-r1.ebuild | 35 -------------------------------- 1 file changed, 35 deletions(-) diff --git a/dev-python/whoosh/whoosh-2.7.4-r1.ebuild b/dev-python/whoosh/whoosh-2.7.4-r1.ebuild deleted file mode 100644 index 0630af64ea82..000000000000 --- a/dev-python/whoosh/whoosh-2.7.4-r1.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{8..10} pypy3 ) - -inherit distutils-r1 - -DESCRIPTION="Fast, pure-Python full text indexing, search and spell checking library" -HOMEPAGE="https://pypi.org/project/Whoosh/" -SRC_URI="mirror://pypi/W/${PN^}/${P^}.tar.gz" -S="${WORKDIR}/${P^}" - -LICENSE="BSD-2" -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~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 - -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 - # TODO: broken? - sed -i -e 's:test_minimize_dfa:_&:' tests/test_automata.py || die - - distutils-r1_python_prepare_all -}