diff options
author | Ryan Hill <dirtyepic@gentoo.org> | 2013-02-05 01:18:32 +0000 |
---|---|---|
committer | Ryan Hill <dirtyepic@gentoo.org> | 2013-02-05 01:18:32 +0000 |
commit | 916fc9a71e6275e06799f1eeda13d9d973e545f6 (patch) | |
tree | adcae8d104259a29c1d76b6c63f643b59073b1da /media-gfx | |
parent | keyword ~arm (diff) | |
download | gentoo-2-916fc9a71e6275e06799f1eeda13d9d973e545f6.tar.gz gentoo-2-916fc9a71e6275e06799f1eeda13d9d973e545f6.tar.bz2 gentoo-2-916fc9a71e6275e06799f1eeda13d9d973e545f6.zip |
Version bump. Drop python 2.5 support.
(Portage version: 2.2.0_alpha161/cvs/Linux x86_64, signed Manifest commit with key 957A8463)
Diffstat (limited to 'media-gfx')
-rw-r--r-- | media-gfx/fontypython/ChangeLog | 9 | ||||
-rw-r--r-- | media-gfx/fontypython/fontypython-0.4.4.ebuild | 32 |
2 files changed, 39 insertions, 2 deletions
diff --git a/media-gfx/fontypython/ChangeLog b/media-gfx/fontypython/ChangeLog index 92e19cb8a0d4..96b745eb8da0 100644 --- a/media-gfx/fontypython/ChangeLog +++ b/media-gfx/fontypython/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-gfx/fontypython -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/fontypython/ChangeLog,v 1.16 2012/02/28 12:29:39 patrick Exp $ +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/fontypython/ChangeLog,v 1.17 2013/02/05 01:18:32 dirtyepic Exp $ + +*fontypython-0.4.4 (05 Feb 2013) + + 05 Feb 2013; Ryan Hill <dirtyepic@gentoo.org> +fontypython-0.4.4.ebuild: + Version bump. Drop python 2.5 support. 28 Feb 2012; Patrick Lauer <patrick@gentoo.org> fontypython-0.4.2.3.ebuild: Restricting pypy diff --git a/media-gfx/fontypython/fontypython-0.4.4.ebuild b/media-gfx/fontypython/fontypython-0.4.4.ebuild new file mode 100644 index 000000000000..8e6f5cb3de4e --- /dev/null +++ b/media-gfx/fontypython/fontypython-0.4.4.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/fontypython/fontypython-0.4.4.ebuild,v 1.1 2013/02/05 01:18:32 dirtyepic Exp $ + +EAPI="5" +PYTHON_DEPEND="2:2.6" +SUPPORT_PYTHON_ABIS="1" +RESTRICT_PYTHON_ABIS="2.4 2.5 3.* *-jython 2.7-pypy-*" + +inherit distutils multilib python + +DESCRIPTION="Font preview application" +HOMEPAGE="http://savannah.nongnu.org/projects/fontypython" +SRC_URI="http://download.savannah.nongnu.org/releases/${PN}/${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +# Crashes w/ debug build of wxGTK (#201315) +DEPEND="dev-python/imaging + dev-python/wxpython:2.8 + x11-libs/wxGTK:2.8[-debug]" +RDEPEND="${DEPEND}" + +PYTHON_MODNAME="fontypythonmodules" + +src_install() { + distutils_src_install + doman "${S}"/fontypython.1 +} |