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/leo/files
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/leo/files')
-rw-r--r--app-editors/leo/files/leo-4.7.1-fix_syntax_errors.patch32
1 files changed, 0 insertions, 32 deletions
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 ) )