From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 50B9A138010 for ; Sat, 20 Oct 2012 10:24:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E84D721C069; Sat, 20 Oct 2012 10:24:13 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 740D721C073 for ; Sat, 20 Oct 2012 10:24:13 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id CF65333D7F4 for ; Sat, 20 Oct 2012 10:24:12 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 8191AE5441 for ; Sat, 20 Oct 2012 10:24:11 +0000 (UTC) From: "Gilles Dartiguelongue" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Gilles Dartiguelongue" Message-ID: <1350728535.56cffa5edb3dbe4866abebcb2a5bb239c9946821.eva@gentoo> Subject: [gentoo-commits] dev/eva:master commit in: dev-python/tweepy/ X-VCS-Repository: dev/eva X-VCS-Files: dev-python/tweepy/Manifest dev-python/tweepy/metadata.xml dev-python/tweepy/tweepy-1.11.ebuild X-VCS-Directories: dev-python/tweepy/ X-VCS-Committer: eva X-VCS-Committer-Name: Gilles Dartiguelongue X-VCS-Revision: 56cffa5edb3dbe4866abebcb2a5bb239c9946821 X-VCS-Branch: master Date: Sat, 20 Oct 2012 10:24:11 +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: 9159b91b-5247-414f-8790-47aa15dff8a8 X-Archives-Hash: 983e8b8c13c82baf0eb0aea59662030b commit: 56cffa5edb3dbe4866abebcb2a5bb239c9946821 Author: Gilles Dartiguelongue gentoo org> AuthorDate: Sat Oct 20 10:22:15 2012 +0000 Commit: Gilles Dartiguelongue gentoo org> CommitDate: Sat Oct 20 10:22:15 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=dev/eva.git;a=commit;h=56cffa5e dev-python/tweepy: initial ebuild --- dev-python/tweepy/Manifest | 11 +++++++++++ dev-python/tweepy/metadata.xml | 8 ++++++++ dev-python/tweepy/tweepy-1.11.ebuild | 27 +++++++++++++++++++++++++++ 3 files changed, 46 insertions(+), 0 deletions(-) diff --git a/dev-python/tweepy/Manifest b/dev-python/tweepy/Manifest new file mode 100644 index 0000000..58e53b3 --- /dev/null +++ b/dev-python/tweepy/Manifest @@ -0,0 +1,11 @@ +-----BEGIN PGP SIGNED MESSAGE----- +Hash: SHA512 + +DIST tweepy-1.11.tar.gz 21743 SHA256 2b9fa225e9254e2cbbb01e59c6e92d9c42e5d41d97e8c74dee93eb09babffde5 SHA512 fc7324a1ce5eb9021f30a5daf3a0d5177cfe925a5bdd6cdcda51a2171df0464eb4f2ca664eec43be29408f7f4821eb25f6afdca3f1c4abde894783880fe91b43 WHIRLPOOL f836b7afb31c6aab7f37b10e6741585e825b1faece2ab5ce511ecd63b8d116235b190cf98b8f8e8f4ee9ad43e5b802c32b3707491a6a00572ed1aac446f76647 +-----BEGIN PGP SIGNATURE----- +Version: GnuPG v2.0.19 (GNU/Linux) + +iEYEAREKAAYFAlCCe1cACgkQ1fmVwcYIWAbAkQCgtuHbEBpWpNwep1sYYrPFRq6T +Dv8AoNf3AF8r0Sqf5SVWtqG+788Xew9u +=SjmL +-----END PGP SIGNATURE----- diff --git a/dev-python/tweepy/metadata.xml b/dev-python/tweepy/metadata.xml new file mode 100644 index 0000000..23310c6 --- /dev/null +++ b/dev-python/tweepy/metadata.xml @@ -0,0 +1,8 @@ + + + + + eva@gentoo.org + Gilles Dartiguelongue + + diff --git a/dev-python/tweepy/tweepy-1.11.ebuild b/dev-python/tweepy/tweepy-1.11.ebuild new file mode 100644 index 0000000..16df12b --- /dev/null +++ b/dev-python/tweepy/tweepy-1.11.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI="4" + +PYTHON_COMPAT=( python2_5 python2_6 python2_7 ) + +inherit distutils-r1 + +DESCRIPTION="Twitter library for python" +HOMEPAGE="http://github.com/tweepy/tweepy" +SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND=" + dev-python/simplejson +" +DEPEND="${RDEPEND} + dev-python/setuptools +" + +DOCS=( README )