diff options
author | Rob Cakebread <pythonhead@gentoo.org> | 2007-07-08 15:48:39 +0000 |
---|---|---|
committer | Rob Cakebread <pythonhead@gentoo.org> | 2007-07-08 15:48:39 +0000 |
commit | 4e69648ff406045ef967c6243434951322a6d923 (patch) | |
tree | 4cf77208bf5d54b4bc08b0c147e5c791197c8e18 /dev-python | |
parent | Use dev-lang/ghc rather than virtual/ghc. (diff) | |
download | gentoo-2-4e69648ff406045ef967c6243434951322a6d923.tar.gz gentoo-2-4e69648ff406045ef967c6243434951322a6d923.tar.bz2 gentoo-2-4e69648ff406045ef967c6243434951322a6d923.zip |
Version bump.
(Portage version: 2.1.3_rc6)
Diffstat (limited to 'dev-python')
-rw-r--r-- | dev-python/nose/ChangeLog | 8 | ||||
-rw-r--r-- | dev-python/nose/files/digest-nose-0.10.0_alpha1 | 3 | ||||
-rw-r--r-- | dev-python/nose/nose-0.10.0_alpha1.ebuild | 46 |
3 files changed, 56 insertions, 1 deletions
diff --git a/dev-python/nose/ChangeLog b/dev-python/nose/ChangeLog index 809f7c652e97..37d5f4a20f46 100644 --- a/dev-python/nose/ChangeLog +++ b/dev-python/nose/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-python/nose # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/nose/ChangeLog,v 1.3 2007/07/04 20:53:20 lucass Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/nose/ChangeLog,v 1.4 2007/07/08 15:48:39 pythonhead Exp $ + +*nose-0.10.0_alpha1 (08 Jul 2007) + + 08 Jul 2007; Rob Cakebread <pythonhead@gentoo.org> + +nose-0.10.0_alpha1.ebuild: + Version bump. 04 Jul 2007; Lukasz Strzygowski <lucass@gentoo.org> -nose-0.9.2.ebuild, nose-0.9.3.ebuild: diff --git a/dev-python/nose/files/digest-nose-0.10.0_alpha1 b/dev-python/nose/files/digest-nose-0.10.0_alpha1 new file mode 100644 index 000000000000..cc4fd3d80657 --- /dev/null +++ b/dev-python/nose/files/digest-nose-0.10.0_alpha1 @@ -0,0 +1,3 @@ +MD5 d3f3cc1774a3b1853c61288675f63f28 nose-0.10.0a1.tar.gz 207837 +RMD160 eb37b4ecaadd72a26d9cd3aa15636b5b74e901e8 nose-0.10.0a1.tar.gz 207837 +SHA256 ec673894e455f4c0ba97dcc86047e1eeddcb3a07da63589ebbe4b8c2b984bda7 nose-0.10.0a1.tar.gz 207837 diff --git a/dev-python/nose/nose-0.10.0_alpha1.ebuild b/dev-python/nose/nose-0.10.0_alpha1.ebuild new file mode 100644 index 000000000000..cbe21447b5fa --- /dev/null +++ b/dev-python/nose/nose-0.10.0_alpha1.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/nose/nose-0.10.0_alpha1.ebuild,v 1.1 2007/07/08 15:48:39 pythonhead Exp $ + + +NEED_PYTHON=2.2 + +inherit distutils + +MY_PV="${PV/_alpha/a}" +MY_P="${PN}-${MY_PV}" + +DESCRIPTION="A unittest extension offering automatic test suite discovery and easy test authoring" +HOMEPAGE="http://somethingaboutorange.com/mrl/projects/nose/" +SRC_URI="http://somethingaboutorange.com/mrl/projects/nose/${MY_P}.tar.gz" +LICENSE="LGPL-2.1" +KEYWORDS="~amd64 ~x86" +SLOT="0" +S="${WORKDIR}/${MY_P}" +IUSE="doc examples" +RDEPEND="dev-python/setuptools" +DEPEND="${RDEPEND} + doc? ( dev-python/docutils )" + +src_compile() { + distutils_src_compile + if use doc ; then + PYTHONPATH=. scripts/mkindex.py + fi +} + +src_install() { + DOCS="AUTHORS NEWS" + distutils_src_install + + use doc && dohtml index.html + + if use examples ; then + insinto /usr/share/doc/${PF} + doins -r examples + fi +} + +src_test() { + PYTHONPATH=. "${python}" setup.py test || die "test failed" +} |