diff options
author | 2010-06-30 02:39:07 +0000 | |
---|---|---|
committer | 2010-06-30 02:39:07 +0000 | |
commit | 8c9dbb8ce00cf0290595f4653f4f2c8842639029 (patch) | |
tree | 67daf3066521198d5e6b2a01ca1c81b63135df44 /dev-python/jonpy | |
parent | Delete older ebuild. (diff) | |
download | gentoo-2-8c9dbb8ce00cf0290595f4653f4f2c8842639029.tar.gz gentoo-2-8c9dbb8ce00cf0290595f4653f4f2c8842639029.tar.bz2 gentoo-2-8c9dbb8ce00cf0290595f4653f4f2c8842639029.zip |
Version bump.
(Portage version: HEAD/cvs/Linux x86_64)
Diffstat (limited to 'dev-python/jonpy')
-rw-r--r-- | dev-python/jonpy/ChangeLog | 10 | ||||
-rw-r--r-- | dev-python/jonpy/jonpy-0.09.ebuild | 37 |
2 files changed, 45 insertions, 2 deletions
diff --git a/dev-python/jonpy/ChangeLog b/dev-python/jonpy/ChangeLog index f70619f32732..815b7354af05 100644 --- a/dev-python/jonpy/ChangeLog +++ b/dev-python/jonpy/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-python/jonpy -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/jonpy/ChangeLog,v 1.10 2009/11/24 19:18:56 armin76 Exp $ +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/jonpy/ChangeLog,v 1.11 2010/06/30 02:39:07 arfrever Exp $ + +*jonpy-0.09 (30 Jun 2010) + + 30 Jun 2010; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> + -jonpy-0.06.ebuild, +jonpy-0.09.ebuild: + Version bump. 24 Nov 2009; Raúl Porcel <armin76@gentoo.org> jonpy-0.07.ebuild: ia64 stable wrt #288119 diff --git a/dev-python/jonpy/jonpy-0.09.ebuild b/dev-python/jonpy/jonpy-0.09.ebuild new file mode 100644 index 000000000000..39f8bc05b575 --- /dev/null +++ b/dev-python/jonpy/jonpy-0.09.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/jonpy/jonpy-0.09.ebuild,v 1.1 2010/06/30 02:39:07 arfrever Exp $ + +EAPI="3" +PYTHON_DEPEND="2" +SUPPORT_PYTHON_ABIS="1" +RESTRICT_PYTHON_ABIS="3.*" + +inherit distutils + +DESCRIPTION="Powerful multi-threaded object-oriented CGI/FastCGI/mod_python/html-templating facilities" +HOMEPAGE="http://jonpy.sourceforge.net/ http://pypi.python.org/pypi/jonpy" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" + +LICENSE="as-is" +SLOT="0" +KEYWORDS="~amd64 ~ia64 ~x86" +IUSE="doc examples" + +DEPEND="" +RDEPEND="" + +PYTHON_MODNAME="jon" + +src_install() { + distutils_src_install + + if use doc; then + dohtml doc/* + fi + + if use examples; then + insinto /usr/share/doc/${PF} + doins -r example + fi +} |