diff options
author | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2010-10-23 19:59:17 +0000 |
---|---|---|
committer | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2010-10-23 19:59:17 +0000 |
commit | fe92f171fa66184ee074aaa2b16c56c0dd6f2d8e (patch) | |
tree | 2191930a456205350d68b382ad2db2a2a5be0b02 /dev-python/jinja | |
parent | Update metadata.xml. (diff) | |
download | gentoo-2-fe92f171fa66184ee074aaa2b16c56c0dd6f2d8e.tar.gz gentoo-2-fe92f171fa66184ee074aaa2b16c56c0dd6f2d8e.tar.bz2 gentoo-2-fe92f171fa66184ee074aaa2b16c56c0dd6f2d8e.zip |
Delete older ebuilds.
Diffstat (limited to 'dev-python/jinja')
-rw-r--r-- | dev-python/jinja/files/jinja2-2.4.1-object_type_repr.patch | 14 | ||||
-rw-r--r-- | dev-python/jinja/jinja-2.4.1.ebuild | 62 | ||||
-rw-r--r-- | dev-python/jinja/jinja-2.5.4.ebuild | 57 |
3 files changed, 0 insertions, 133 deletions
diff --git a/dev-python/jinja/files/jinja2-2.4.1-object_type_repr.patch b/dev-python/jinja/files/jinja2-2.4.1-object_type_repr.patch deleted file mode 100644 index cb6b1de84a71..000000000000 --- a/dev-python/jinja/files/jinja2-2.4.1-object_type_repr.patch +++ /dev/null @@ -1,14 +0,0 @@ -http://dev.pocoo.org/hg/jinja2-main/rev/60f80722840b - ---- jinja2/utils.py -+++ jinja2/utils.py -@@ -236,7 +236,8 @@ - return 'None' - elif obj is Ellipsis: - return 'Ellipsis' -- if obj.__class__.__module__ == '__builtin__': -+ # __builtin__ in 2.x, builtins in 3.x -+ if obj.__class__.__module__ in ('__builtin__', 'builtins'): - name = obj.__class__.__name__ - else: - name = obj.__class__.__module__ + '.' + obj.__class__.__name__ diff --git a/dev-python/jinja/jinja-2.4.1.ebuild b/dev-python/jinja/jinja-2.4.1.ebuild deleted file mode 100644 index 9f05be29bbe2..000000000000 --- a/dev-python/jinja/jinja-2.4.1.ebuild +++ /dev/null @@ -1,62 +0,0 @@ -# Copyright 1999-2010 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/jinja/jinja-2.4.1.ebuild,v 1.7 2010/08/18 09:53:34 djc Exp $ - -EAPI="3" -SUPPORT_PYTHON_ABIS="1" -DISTUTILS_SRC_TEST="setup.py" - -inherit distutils eutils - -MY_PN="Jinja2" -MY_P="${MY_PN}-${PV}" - -DESCRIPTION="A small but fast and easy to use stand-alone template engine written in pure python." -HOMEPAGE="http://jinja.pocoo.org/ http://pypi.python.org/pypi/Jinja2" -SRC_URI="mirror://pypi/J/${MY_PN}/${MY_P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="alpha amd64 arm hppa ia64 ~ppc ~ppc64 s390 sh sparc x86 ~x86-fbsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos" -IUSE="doc examples i18n test" - -RDEPEND="dev-python/setuptools - i18n? ( >=dev-python/Babel-0.9.3 )" -DEPEND="${RDEPEND} - doc? ( >=dev-python/sphinx-0.6 )" - -S="${WORKDIR}/${MY_P}" - -DISTUTILS_GLOBAL_OPTIONS=("--with-speedups") -DOCS="CHANGES" -PYTHON_MODNAME="jinja2" - -src_prepare() { - distutils_src_prepare - epatch "${FILESDIR}/jinja2-2.4.1-object_type_repr.patch" - find -name "*.py[co]" -print0 | xargs -0 rm -f -} - -src_compile(){ - distutils_src_compile - - if use doc; then - cd docs - einfo "Generation of documentation" - PYTHONPATH=".." emake html || die "Building of documentation failed" - fi -} - -src_install(){ - distutils_src_install - python_clean_installation_image - - if use doc; then - dohtml -r docs/_build/html/* || die "Installation of documentation failed" - fi - - if use examples; then - insinto "/usr/share/doc/${PF}" - doins -r examples || die "Failed to install examples" - fi -} diff --git a/dev-python/jinja/jinja-2.5.4.ebuild b/dev-python/jinja/jinja-2.5.4.ebuild deleted file mode 100644 index 6fe4660bb000..000000000000 --- a/dev-python/jinja/jinja-2.5.4.ebuild +++ /dev/null @@ -1,57 +0,0 @@ -# Copyright 1999-2010 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/jinja/jinja-2.5.4.ebuild,v 1.3 2010/10/18 19:29:06 jer Exp $ - -EAPI="3" -SUPPORT_PYTHON_ABIS="1" -DISTUTILS_SRC_TEST="setup.py" - -inherit distutils eutils - -MY_PN="Jinja2" -MY_P="${MY_PN}-${PV}" - -DESCRIPTION="A small but fast and easy to use stand-alone template engine written in pure python." -HOMEPAGE="http://jinja.pocoo.org/ http://pypi.python.org/pypi/Jinja2" -SRC_URI="mirror://pypi/J/${MY_PN}/${MY_P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos" -IUSE="doc examples i18n test" - -RDEPEND="dev-python/setuptools - dev-python/markupsafe - i18n? ( >=dev-python/Babel-0.9.3 )" -DEPEND="${RDEPEND} - doc? ( >=dev-python/sphinx-0.6 )" - -S="${WORKDIR}/${MY_P}" - -DISTUTILS_GLOBAL_OPTIONS=("--with-debugsupport") -DOCS="CHANGES" -PYTHON_MODNAME="jinja2" - -src_compile(){ - distutils_src_compile - - if use doc; then - einfo "Generation of documentation" - cd docs - PYTHONPATH=".." emake html || die "Building of documentation failed" - fi -} - -src_install(){ - distutils_src_install - python_clean_installation_image - - if use doc; then - dohtml -r docs/_build/html/* || die "Installation of documentation failed" - fi - - if use examples; then - insinto "/usr/share/doc/${PF}" - doins -r examples || die "Installation of examples failed" - fi -} |