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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 2DDCF158087 for ; Sun, 17 Oct 2021 07:41:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 64FA7E0844; Sun, 17 Oct 2021 07:41:56 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 4E4D3E0844 for ; Sun, 17 Oct 2021 07:41:56 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1610E3433A4 for ; Sun, 17 Oct 2021 07:41:55 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C1834163 for ; Sun, 17 Oct 2021 07:41:53 +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: <1634456487.f04fcd031766d76099ba5416e7f0e497fbf9fca1.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/css-parser/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/css-parser/Manifest dev-python/css-parser/css-parser-1.0.4-r1.ebuild X-VCS-Directories: dev-python/css-parser/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: f04fcd031766d76099ba5416e7f0e497fbf9fca1 X-VCS-Branch: master Date: Sun, 17 Oct 2021 07:41:53 +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: 4fc36b5e-e920-4391-8462-0d0f488151f0 X-Archives-Hash: cfbff8528365fa45efaa570146dd9b75 commit: f04fcd031766d76099ba5416e7f0e497fbf9fca1 Author: Michał Górny gentoo org> AuthorDate: Sun Oct 17 07:35:02 2021 +0000 Commit: Michał Górny gentoo org> CommitDate: Sun Oct 17 07:41:27 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f04fcd03 dev-python/css-parser: Remove old Signed-off-by: Michał Górny gentoo.org> dev-python/css-parser/Manifest | 1 - dev-python/css-parser/css-parser-1.0.4-r1.ebuild | 22 ---------------------- 2 files changed, 23 deletions(-) diff --git a/dev-python/css-parser/Manifest b/dev-python/css-parser/Manifest index 610aec31c95..b5d8276dd81 100644 --- a/dev-python/css-parser/Manifest +++ b/dev-python/css-parser/Manifest @@ -1,2 +1 @@ -DIST css-parser-1.0.4.tar.gz 143977 BLAKE2B 94a42d751a90d306b0dd2d503d8d9c326509b438d1f52b5567e6f6db7d80e7a6d2c37cbfa0db79225cc4d0fd5df612b3e430fa1c62604a2f8990d20678019af0 SHA512 3781128e55c1e72aa00369873e214f683e3f42944ae83d399697adb7d2966f68fb500c39982845ce9cd06078e4021838d82b06f99d90938069371da8a89a0857 DIST css-parser-1.0.6.tar.gz 336932 BLAKE2B 00cfc4597137c0aa6af3cc8a72fa3e59a1d7b83210668c8421c0703a4a38d05d73f691ff00ffac14025f021a10f85c1d3697778794d23f75db381f5e63e24b7d SHA512 4c623541e1145c91458e7e2028f6a0de652ae2189dc99672fc72f098799d6349edb051bafc0901258481fa3422346303d2ef634392889ee83a29814609cdbd43 diff --git a/dev-python/css-parser/css-parser-1.0.4-r1.ebuild b/dev-python/css-parser/css-parser-1.0.4-r1.ebuild deleted file mode 100644 index c3ab77e5576..00000000000 --- a/dev-python/css-parser/css-parser-1.0.4-r1.ebuild +++ /dev/null @@ -1,22 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -PYTHON_COMPAT=( python3_{7,8,9} ) - -inherit distutils-r1 - -DESCRIPTION="A CSS Cascading Style Sheets library (fork of cssutils)" -HOMEPAGE="https://pypi.org/project/css-parser/" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="LGPL-2.1+" -SLOT="0" -KEYWORDS="amd64 ~arm x86" - -# Tests fail under network-sandbox. -RESTRICT+=" test" - -python_test() { - esetup.py test || die "tests failed under ${EPYTHON}" -}