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 B871C139455 for ; Fri, 28 Oct 2016 01:35:07 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1FD6F21C012; Fri, 28 Oct 2016 01:35:04 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id EB31621C012 for ; Fri, 28 Oct 2016 01:35:03 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id DE5DC341494 for ; Fri, 28 Oct 2016 01:35:02 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C5CFA244E for ; Fri, 28 Oct 2016 01:35:00 +0000 (UTC) From: "Mike Gilbert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Gilbert" Message-ID: <1477618385.e334e9c27e7bc0c352cd40a71854ced6626067e6.floppym@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/asyncio/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/asyncio/Manifest dev-python/asyncio/asyncio-3.4.2.ebuild dev-python/asyncio/asyncio-3.4.3.ebuild dev-python/asyncio/metadata.xml X-VCS-Directories: dev-python/asyncio/ X-VCS-Committer: floppym X-VCS-Committer-Name: Mike Gilbert X-VCS-Revision: e334e9c27e7bc0c352cd40a71854ced6626067e6 X-VCS-Branch: master Date: Fri, 28 Oct 2016 01:35:00 +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-Archives-Salt: 2ba09184-57d4-4f1d-9e74-e76c660ce274 X-Archives-Hash: 66576595abe58aade9228ac10c46987e commit: e334e9c27e7bc0c352cd40a71854ced6626067e6 Author: Mike Gilbert gentoo org> AuthorDate: Fri Oct 28 01:04:41 2016 +0000 Commit: Mike Gilbert gentoo org> CommitDate: Fri Oct 28 01:33:05 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e334e9c2 dev-python/asyncio: remove dev-python/asyncio/Manifest | 2 -- dev-python/asyncio/asyncio-3.4.2.ebuild | 21 --------------------- dev-python/asyncio/asyncio-3.4.3.ebuild | 26 -------------------------- dev-python/asyncio/metadata.xml | 19 ------------------- 4 files changed, 68 deletions(-) diff --git a/dev-python/asyncio/Manifest b/dev-python/asyncio/Manifest deleted file mode 100644 index 80831c6..00000000 --- a/dev-python/asyncio/Manifest +++ /dev/null @@ -1,2 +0,0 @@ -DIST asyncio-3.4.2.tar.gz 179696 SHA256 f9cb785691c1c48e4537bdd26d189d56335cc80ce4a77a4301e077ab8adea880 SHA512 b56fd9b613ffee901f9db39152b8c6495383788fa4466c32acc7509072cae95ec86839ec04500f535ae86de90cadfb77bff37e32d11a5c4091d83c9e2eec7f28 WHIRLPOOL 6adc52f1683efc7b7f1bef8ac5676b211bf069536c85d3c0d519470a636f7ba9ce512d01def22884dd3b14e9a730ecdaadf9efe33e1912e2bd2fb5020573dee7 -DIST asyncio-3.4.3.tar.gz 204411 SHA256 83360ff8bc97980e4ff25c964c7bd3923d333d177aa4f7fb736b019f26c7cb41 SHA512 42077cbbae3d67e6e45224cc1996f1aaaff137cdc5c8679ba830fd66098d1e9d8c05e315c8d2ef1add2f504ab769bd339e5d8ae2f7532d423282baca2d383736 WHIRLPOOL c5ad9e02a5cfb71335e7ddf46039a3245ea9aad78c8d47e3712ea20aa21b1a01ce52ad31b6166357c4e43230f15cb566ab752ac3ae702d53111767b7b278ba44 diff --git a/dev-python/asyncio/asyncio-3.4.2.ebuild b/dev-python/asyncio/asyncio-3.4.2.ebuild deleted file mode 100644 index f350927..00000000 --- a/dev-python/asyncio/asyncio-3.4.2.ebuild +++ /dev/null @@ -1,21 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 - -PYTHON_COMPAT=( python3_3 ) - -inherit distutils-r1 - -DESCRIPTION="reference implementation of PEP 3156" -HOMEPAGE="https://pypi.python.org/pypi/asyncio https://github.com/python/asyncio" -SRC_URI="mirror://pypi/a/${PN}/${P}.tar.gz" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 ~s390 ~sh ~sparc x86" -IUSE="" - -RDEPEND="" -DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" diff --git a/dev-python/asyncio/asyncio-3.4.3.ebuild b/dev-python/asyncio/asyncio-3.4.3.ebuild deleted file mode 100644 index b6bc2fb..00000000 --- a/dev-python/asyncio/asyncio-3.4.3.ebuild +++ /dev/null @@ -1,26 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 - -PYTHON_COMPAT=( python3_3 ) - -inherit distutils-r1 - -DESCRIPTION="reference implementation of PEP 3156" -HOMEPAGE="https://pypi.python.org/pypi/asyncio https://github.com/python/asyncio" -SRC_URI="mirror://pypi/a/${PN}/${P}.tar.gz" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" -IUSE="" - -RDEPEND="" -DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" - -python_test() { - ${PYTHON} runtests.py || die - PYTHONASYNCIODEBUG=1 ${PYTHON} runtests.py || die -} diff --git a/dev-python/asyncio/metadata.xml b/dev-python/asyncio/metadata.xml deleted file mode 100644 index fb7268c..00000000 --- a/dev-python/asyncio/metadata.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - prometheanfire@gentoo.org - Matthew Thode - - - python@gentoo.org - Python - - -reference implementation of PEP 3156 - - - asyncio - python/asyncio - -