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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id B198915808B for ; Thu, 31 Mar 2022 14:08:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2026EE0826; Thu, 31 Mar 2022 14:08:27 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 96EFDE0826 for ; Thu, 31 Mar 2022 14:08:26 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B29083417FA for ; Thu, 31 Mar 2022 14:08:24 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 21EC436B for ; Thu, 31 Mar 2022 14:08:22 +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: <1648735529.b847c13e7c9d0a2ec1d93e80fb15490b2070f8fe.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/twython/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/twython/twython-3.9.1.ebuild X-VCS-Directories: dev-python/twython/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: b847c13e7c9d0a2ec1d93e80fb15490b2070f8fe X-VCS-Branch: master Date: Thu, 31 Mar 2022 14:08:22 +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: a50e6532-89c9-4959-83a0-2f9ec5fb1bd1 X-Archives-Hash: f2746545b2f69e4a968f6abf62fbe8ac commit: b847c13e7c9d0a2ec1d93e80fb15490b2070f8fe Author: Michał Górny gentoo org> AuthorDate: Thu Mar 31 14:05:29 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Thu Mar 31 14:05:29 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b847c13e dev-python/twython: Remove old Signed-off-by: Michał Górny gentoo.org> dev-python/twython/twython-3.9.1.ebuild | 37 --------------------------------- 1 file changed, 37 deletions(-) diff --git a/dev-python/twython/twython-3.9.1.ebuild b/dev-python/twython/twython-3.9.1.ebuild deleted file mode 100644 index 3562cdc0d51a..000000000000 --- a/dev-python/twython/twython-3.9.1.ebuild +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{8..10} ) -inherit distutils-r1 - -DESCRIPTION="An easy way to access Twitter data with Python" -HOMEPAGE="https://github.com/ryanmcgrath/twython" -SRC_URI=" - https://github.com/ryanmcgrath/twython/archive/v${PV}.tar.gz - -> ${P}.gh.tar.gz" - -SLOT="0" -LICENSE="MIT" -KEYWORDS="amd64 x86" - -RDEPEND=" - >=dev-python/requests-2.1.0[${PYTHON_USEDEP}] - >=dev-python/requests-oauthlib-0.4.0[${PYTHON_USEDEP}]" -BDEPEND=" - test? ( dev-python/responses[${PYTHON_USEDEP}] )" - -distutils_enable_tests pytest - -python_test() { - local deselect=( - # tests are largely unmaintained and outdated - tests/test_core.py::TwythonAPITestCase::test_get_lastfunction_header_should_return_header - tests/test_core.py::TwythonAPITestCase::test_request_should_handle_400_for_missing_auth_data - tests/test_core.py::TwythonAPITestCase::test_request_should_handle_400_that_is_not_auth_related - tests/test_core.py::TwythonAPITestCase::test_request_should_handle_401 - tests/test_core.py::TwythonAPITestCase::test_request_should_handle_rate_limit - ) - epytest ${deselect[@]/#/--deselect } -}