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 2EABC138330 for ; Sun, 14 Jan 2018 23:53:59 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7C99CE09AD; Sun, 14 Jan 2018 23:53:57 +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 5C6E7E09AD for ; Sun, 14 Jan 2018 23:53:57 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 6EC39335C38 for ; Sun, 14 Jan 2018 23:53:56 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3533D126 for ; Sun, 14 Jan 2018 23:53:55 +0000 (UTC) From: "Zac Medico" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Zac Medico" Message-ID: <1515973994.fec60e7afeaa7c8ddfdbc1d77ec59c98da12f371.zmedico@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pycares/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pycares/Manifest dev-python/pycares/pycares-2.1.0.ebuild X-VCS-Directories: dev-python/pycares/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: fec60e7afeaa7c8ddfdbc1d77ec59c98da12f371 X-VCS-Branch: master Date: Sun, 14 Jan 2018 23:53:55 +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: 0a577eb6-18a4-4386-a1d3-f73b99bdc20d X-Archives-Hash: c113b50bcc2be3cc31f08255ba99f50e commit: fec60e7afeaa7c8ddfdbc1d77ec59c98da12f371 Author: Zac Medico gentoo org> AuthorDate: Sun Jan 14 23:53:14 2018 +0000 Commit: Zac Medico gentoo org> CommitDate: Sun Jan 14 23:53:14 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fec60e7a dev-python/pycares: remove old version 2.1.0 Package-Manager: Portage-2.3.19, Repoman-2.3.6 dev-python/pycares/Manifest | 1 - dev-python/pycares/pycares-2.1.0.ebuild | 25 ------------------------- 2 files changed, 26 deletions(-) diff --git a/dev-python/pycares/Manifest b/dev-python/pycares/Manifest index 9c2d7630d13..67dfbfad206 100644 --- a/dev-python/pycares/Manifest +++ b/dev-python/pycares/Manifest @@ -1,2 +1 @@ -DIST pycares-2.1.0.tar.gz 226838 BLAKE2B 3b08084bc8b5a1b697a3b26836aff0e69c18ae89bd01e9a3c9d542eca284ce6c1b6a0bfc9b01592587624e4cf86d2119a777464e71133ef869fd0063f80ef78a SHA512 189851a9488828eb41bd6adbefd14022ae8470bde98c1d1c21d67992acdf721e6a61c3d8d8b4f85fb420e1e0900c54e53893586d6f80cc822371260fc17e55c4 DIST pycares-2.1.1.tar.gz 226787 BLAKE2B 26716906e78a3fa16bcbd143f63e633ffe4664706b2230f698ea933c15d057f92a0fedc45927743690e9ef8f84191e40f4215878ff2845fd1fb4bcf91f49b765 SHA512 c3524a49f5abe4222c9371ca269918eecf30a77bd52258187766833b4663be861678ebe6f1cb2f50e824d36e75938162d5528abd5445c477f23fb85c24572403 diff --git a/dev-python/pycares/pycares-2.1.0.ebuild b/dev-python/pycares/pycares-2.1.0.ebuild deleted file mode 100644 index 0da15f536f5..00000000000 --- a/dev-python/pycares/pycares-2.1.0.ebuild +++ /dev/null @@ -1,25 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -PYTHON_COMPAT=( python{2_7,3_{4,5}} ) - -inherit distutils-r1 - -DESCRIPTION="Python interface for c-ares" -HOMEPAGE="https://github.com/saghul/pycares/" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="" -# Tests fail with network-sandbox, since they try to resolve google.com -RESTRICT="test" - -# uses bundled/patched c-ares -DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" - -python_test() { - "${PYTHON:-python}" tests/tests.py || die -}