Gentoo Archives: gentoo-commits

From: "Matsuu Takuto (matsuu)" <matsuu@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-i18n/skim/files: skim-1.4.5-python26-2.patch
Date: Thu, 30 Apr 2009 23:46:40
Message-Id: E1Lzfxc-0002kC-Ub@stork.gentoo.org
1 matsuu 09/04/30 23:46:36
2
3 Added: skim-1.4.5-python26-2.patch
4 Log:
5 Fixed python-2.6 issue again and again, bug #255210.
6 (Portage version: 2.1.6.11/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.1 app-i18n/skim/files/skim-1.4.5-python26-2.patch
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/skim/files/skim-1.4.5-python26-2.patch?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/skim/files/skim-1.4.5-python26-2.patch?rev=1.1&content-type=text/plain
13
14 Index: skim-1.4.5-python26-2.patch
15 ===================================================================
16 --- skim-1.4.5.orig/scons-local-0.96.1/SCons/Util.py 2009-04-29 12:49:05.000000000 +1000
17 +++ skim-1.4.5/scons-local-0.96.1/SCons/Util.py 2009-04-29 12:49:41.000000000 +1000
18 @@ -696,6 +696,10 @@
19 class CLVar(UserList.UserList):
20 def __init__(self, seq=[]):
21 UserList.UserList.__init__(self, Split(seq))
22 + def __add__(self, other):
23 + return UserList.UserList.__add__(self, CLVar(other))
24 + def __radd__(self, other):
25 + return UserList.UserList.__radd__(self, CLVar(other))
26 def __coerce__(self, other):
27 return (self, CLVar(other))
28 def __str__(self):