diff options
author | Ian Delaney <idella4@gentoo.org> | 2013-06-09 06:18:38 +0000 |
---|---|---|
committer | Ian Delaney <idella4@gentoo.org> | 2013-06-09 06:18:38 +0000 |
commit | 0474cd5d72eb6211b4c2dbef07b514c57e51bc55 (patch) | |
tree | 669ee6dbbbc8d35d6b4e6ee5bc66041b997be812 /dev-python/speaklater/speaklater-1.3-r1.ebuild | |
parent | Version bump. (diff) | |
download | gentoo-2-0474cd5d72eb6211b4c2dbef07b514c57e51bc55.tar.gz gentoo-2-0474cd5d72eb6211b4c2dbef07b514c57e51bc55.tar.bz2 gentoo-2-0474cd5d72eb6211b4c2dbef07b514c57e51bc55.zip |
revbump, migrate -> distutils-r1
(Portage version: 2.1.11.63/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
Diffstat (limited to 'dev-python/speaklater/speaklater-1.3-r1.ebuild')
-rw-r--r-- | dev-python/speaklater/speaklater-1.3-r1.ebuild | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/dev-python/speaklater/speaklater-1.3-r1.ebuild b/dev-python/speaklater/speaklater-1.3-r1.ebuild new file mode 100644 index 000000000000..986e1ec34a63 --- /dev/null +++ b/dev-python/speaklater/speaklater-1.3-r1.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/speaklater/speaklater-1.3-r1.ebuild,v 1.1 2013/06/09 06:18:38 idella4 Exp $ + +EAPI=5 +PYTHON_COMPAT=( python{2_5,2_6,2_7} pypy2_0 ) +inherit distutils-r1 + +DESCRIPTION="Lazy strings for Python" +HOMEPAGE="https://github.com/mitsuhiko/speaklater" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="test" + +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] + test? ( dev-python/nose[${PYTHON_USEDEP}] )" + +DISTUTILS_IN_SOURCE_BUILD=1 + +python_test() { + "${PYTHON}" speaklater.py || die "Tests failed under ${EPYTHON}" +} |