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 D483A158091 for ; Thu, 16 Jun 2022 11:47:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D2F3AE092B; Thu, 16 Jun 2022 11:47:18 +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 B7259E092B for ; Thu, 16 Jun 2022 11:47:18 +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 0008B341FD9 for ; Thu, 16 Jun 2022 11:47:17 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 889DE512 for ; Thu, 16 Jun 2022 11:47:15 +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: <1655380030.a55fa76b45965c702b980cbeb962c7396dad54ce.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/tinycss/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/tinycss/tinycss-0.4.ebuild X-VCS-Directories: dev-python/tinycss/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: a55fa76b45965c702b980cbeb962c7396dad54ce X-VCS-Branch: master Date: Thu, 16 Jun 2022 11:47:15 +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: 65f8a893-59fb-45e6-8672-0033ec045ce7 X-Archives-Hash: f207f02dcf91c3cf309c3bca49dd96df commit: a55fa76b45965c702b980cbeb962c7396dad54ce Author: Michał Górny gentoo org> AuthorDate: Thu Jun 16 11:45:08 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Thu Jun 16 11:47:10 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a55fa76b dev-python/tinycss: Remove old Signed-off-by: Michał Górny gentoo.org> dev-python/tinycss/tinycss-0.4.ebuild | 34 ---------------------------------- 1 file changed, 34 deletions(-) diff --git a/dev-python/tinycss/tinycss-0.4.ebuild b/dev-python/tinycss/tinycss-0.4.ebuild deleted file mode 100644 index 0a904322af03..000000000000 --- a/dev-python/tinycss/tinycss-0.4.ebuild +++ /dev/null @@ -1,34 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{8..10} ) - -inherit distutils-r1 - -DESCRIPTION="A complete yet simple CSS parser for Python" -HOMEPAGE="https://github.com/SimonSapin/tinycss/ - https://tinycss.readthedocs.io/en/latest/" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="amd64 x86" - -RDEPEND="dev-python/lxml[${PYTHON_USEDEP}]" - -DOCS=( CHANGES README.rst ) - -distutils_enable_tests pytest -distutils_enable_sphinx docs - -python_prepare_all() { - rm setup.cfg || die - distutils-r1_python_prepare_all -} - -python_test() { - export TINYCSS_SKIP_SPEEDUPS_TESTS=1 - epytest ${PN}/tests/test_*.py -}