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 95692158020 for ; Sat, 10 Dec 2022 15:46:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DDEFAE07EE; Sat, 10 Dec 2022 15:46:24 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 C2F13E07EE for ; Sat, 10 Dec 2022 15:46:24 +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 A54E93412ED for ; Sat, 10 Dec 2022 15:46:23 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2E0ED77B for ; Sat, 10 Dec 2022 15:46:22 +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: <1670687174.80dba4e976d6dd2b66435569678cc6b308585c7a.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/html5-parser/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/html5-parser/html5-parser-0.4.10.ebuild X-VCS-Directories: dev-python/html5-parser/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 80dba4e976d6dd2b66435569678cc6b308585c7a X-VCS-Branch: master Date: Sat, 10 Dec 2022 15:46:22 +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: 5b65b5d8-6dd3-4e83-8b6b-b16b5ee5c778 X-Archives-Hash: 30defa646ca85b1fbaca89c2705cda71 commit: 80dba4e976d6dd2b66435569678cc6b308585c7a Author: Michał Górny gentoo org> AuthorDate: Sat Dec 10 15:43:17 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat Dec 10 15:46:14 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=80dba4e9 dev-python/html5-parser: Remove old Signed-off-by: Michał Górny gentoo.org> dev-python/html5-parser/html5-parser-0.4.10.ebuild | 37 ---------------------- 1 file changed, 37 deletions(-) diff --git a/dev-python/html5-parser/html5-parser-0.4.10.ebuild b/dev-python/html5-parser/html5-parser-0.4.10.ebuild deleted file mode 100644 index f0bb97ed5d38..000000000000 --- a/dev-python/html5-parser/html5-parser-0.4.10.ebuild +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 -PYTHON_COMPAT=( python3_{8..10} ) - -inherit distutils-r1 toolchain-funcs - -DESCRIPTION="Fast C based HTML 5 parsing for python" -HOMEPAGE="https://github.com/kovidgoyal/html5-parser/" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="amd64 ~arm x86" -IUSE="" - -BDEPEND=" - virtual/pkgconfig -" -DEPEND="dev-libs/libxml2:=" -RDEPEND="${DEPEND} - dev-python/chardet[${PYTHON_USEDEP}] - >=dev-python/lxml-3.8.0[${PYTHON_USEDEP}]" - -distutils_enable_tests setup.py - -src_prepare() { - # Soup is not used when lxml is available. - rm test/soup.py || die - sed -i -e 's:-O3::' setup.py build.py || die - distutils-r1_src_prepare -} - -src_configure() { - export PKGCONFIG_EXE=$(tc-getPKG_CONFIG) -}