diff options
author | Tim Harder <radhermit@gentoo.org> | 2014-01-25 10:00:21 +0000 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2014-01-25 10:00:21 +0000 |
commit | 441f0e84c2c89c7c6240740841245ec3e8d24660 (patch) | |
tree | 1717b91bec2c8144902a8f9dc6d42f38f53ed036 /dev-python/jonpy | |
parent | alpha stable wrt bug #492136 (diff) | |
download | gentoo-2-441f0e84c2c89c7c6240740841245ec3e8d24660.tar.gz gentoo-2-441f0e84c2c89c7c6240740841245ec3e8d24660.tar.bz2 gentoo-2-441f0e84c2c89c7c6240740841245ec3e8d24660.zip |
Version bump.
(Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
Diffstat (limited to 'dev-python/jonpy')
-rw-r--r-- | dev-python/jonpy/ChangeLog | 9 | ||||
-rw-r--r-- | dev-python/jonpy/jonpy-0.11.ebuild | 23 |
2 files changed, 30 insertions, 2 deletions
diff --git a/dev-python/jonpy/ChangeLog b/dev-python/jonpy/ChangeLog index c310641e312e..a6be0aa599a0 100644 --- a/dev-python/jonpy/ChangeLog +++ b/dev-python/jonpy/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-python/jonpy -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/jonpy/ChangeLog,v 1.21 2013/09/05 18:47:15 mgorny Exp $ +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/jonpy/ChangeLog,v 1.22 2014/01/25 10:00:21 radhermit Exp $ + +*jonpy-0.11 (25 Jan 2014) + + 25 Jan 2014; Tim Harder <radhermit@gentoo.org> +jonpy-0.11.ebuild: + Version bump. 05 Sep 2013; Michał Górny <mgorny@gentoo.org> jonpy-0.10-r1.ebuild: Clean up PYTHON_COMPAT from old implementations. diff --git a/dev-python/jonpy/jonpy-0.11.ebuild b/dev-python/jonpy/jonpy-0.11.ebuild new file mode 100644 index 000000000000..561dce8e6668 --- /dev/null +++ b/dev-python/jonpy/jonpy-0.11.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/jonpy/jonpy-0.11.ebuild,v 1.1 2014/01/25 10:00:21 radhermit Exp $ + +EAPI=5 +PYTHON_COMPAT=( python{2_6,2_7} pypy2_0 ) + +inherit distutils-r1 + +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://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="doc examples" + +python_install_all() { + use doc && local HTML_DOCS=( doc/. ) + use examples && local EXAMPLES=( example/. ) + distutils-r1_python_install_all +} |