diff options
author | Michał Górny <mgorny@gentoo.org> | 2013-02-22 23:05:03 +0000 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2013-02-22 23:05:03 +0000 |
commit | b472d5d1678e7db0f63cf7ac16cab4985de3d593 (patch) | |
tree | e1acef5bf60e935a40f9fb21cdeec3f695a5a62d /dev-python/tempita/tempita-0.5.1-r1.ebuild | |
parent | remove old version (diff) | |
download | gentoo-2-b472d5d1678e7db0f63cf7ac16cab4985de3d593.tar.gz gentoo-2-b472d5d1678e7db0f63cf7ac16cab4985de3d593.tar.bz2 gentoo-2-b472d5d1678e7db0f63cf7ac16cab4985de3d593.zip |
Migrate to distutils-r1.
(Portage version: 2.2.0_alpha163/cvs/Linux x86_64, signed Manifest commit with key 9627F456F9DA7643!)
Diffstat (limited to 'dev-python/tempita/tempita-0.5.1-r1.ebuild')
-rw-r--r-- | dev-python/tempita/tempita-0.5.1-r1.ebuild | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/dev-python/tempita/tempita-0.5.1-r1.ebuild b/dev-python/tempita/tempita-0.5.1-r1.ebuild new file mode 100644 index 000000000000..acc848c4b30f --- /dev/null +++ b/dev-python/tempita/tempita-0.5.1-r1.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/tempita/tempita-0.5.1-r1.ebuild,v 1.1 2013/02/22 23:05:03 mgorny Exp $ + +EAPI=5 + +PYTHON_COMPAT=( python{2_5,2_6,2_7} pypy{1_9,2_0} ) + +inherit distutils-r1 + +MY_PN="Tempita" +MY_P="${MY_PN}-${PV}" + +DESCRIPTION="A very small text templating language" +HOMEPAGE="http://pythonpaste.org/tempita http://pypi.python.org/pypi/Tempita" +SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" +IUSE="test" + +RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" +DEPEND="${RDEPEND} + test? ( dev-python/nose[${PYTHON_USEDEP}] )" + +S="${WORKDIR}/${MY_P}" + +python_test() { + nosetests || die "Tests fail with ${EPYTHON}" +} |