From c4b833816e5c1041fee51cb3eaf523bd7b1be356 Mon Sep 17 00:00:00 2001 From: Ryan Hill Date: Sat, 22 May 2010 20:34:47 +0000 Subject: Version bump. Fixes a number of problems with tab control and other outstanding issues. Update minimum python version to 2.5. (Portage version: 2.2_rc67/cvs/Linux x86_64) --- app-editors/editra/ChangeLog | 9 +++++- app-editors/editra/editra-0.5.32.ebuild | 55 --------------------------------- app-editors/editra/editra-0.5.60.ebuild | 52 +++++++++++++++++++++++++++++++ 3 files changed, 60 insertions(+), 56 deletions(-) delete mode 100644 app-editors/editra/editra-0.5.32.ebuild create mode 100644 app-editors/editra/editra-0.5.60.ebuild (limited to 'app-editors') diff --git a/app-editors/editra/ChangeLog b/app-editors/editra/ChangeLog index c6e88a4d43d3..c2effb358338 100644 --- a/app-editors/editra/ChangeLog +++ b/app-editors/editra/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for app-editors/editra # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-editors/editra/ChangeLog,v 1.13 2010/03/17 23:09:57 dirtyepic Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-editors/editra/ChangeLog,v 1.14 2010/05/22 20:34:46 dirtyepic Exp $ + +*editra-0.5.60 (22 May 2010) + + 22 May 2010; Ryan Hill -editra-0.5.32.ebuild, + +editra-0.5.60.ebuild: + Version bump. Fixes a number of problems with tab control and other + outstanding issues. Update minimum python version to 2.5. *editra-0.5.51 (17 Mar 2010) diff --git a/app-editors/editra/editra-0.5.32.ebuild b/app-editors/editra/editra-0.5.32.ebuild deleted file mode 100644 index 03aae94c23dc..000000000000 --- a/app-editors/editra/editra-0.5.32.ebuild +++ /dev/null @@ -1,55 +0,0 @@ -# Copyright 1999-2010 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-editors/editra/editra-0.5.32.ebuild,v 1.4 2010/03/07 21:29:36 abcd Exp $ - -EAPI=2 -SUPPORT_PYTHON_ABIS=1 -PYTHON_DEPEND="2:2.4" - -inherit distutils eutils fdo-mime python - -MY_PN=${PN/e/E} - -DESCRIPTION="Multi-platform text editor supporting over 50 programming languages." -HOMEPAGE="http://editra.org http://pypi.python.org/pypi/Editra" -SRC_URI="http://editra.org/uploads/src/${MY_PN}-${PV}.tar.gz" - -LICENSE="wxWinLL-3.1" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="spell" - -DEPEND=">=dev-python/wxpython-2.8.9.2:2.8 - >=dev-python/setuptools-0.6" -# setuptools is RDEPEND because it's used by the runtime for installing plugins -RDEPEND="${DEPEND} - spell? ( dev-python/pyenchant )" - -RESTRICT_PYTHON_ABIS="3.*" - -S="${WORKDIR}"/${MY_PN}-${PV} - -src_prepare() { - #http://code.google.com/p/editra/issues/detail?id=481 - epatch "${FILESDIR}"/${P}-sandbox.patch - # next version, use setup.py install --no-clean - distutils_src_prepare -} - -src_install() { - distutils_src_install - insinto /usr/share/pixmaps - doins "${S}"/pixmaps/editra.png - make_desktop_entry Editra Editra editra "Development;TextEditor" - dodoc FAQ THANKS -} - -pkg_postinst() { - distutils_pkg_postinst - fdo-mime_desktop_database_update -} - -pkg_postrm() { - distutils_pkg_postrm - fdo-mime_desktop_database_update -} diff --git a/app-editors/editra/editra-0.5.60.ebuild b/app-editors/editra/editra-0.5.60.ebuild new file mode 100644 index 000000000000..5178712f19b2 --- /dev/null +++ b/app-editors/editra/editra-0.5.60.ebuild @@ -0,0 +1,52 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-editors/editra/editra-0.5.60.ebuild,v 1.1 2010/05/22 20:34:47 dirtyepic Exp $ + +EAPI=2 +SUPPORT_PYTHON_ABIS=1 +PYTHON_DEPEND="2:2.5" + +inherit distutils eutils fdo-mime python + +MY_PN=${PN/e/E} + +DESCRIPTION="Multi-platform text editor supporting over 50 programming languages." +HOMEPAGE="http://editra.org http://pypi.python.org/pypi/Editra" +SRC_URI="http://editra.org/uploads/src/${MY_PN}-${PV}.tar.gz" + +LICENSE="wxWinLL-3.1" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="spell" + +DEPEND=">=dev-python/wxpython-2.8.9.2:2.8 + >=dev-python/setuptools-0.6" +# setuptools is RDEPEND because it's used by the runtime for installing plugins +RDEPEND="${DEPEND} + spell? ( dev-python/pyenchant )" + +RESTRICT_PYTHON_ABIS="3.*" + +S="${WORKDIR}"/${MY_PN}-${PV} + +src_compile() { + distutils_src_compile --no-clean # http://code.google.com/p/editra/issues/detail?id=481 +} + +src_install() { + distutils_src_install --no-clean + insinto /usr/share/pixmaps + doins "${S}"/pixmaps/editra.png + make_desktop_entry Editra Editra editra "Development;TextEditor" + dodoc FAQ THANKS +} + +pkg_postinst() { + distutils_pkg_postinst + fdo-mime_desktop_database_update +} + +pkg_postrm() { + distutils_pkg_postrm + fdo-mime_desktop_database_update +} -- cgit v1.2.3-65-gdbad