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 1SgHTL-0000Kk-Hh for garchives@archives.gentoo.org; Sun, 17 Jun 2012 15:33:03 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C2F8EE0774; Sun, 17 Jun 2012 15:32:45 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 977CDE0774 for ; Sun, 17 Jun 2012 15:32:45 +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 021D91B4021 for ; Sun, 17 Jun 2012 15:32:45 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id B7C31E5430 for ; Sun, 17 Jun 2012 15:32:43 +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: <1339947142.6ac1fae8cee708574f3abb794eab6d10950a1414.ultrabug@gentoo> Subject: [gentoo-commits] dev/ultrabug:master commit in: dev-python/flask-pymongo/ X-VCS-Repository: dev/ultrabug X-VCS-Files: dev-python/flask-pymongo/Manifest dev-python/flask-pymongo/flask-pymongo-0.1.1.ebuild X-VCS-Directories: dev-python/flask-pymongo/ X-VCS-Committer: ultrabug X-VCS-Committer-Name: Alexys Jacob X-VCS-Revision: 6ac1fae8cee708574f3abb794eab6d10950a1414 X-VCS-Branch: master Date: Sun, 17 Jun 2012 15:32:43 +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: ec7e09aa-9816-40ea-b915-2f04d2c20895 X-Archives-Hash: f26dc77564b20a45658d93b0bfd3ae3f commit: 6ac1fae8cee708574f3abb794eab6d10950a1414 Author: Ultrabug ultrabug net> AuthorDate: Sun Jun 17 15:32:22 2012 +0000 Commit: Alexys Jacob gentoo org> CommitDate: Sun Jun 17 15:32:22 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Ddev/ultrabug.git;a= =3Dcommit;h=3D6ac1fae8 flask-pymongo ebuild --- dev-python/flask-pymongo/Manifest | 2 + .../flask-pymongo/flask-pymongo-0.1.1.ebuild | 56 ++++++++++++++= ++++++ 2 files changed, 58 insertions(+), 0 deletions(-) diff --git a/dev-python/flask-pymongo/Manifest b/dev-python/flask-pymongo= /Manifest new file mode 100644 index 0000000..56f7239 --- /dev/null +++ b/dev-python/flask-pymongo/Manifest @@ -0,0 +1,2 @@ +DIST Flask-PyMongo-0.1.1.tar.gz 7075 RMD160 9c35769fdfa6e3d29e6ae3d5b5b0= d20adbb1221e SHA1 4ba6a58f6d592f3219b327646158879fb8c2c5cc SHA256 18b3b66= 9d8ab4054a8d301ca145d7e735b7be70cb5a90efd0190fbbefcb218aa +EBUILD flask-pymongo-0.1.1.ebuild 1153 RMD160 13c496b3a043d023c9312addc6= 1a9c5b950eda7e SHA1 dfaa809b197eac9abc4edd531bfe8163a9b622c6 SHA256 448d8= e1f6dd37a8b848088e0edda46b912c65888d503417d50e2935700dacdd5 diff --git a/dev-python/flask-pymongo/flask-pymongo-0.1.1.ebuild b/dev-py= thon/flask-pymongo/flask-pymongo-0.1.1.ebuild new file mode 100644 index 0000000..6fa8552 --- /dev/null +++ b/dev-python/flask-pymongo/flask-pymongo-0.1.1.ebuild @@ -0,0 +1,56 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=3D"3" +PYTHON_DEPEND=3D"2:2.5" +SUPPORT_PYTHON_ABIS=3D"1" +RESTRICT_PYTHON_ABIS=3D"2.4 3.*" +DISTUTILS_SRC_TEST=3D"nosetests" + +inherit distutils + +MY_PN=3D"Flask-PyMongo" +MY_P=3D"${MY_PN}-${PV}" + +DESCRIPTION=3D"PyMongo support for Flask" +HOMEPAGE=3D"http://pypi.python.org/pypi/Flask-PyMongo" +SRC_URI=3D"mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz" + +LICENSE=3D"BSD" +SLOT=3D"0" +KEYWORDS=3D"~amd64 ~x86" +IUSE=3D"doc examples" + +RDEPEND=3D">=3Ddev-python/flask-0.8 + >=3Ddev-python/pymongo-2.1" +DEPEND=3D"${RDEPEND} + dev-python/setuptools + dev-python/nose" + +S=3D"${WORKDIR}/${MY_P}" + +PYTHON_MODNAME=3D"flaskext/pymongo.py" + +src_compile() { + distutils_src_compile + + if use doc; then + einfo "Generation of documentation" + cd docs + PYTHONPATH=3D".." emake html || die "Generation of documentation faile= d" + fi +} + +src_install() { + distutils_src_install + + if use doc; then + dohtml -r docs/_build/html/* || die "Installation of documentation fai= led" + fi + + if use examples; then + insinto /usr/share/doc/${PF} + doins -r example || die "Installation of examples failed" + fi +}