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 826E1138334 for ; Sun, 29 Dec 2019 08:53:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B811DE0B1E; Sun, 29 Dec 2019 08:53:29 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9F5D1E0B1E for ; Sun, 29 Dec 2019 08:53:29 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B992634DCB2 for ; Sun, 29 Dec 2019 08:53:28 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D92987C for ; Sun, 29 Dec 2019 08:53:24 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1577609572.bdc6a162ba45082568b1f5f13a407d9ef88dc818.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/tinycss/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/tinycss/Manifest dev-python/tinycss/tinycss-0.3.ebuild X-VCS-Directories: dev-python/tinycss/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: bdc6a162ba45082568b1f5f13a407d9ef88dc818 X-VCS-Branch: master Date: Sun, 29 Dec 2019 08:53:24 +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: 4cc5c997-85f5-4f46-ad64-4e93cb2bd3e2 X-Archives-Hash: 658336baf9a10794a5164ff5dd834305 commit: bdc6a162ba45082568b1f5f13a407d9ef88dc818 Author: David Seifert gentoo org> AuthorDate: Sun Dec 29 08:52:52 2019 +0000 Commit: David Seifert gentoo org> CommitDate: Sun Dec 29 08:52:52 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bdc6a162 dev-python/tinycss: Remove old Package-Manager: Portage-2.3.83, Repoman-2.3.20 Signed-off-by: David Seifert gentoo.org> dev-python/tinycss/Manifest | 1 - dev-python/tinycss/tinycss-0.3.ebuild | 31 ------------------------------- 2 files changed, 32 deletions(-) diff --git a/dev-python/tinycss/Manifest b/dev-python/tinycss/Manifest index b39b29d9134..34f2117f12b 100644 --- a/dev-python/tinycss/Manifest +++ b/dev-python/tinycss/Manifest @@ -1,2 +1 @@ -DIST tinycss-0.3.tar.gz 72860 BLAKE2B 5f87145116f779955fc9557d6c983b6fc8848a413fe5348271c9476e7dc2a841feef5366d4606c9a0619b9a93bee2a1b30b7a46a4ddc720664993928561903c3 SHA512 1fdf29777ee7b3ef39cf2169d8f464a7e5aea850de8a7976acf3ed9e73e831ea0d7ee52b4c8c9979b2263509cbffe1bde85cf6da178ddeaac9009ace7a2b4441 DIST tinycss-0.4.tar.gz 87759 BLAKE2B 9b7691f5d5fcfb5580a9f2a0f1f50caea3dba74853917e5e46ca93cab6f35f2f8c4f5babf01d25661d05ef1b26ccc35914750917fb92b394b0ca6530a19f3514 SHA512 13a50332cddc28026fd7ecc007e14085976284e69de6ea93d1013502fd9791694092c010947b13dcd23f3a2df65f277f62410abd90d03eac16fa5af913673b0a diff --git a/dev-python/tinycss/tinycss-0.3.ebuild b/dev-python/tinycss/tinycss-0.3.ebuild deleted file mode 100644 index c034db866ca..00000000000 --- a/dev-python/tinycss/tinycss-0.3.ebuild +++ /dev/null @@ -1,31 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -PYTHON_COMPAT=( python{2_7,3_5} ) - -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" -IUSE="" - -RDEPEND="dev-python/lxml[${PYTHON_USEDEP}]" -DEPEND="${RDEPEND}" - -DOCS=( CHANGES README.rst ) - -python_test() { - export TINYCSS_SKIP_SPEEDUPS_TESTS=1 - local test - for test in ${PN}/tests/test_*.py; do - py.test $test - done -}