From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1S7PXL-0003CE-Fw for garchives@archives.gentoo.org; Tue, 13 Mar 2012 11:05:03 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8C2E2E0ACD; Tue, 13 Mar 2012 11:04:51 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 5EC7DE0ACD for ; Tue, 13 Mar 2012 11:04:51 +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 BCE4C1B4053 for ; Tue, 13 Mar 2012 11:04:50 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 7F888E5402 for ; Tue, 13 Mar 2012 11:04:49 +0000 (UTC) From: "Alexys Jacob" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alexys Jacob" Message-ID: <1331636683.4f55713e5984df883affe3cd9ea16e407e23b68c.ultrabug@gentoo> Subject: [gentoo-commits] dev/ultrabug:master commit in: net-im/jsonbot/ X-VCS-Repository: dev/ultrabug X-VCS-Files: net-im/jsonbot/Manifest net-im/jsonbot/jsonbot-0.84.1.ebuild X-VCS-Directories: net-im/jsonbot/ X-VCS-Committer: ultrabug X-VCS-Committer-Name: Alexys Jacob X-VCS-Revision: 4f55713e5984df883affe3cd9ea16e407e23b68c X-VCS-Branch: master Date: Tue, 13 Mar 2012 11:04:49 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: 409ee1e7-e60d-49ab-926f-ccb7183400c3 X-Archives-Hash: e71df1710554ec3bca482afda8b22e82 commit: 4f55713e5984df883affe3cd9ea16e407e23b68c Author: Ultrabug gentoo org> AuthorDate: Tue Mar 13 11:04:43 2012 +0000 Commit: Alexys Jacob gentoo org> CommitDate: Tue Mar 13 11:04:43 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Ddev/ultrabug.git;a= =3Dcommit;h=3D4f55713e jsonbot initial commit --- net-im/jsonbot/Manifest | 2 + net-im/jsonbot/jsonbot-0.84.1.ebuild | 38 ++++++++++++++++++++++++++++= ++++++ 2 files changed, 40 insertions(+), 0 deletions(-) diff --git a/net-im/jsonbot/Manifest b/net-im/jsonbot/Manifest new file mode 100644 index 0000000..e7be2b2 --- /dev/null +++ b/net-im/jsonbot/Manifest @@ -0,0 +1,2 @@ +DIST jsb-0.84.1.tar.gz 1110298 RMD160 266ef42ef8309ae2249c990bf7f05cc55c= e09d55 SHA1 d5905fdb0180993bb3ebc13bae443f08bb3bb9ba SHA256 a7a1c6c0ea798= 3fe1d394e2067d3f3a61190a3cd91fb7d187f3239b5ffe3f95b +EBUILD jsonbot-0.84.1.ebuild 759 RMD160 c107fa27833b9f9ac045e7b05e1eed4f= 1a59455f SHA1 c12b9043f293ce2714deb18969afc96929e2af26 SHA256 98fe7cf1530= f45391952180c660f1b3fee5df19191ddd0af844ebad40d430938 diff --git a/net-im/jsonbot/jsonbot-0.84.1.ebuild b/net-im/jsonbot/jsonbo= t-0.84.1.ebuild new file mode 100644 index 0000000..41aeaa7 --- /dev/null +++ b/net-im/jsonbot/jsonbot-0.84.1.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=3D4 +PYTHON_DEPEND=3D"2" +MY_P=3D"jsb-${PV}" + +inherit distutils + +DESCRIPTION=3D"" +HOMEPAGE=3D"http://code.google.com/p/jsonbot/" +SRC_URI=3D"http://jsonbot.googlecode.com/files/${MY_P}.tar.gz" + +LICENSE=3D"MIT" +SLOT=3D"0" +KEYWORDS=3D"~amd64 ~x86" +IUSE=3D"" + +# Missing deps (will be bundled) : hapi, sleekxmpp +RDEPEND=3D"dev-python/beautifulsoup + dev-python/dnspython + dev-python/feedparser + dev-python/oauth + dev-python/pysqlite + dev-python/requests + dev-python/simplejson + >=3Dwww-servers/tornado-2.2" +DEPEND=3D"${RDEPEND} + dev-lang/python[sqlite] + dev-python/setuptools" + +S=3D"${WORKDIR}/${MY_P}" + +src_install() { + distutils_src_install + rm -rf "${D}"/usr/jsb/ +}