summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarkos Chandras <hwoarang@gentoo.org>2011-06-23 14:57:14 +0000
committerMarkos Chandras <hwoarang@gentoo.org>2011-06-23 14:57:14 +0000
commit6458b1861b6f1aa47c228626b5ec9a5a6cdf3420 (patch)
tree5af3de51ff59a3ca47a50f07da47672d889ea4d8 /app-editors
parentRemove old ebuilds. Requested by Arfrever (diff)
downloadgentoo-2-6458b1861b6f1aa47c228626b5ec9a5a6cdf3420.tar.gz
gentoo-2-6458b1861b6f1aa47c228626b5ec9a5a6cdf3420.tar.bz2
gentoo-2-6458b1861b6f1aa47c228626b5ec9a5a6cdf3420.zip
Remove old ebuilds. Requested by Arfrever
(Portage version: 2.1.9.49/cvs/Linux x86_64)
Diffstat (limited to 'app-editors')
-rw-r--r--app-editors/leo/ChangeLog6
-rw-r--r--app-editors/leo/files/leo-4.7.1-fix_syntax_errors.patch32
-rw-r--r--app-editors/leo/leo-4.7.1.ebuild40
3 files changed, 5 insertions, 73 deletions
diff --git a/app-editors/leo/ChangeLog b/app-editors/leo/ChangeLog
index 018d7f29f0da..e9fbd36b832d 100644
--- a/app-editors/leo/ChangeLog
+++ b/app-editors/leo/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for app-editors/leo
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/leo/ChangeLog,v 1.22 2011/05/28 13:54:26 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/leo/ChangeLog,v 1.23 2011/06/23 14:57:14 hwoarang Exp $
+
+ 23 Jun 2011; Markos Chandras <hwoarang@gentoo.org> -leo-4.7.1.ebuild,
+ -files/leo-4.7.1-fix_syntax_errors.patch:
+ Remove old ebuilds. Requested by Arfrever
28 May 2011; Brent Baude <ranger@gentoo.org> leo-4.8.ebuild:
Marking leo-4.8 ppc for bug 351495
diff --git a/app-editors/leo/files/leo-4.7.1-fix_syntax_errors.patch b/app-editors/leo/files/leo-4.7.1-fix_syntax_errors.patch
deleted file mode 100644
index 2809f2d3f2b2..000000000000
--- a/app-editors/leo/files/leo-4.7.1-fix_syntax_errors.patch
+++ /dev/null
@@ -1,32 +0,0 @@
---- leo/plugins/ConceptualSort.py
-+++ leo/plugins/ConceptualSort.py
-@@ -207,8 +207,7 @@
- usort = compile( code, 'user_sort', 'exec' )
- def lcsort2( a, b, atts =atts ):
- z = {}
-- # exec usort in {}, z
-- exec(usort,{},z)
-+ exec usort in {}, z
- rv = z[ 'user_sort' ]( a, b, atts )
- return rv
- self.children.sort( lcsort2 )
---- leo/plugins/LeoN.py
-+++ leo/plugins/LeoN.py
-@@ -216,7 +216,7 @@
-
- # receive an operation to execute
- if dbg >=1:
-- print("Site %i;%s; '%s'; receiving %s"%(self.site_index, self.state_vector, self.get_text(), t_op)
-+ print("Site %i;%s; '%s'; receiving %s"%(self.site_index, self.state_vector, self.get_text(), t_op))
-
-
- if is_causally_ready(t_op, self): # check if it is causally ready
-@@ -308,7 +308,7 @@
- if undoed: # if there was an undo, then redo
- if dbg>=1:
- print("Site %i; '%s'; undoed %s; executed %s;"%(
-- self.site_index, self.get_text(), undoed, EOnew) # just for debugging
-+ self.site_index, self.get_text(), undoed, EOnew)) # just for debugging
- EOoL = [] # EO'm+1 List
-
- EOoL.append( IT( HB[m+1], EOnew ) )
diff --git a/app-editors/leo/leo-4.7.1.ebuild b/app-editors/leo/leo-4.7.1.ebuild
deleted file mode 100644
index a29f3730911a..000000000000
--- a/app-editors/leo/leo-4.7.1.ebuild
+++ /dev/null
@@ -1,40 +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/leo/leo-4.7.1.ebuild,v 1.4 2010/05/28 11:02:06 maekke Exp $
-
-EAPI="3"
-PYTHON_DEPEND="2:2.6"
-PYTHON_USE_WITH="tk"
-SUPPORT_PYTHON_ABIS="1"
-
-inherit distutils eutils
-
-MY_P="Leo-${PV}-final"
-
-DESCRIPTION="Leo: Literate Editor with Outlines"
-HOMEPAGE="http://leo.sourceforge.net/ http://pypi.python.org/pypi/leo"
-SRC_URI="mirror://sourceforge/${PN}/${MY_P}.zip"
-
-LICENSE="as-is"
-SLOT="0"
-KEYWORDS="amd64 ppc x86"
-IUSE=""
-
-RDEPEND="app-text/silvercity
- dev-python/PyQt4[X]"
-DEPEND="${RDEPEND}
- app-arch/unzip"
-RESTRICT_PYTHON_ABIS="2.4 2.5 3.*"
-
-S="${WORKDIR}/${MY_P}"
-
-src_prepare() {
- distutils_src_prepare
- epatch "${FILESDIR}/${P}-fix_syntax_errors.patch"
-}
-
-src_install() {
- distutils_src_install
- dohtml -r leo/doc/html/* || die "dohtml failed"
- dodoc leo/doc/README.TXT || die "dodoc failed"
-}