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 E5CB81382C5 for ; Mon, 28 Dec 2020 16:33:59 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2E732E0AF4; Mon, 28 Dec 2020 16:33:59 +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 0C9D3E0AF4 for ; Mon, 28 Dec 2020 16:33:58 +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 A211634156A for ; Mon, 28 Dec 2020 16:33:57 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0B8DD49 for ; Mon, 28 Dec 2020 16:33:56 +0000 (UTC) From: "David Roman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Roman" Message-ID: <1609173227.38fe3b544b3722a8e6338e3f99961ce423cc2630.davidroman@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-python/tweepy/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-python/tweepy/Manifest dev-python/tweepy/metadata.xml dev-python/tweepy/tweepy-3.10.0.ebuild X-VCS-Directories: dev-python/tweepy/ X-VCS-Committer: davidroman X-VCS-Committer-Name: David Roman X-VCS-Revision: 38fe3b544b3722a8e6338e3f99961ce423cc2630 X-VCS-Branch: dev Date: Mon, 28 Dec 2020 16:33:56 +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: fac0c0ec-00b6-411a-a2ba-5393a3b8cb18 X-Archives-Hash: 46b17af5604fcf36eaaa537d45a70f1b commit: 38fe3b544b3722a8e6338e3f99961ce423cc2630 Author: David Roman gmail com> AuthorDate: Mon Dec 28 16:33:47 2020 +0000 Commit: David Roman gmail com> CommitDate: Mon Dec 28 16:33:47 2020 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=38fe3b54 dev-python/tweepy: new package Package-Manager: Portage-3.0.12, Repoman-3.0.2 Signed-off-by: David Roman gmail.com> dev-python/tweepy/Manifest | 1 + dev-python/tweepy/metadata.xml | 8 ++++++++ dev-python/tweepy/tweepy-3.10.0.ebuild | 31 +++++++++++++++++++++++++++++++ 3 files changed, 40 insertions(+) diff --git a/dev-python/tweepy/Manifest b/dev-python/tweepy/Manifest new file mode 100644 index 00000000..ec123676 --- /dev/null +++ b/dev-python/tweepy/Manifest @@ -0,0 +1 @@ +DIST tweepy-3.10.0.tar.gz 459678 BLAKE2B 8ed612e9a0ad0892110658c94bcf70ec3da4219c74fe9e4600bebd8ce16a81ef03461924aa9d170ccf3ae9127cfa0bc35a7d36a4b379b44ab5557eba8d30972c SHA512 2a40875c5612902e4ff69e6fdf73e9fa10b93a80bf4160b16e44e2dae058a90f86569b3a4bcb67a7acdf5c9c3119ce7ca35a3ae64e393181b78fde10dfd975b5 diff --git a/dev-python/tweepy/metadata.xml b/dev-python/tweepy/metadata.xml new file mode 100644 index 00000000..01c1fc84 --- /dev/null +++ b/dev-python/tweepy/metadata.xml @@ -0,0 +1,8 @@ + + + + + davidroman96@gmail.com + David Roman + + diff --git a/dev-python/tweepy/tweepy-3.10.0.ebuild b/dev-python/tweepy/tweepy-3.10.0.ebuild new file mode 100644 index 00000000..a3189e9d --- /dev/null +++ b/dev-python/tweepy/tweepy-3.10.0.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{6,7,8} ) + +inherit distutils-r1 + +DESCRIPTION="An easy-to-use Python library for accessing the Twitter API." +HOMEPAGE="https://www.tweepy.org/" +SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +KEYWORDS="~amd64" +LICENSE="MIT" +SLOT="0" + +RDEPEND=" + dev-python/requests[${PYTHON_USEDEP},socks5] + dev-python/requests-oauthlib[${PYTHON_USEDEP}] +" + +DEPEND=" + ${RDEPEND} + test? ( + dev-python/mock[${PYTHON_USEDEP}] + dev-python/vcrpy[${PYTHON_USEDEP}] + ) +" + +distutils_enable_tests nose