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 53C66138350 for ; Wed, 5 Feb 2020 14:24:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6A1ABE0BBA; Wed, 5 Feb 2020 14:24:33 +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 3C9AEE0BBA for ; Wed, 5 Feb 2020 14:24:33 +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 58B6134E79C for ; Wed, 5 Feb 2020 14:24:32 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9B08912F for ; Wed, 5 Feb 2020 14:24:29 +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: <1580912658.ca6fdbc6664d3079c3129ee4caede9973b8bbf17.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/tweepy/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/tweepy/Manifest dev-python/tweepy/tweepy-2.3.ebuild X-VCS-Directories: dev-python/tweepy/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: ca6fdbc6664d3079c3129ee4caede9973b8bbf17 X-VCS-Branch: master Date: Wed, 5 Feb 2020 14:24:29 +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: 117d6479-a3f2-4c68-a78a-0ee38f37662a X-Archives-Hash: 9cbad48dc348f61f5d1a51b722fd3b54 commit: ca6fdbc6664d3079c3129ee4caede9973b8bbf17 Author: Michał Górny gentoo org> AuthorDate: Wed Feb 5 14:21:16 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Wed Feb 5 14:24:18 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ca6fdbc6 dev-python/tweepy: Remove old (py2) Signed-off-by: Michał Górny gentoo.org> dev-python/tweepy/Manifest | 1 - dev-python/tweepy/tweepy-2.3.ebuild | 52 ------------------------------------- 2 files changed, 53 deletions(-) diff --git a/dev-python/tweepy/Manifest b/dev-python/tweepy/Manifest index 30347596037..2ecd1b2ab64 100644 --- a/dev-python/tweepy/Manifest +++ b/dev-python/tweepy/Manifest @@ -1,2 +1 @@ -DIST tweepy-2.3.tar.gz 52352 BLAKE2B 6853f133e73d8a97d5a2326ef6c877a527fad87ba9767e6ee218efcb84f6b8332d4f66b044b572987e71d4d9dd8a7b743c7976cfa9947101f0df5c6f9de5d1c4 SHA512 23317a507174e108cf8d13232aa467d892aba1789ee4f610eef4f5503b045841b5c85e8ae63ddcfd1e07178afbf3bf9f4a9fed939426411a8566f1c949b9b831 DIST tweepy-3.5.0.tar.gz 24348 BLAKE2B ea9d96abe4f364e1f77a97ce28fcd4fca3224ab307698e59a834c20becfa53ab68851e638946085431ef2edc1a4e3bf4f42a113c2ac41561930b7f4638e5d6c4 SHA512 cf87f0b7dea0ca444c17a3fdb9c2ebef814683c110511876c1997630b3202393276d3dd2de3b37fc21eb7a15382d22cc886109bda5a11b3d06a08081704c8c2a diff --git a/dev-python/tweepy/tweepy-2.3.ebuild b/dev-python/tweepy/tweepy-2.3.ebuild deleted file mode 100644 index 810587b0125..00000000000 --- a/dev-python/tweepy/tweepy-2.3.ebuild +++ /dev/null @@ -1,52 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -PYTHON_COMPAT=( python2_7 ) -PYTHON_REQ_USE="ssl(+)" - -inherit distutils-r1 vcs-snapshot - -DESCRIPTION="A Python library for accessing the Twitter API " -HOMEPAGE="https://www.tweepy.org/" -SRC_URI="https://github.com/tweepy/${PN}/tarball/${PV} -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="doc examples test" - -# online tests -RESTRICT="test" - -DEPEND=" - dev-python/setuptools[${PYTHON_USEDEP}] - test? ( - dev-python/httreplay[${PYTHON_USEDEP}] - dev-python/nose[${PYTHON_USEDEP}] - )" - -python_prepare_all() { - # Required to avoid file collisions at install - sed \ - -e "/find_packages/s:]:,'tests.*','examples']:g" \ - -i setup.py || die - distutils-r1_python_prepare_all -} - -python_test() { - nosetests -v \ - tests.test_api tests.test_streaming \ - tests.test_cursors tests.test_utils || die -} - -python_compile_all() { - use doc && emake -C docs html -} - -python_install_all() { - use doc && local HTML_DOCS=( docs/_build/html/. ) - use examples && local EXAMPLES=( examples/. ) - distutils-r1_python_install_all -}