diff options
author | Patrick Lauer <patrick@gentoo.org> | 2012-04-19 09:08:07 +0000 |
---|---|---|
committer | Patrick Lauer <patrick@gentoo.org> | 2012-04-19 09:08:07 +0000 |
commit | 3a6e8362e1702fb50c9d85365764f73733e2e58c (patch) | |
tree | 06bec61e1424828c085c85393b7e8c17455fe856 /dev-python/quixote | |
parent | Fix glib dependency, drop old (#412583 by Tomas Psika). (diff) | |
download | historical-3a6e8362e1702fb50c9d85365764f73733e2e58c.tar.gz historical-3a6e8362e1702fb50c9d85365764f73733e2e58c.tar.bz2 historical-3a6e8362e1702fb50c9d85365764f73733e2e58c.zip |
Bump
Package-Manager: portage-2.2.0_alpha100/cvs/Linux x86_64
Diffstat (limited to 'dev-python/quixote')
-rw-r--r-- | dev-python/quixote/ChangeLog | 7 | ||||
-rw-r--r-- | dev-python/quixote/quixote-2.7.ebuild | 35 |
2 files changed, 41 insertions, 1 deletions
diff --git a/dev-python/quixote/ChangeLog b/dev-python/quixote/ChangeLog index 202b7d5b8aeb..e7583801d125 100644 --- a/dev-python/quixote/ChangeLog +++ b/dev-python/quixote/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-python/quixote # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/quixote/ChangeLog,v 1.34 2012/02/21 08:19:29 patrick Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/quixote/ChangeLog,v 1.35 2012/04/19 09:08:07 patrick Exp $ + +*quixote-2.7 (19 Apr 2012) + + 19 Apr 2012; Patrick Lauer <patrick@gentoo.org> +quixote-2.7.ebuild: + Bump 21 Feb 2012; Patrick Lauer <patrick@gentoo.org> quixote-2.6.ebuild: Restricting jython diff --git a/dev-python/quixote/quixote-2.7.ebuild b/dev-python/quixote/quixote-2.7.ebuild new file mode 100644 index 000000000000..8c34c08b7f0f --- /dev/null +++ b/dev-python/quixote/quixote-2.7.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/quixote/quixote-2.7.ebuild,v 1.1 2012/04/19 09:08:06 patrick Exp $ + +EAPI="3" +PYTHON_DEPEND="2" +SUPPORT_PYTHON_ABIS="1" +RESTRICT_PYTHON_ABIS="3.* 2.7-pypy-* *-jython" + +inherit distutils + +MY_P="${P/q/Q}" + +DESCRIPTION="Python HTML templating framework for developing web applications" +HOMEPAGE="http://quixote.ca" +SRC_URI="http://quixote.ca/releases/${MY_P}.tar.gz" + +LICENSE="CNRI-QUIXOTE-2.4" +SLOT="0" +KEYWORDS="~amd64 ~ia64 ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos" +IUSE="" + +DEPEND="" +RDEPEND="" + +S="${WORKDIR}"/${MY_P} + +PYTHON_CFLAGS=("2.* + -fno-strict-aliasing") + +DOCS="ACKS.txt CHANGES.txt doc/*.txt" + +src_install() { + distutils_src_install + dohtml doc/*.html || die "dohtml failed" +} |