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 8804713835A for ; Mon, 11 May 2020 17:33:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 26CFAE089D; Mon, 11 May 2020 17:33:29 +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-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 1124CE089A for ; Mon, 11 May 2020 17:33: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 CCFDC34FC29 for ; Mon, 11 May 2020 17:33:27 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B199C24C for ; Mon, 11 May 2020 17:33:23 +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: <1589218397.1b3788c4a600a208c31cf941e9320a0aa20d35c7.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/poyo/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/poyo/Manifest dev-python/poyo/poyo-0.4.1.ebuild X-VCS-Directories: dev-python/poyo/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 1b3788c4a600a208c31cf941e9320a0aa20d35c7 X-VCS-Branch: master Date: Mon, 11 May 2020 17:33:23 +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: a1d1ba12-bfa9-4eee-9c8c-bcdbf955023e X-Archives-Hash: c9883b99f04c7f3e850b22658ac12ac9 commit: 1b3788c4a600a208c31cf941e9320a0aa20d35c7 Author: Michał Górny gentoo org> AuthorDate: Mon May 11 17:31:49 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Mon May 11 17:33:17 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1b3788c4 dev-python/poyo: Remove old Signed-off-by: Michał Górny gentoo.org> dev-python/poyo/Manifest | 1 - dev-python/poyo/poyo-0.4.1.ebuild | 24 ------------------------ 2 files changed, 25 deletions(-) diff --git a/dev-python/poyo/Manifest b/dev-python/poyo/Manifest index 21d39a1780f..963ddcac193 100644 --- a/dev-python/poyo/Manifest +++ b/dev-python/poyo/Manifest @@ -1,2 +1 @@ -DIST poyo-0.4.1.tar.gz 10960 BLAKE2B 0020e10e3d29978398930a861352138bc11c491f70cae864618734a1382470a7df6d865de89bac144535db391022748559db874f6325e64430abbc3ff52420f7 SHA512 e2dfc504ec9cea8e43363556b875f9b01fbda506ee8e70916d4a018941e4e347a4e8a78a245f980b9c41b20731948fc9e5e131b415856b31593e44b805acc768 DIST poyo-0.5.0.tar.gz 15276 BLAKE2B 515e04ee365036c96646e1d7aeae273d541298d4d817713e04c4b8be5d7dd12938099a5ed8ab1dfd137d3ff0108a0e86163b99135ea2aa739eaae67ef74484c2 SHA512 aad4334a2aaf63cafab0ecdbdd6f94e9e3d412e6476d7ac13a4399b4af0f43b1eb910e6a3cc7438e84262bc39413fadbe91674534e1e66f446d738c1328b9905 diff --git a/dev-python/poyo/poyo-0.4.1.ebuild b/dev-python/poyo/poyo-0.4.1.ebuild deleted file mode 100644 index 243b2cf344d..00000000000 --- a/dev-python/poyo/poyo-0.4.1.ebuild +++ /dev/null @@ -1,24 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -PYTHON_COMPAT=( python3_6 ) -inherit distutils-r1 - -DESCRIPTION="A lightweight YAML Parser for Python" -HOMEPAGE="https://github.com/hackebrot/poyo" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="amd64 ~x86" -IUSE="test" -RESTRICT="!test? ( test )" - -DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] - test? ( dev-python/pytest[${PYTHON_USEDEP}] )" - -python_test() { - py.test || die -}