diff options
author | 2013-01-25 10:45:44 +0000 | |
---|---|---|
committer | 2013-01-25 10:45:44 +0000 | |
commit | 847eb67e7afc7b3cef3766d46706fbfa561f6aa7 (patch) | |
tree | 5e611ac9d9b691021fd0a1b75729bd04bcc7c3fd /dev-python/pymongo/pymongo-2.4.2.ebuild | |
parent | Initial import. Ebuild by me. Standalone resampling library from SoX, which i... (diff) | |
download | gentoo-2-847eb67e7afc7b3cef3766d46706fbfa561f6aa7.tar.gz gentoo-2-847eb67e7afc7b3cef3766d46706fbfa561f6aa7.tar.bz2 gentoo-2-847eb67e7afc7b3cef3766d46706fbfa561f6aa7.zip |
Version bump, drop old
(Portage version: 2.1.11.49/cvs/Linux x86_64, signed Manifest commit with key B658FA13)
Diffstat (limited to 'dev-python/pymongo/pymongo-2.4.2.ebuild')
-rw-r--r-- | dev-python/pymongo/pymongo-2.4.2.ebuild | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/dev-python/pymongo/pymongo-2.4.2.ebuild b/dev-python/pymongo/pymongo-2.4.2.ebuild new file mode 100644 index 000000000000..b08fb7489072 --- /dev/null +++ b/dev-python/pymongo/pymongo-2.4.2.ebuild @@ -0,0 +1,64 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pymongo/pymongo-2.4.2.ebuild,v 1.1 2013/01/25 10:45:44 ultrabug Exp $ + +EAPI="3" +PYTHON_DEPEND="2" +SUPPORT_PYTHON_ABIS="1" +PYTHON_TESTS_FAILURES_TOLERANT_ABIS="*-jython" +DISTUTILS_SRC_TEST="nosetests" +PYTHON_TESTS_RESTRICTED_ABIS="3.*" +inherit distutils + +DESCRIPTION="Python driver for MongoDB" +HOMEPAGE="http://github.com/mongodb/mongo-python-driver http://pypi.python.org/pypi/pymongo" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="doc mod_wsgi" + +RDEPEND="dev-db/mongodb" +DEPEND="${RDEPEND} + dev-python/setuptools + doc? ( dev-python/sphinx )" + +PYTHON_MODNAME="bson gridfs pymongo" + +src_compile() { + distutils_src_compile + + if use doc; then + einfo "Generation of documentation" + mkdir html + sphinx-build doc html || die "Generation of documentation failed" + fi +} + +distutils_src_test_pre_hook() { + mkdir -p "${T}/tests-${PYTHON_ABI}/mongo.db" + mongod --dbpath "${T}/tests-${PYTHON_ABI}/mongo.db" --fork --logpath "${T}/tests-${PYTHON_ABI}/mongo.log" +} + +src_test() { + distutils_src_test + killall -u "$(id -nu)" mongod +} + +src_install() { + # Maintainer note: + # In order to work with mod_wsgi, we need to disable the C extension. + # See [1] for more information. + # [1] http://api.mongodb.org/python/current/faq.html#does-pymongo-work-with-mod-wsgi + distutils_src_install $(use mod_wsgi && echo --no_ext) + + if use doc; then + dohtml -r html/* || die "Error installing docs" + fi +} + +pkg_postinst() { + ewarn "Important changes on this release, make sure to read the changelog:" + ewarn "http://api.mongodb.org/python/${PV}/changelog.html" +} |