Gentoo Archives: gentoo-commits

From: "Jesus Rivero (neurogeek)" <neurogeek@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-lang/python/files: python-2.5.2_turkish.patch python-2.6_turkish.patch
Date: Thu, 22 Jan 2009 01:13:23
Message-Id: E1LPo8G-00059A-H6@stork.gentoo.org
1 neurogeek 09/01/22 01:13:20
2
3 Modified: python-2.5.2_turkish.patch python-2.6_turkish.patch
4 Log:
5 Rev bump. Patch bundle updated to fix turkish locale patch. Updated older patches too and removed previous version.
6 (Portage version: 2.2_rc16/cvs/Linux 2.6.18-gentoo-r3 i686)
7
8 Revision Changes Path
9 1.2 dev-lang/python/files/python-2.5.2_turkish.patch
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/python/files/python-2.5.2_turkish.patch?rev=1.2&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/python/files/python-2.5.2_turkish.patch?rev=1.2&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/python/files/python-2.5.2_turkish.patch?r1=1.1&r2=1.2
14
15 Index: python-2.5.2_turkish.patch
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/dev-lang/python/files/python-2.5.2_turkish.patch,v
18 retrieving revision 1.1
19 retrieving revision 1.2
20 diff -u -r1.1 -r1.2
21 --- python-2.5.2_turkish.patch 6 Dec 2008 21:21:43 -0000 1.1
22 +++ python-2.5.2_turkish.patch 22 Jan 2009 01:13:20 -0000 1.2
23 @@ -79,7 +79,7 @@
24 """
25 # Normalize the locale name and extract the encoding
26 - fullname = localename.lower()
27 -+ fullname = localename.translate(_ascii_lower_map)
28 ++ fullname = localename.encode('ascii').translate(_ascii_lower_map)
29 if ':' in fullname:
30 # ':' is sometimes used as encoding delimiter.
31 fullname = fullname.replace(':', '.')
32
33
34
35 1.2 dev-lang/python/files/python-2.6_turkish.patch
36
37 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/python/files/python-2.6_turkish.patch?rev=1.2&view=markup
38 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/python/files/python-2.6_turkish.patch?rev=1.2&content-type=text/plain
39 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/python/files/python-2.6_turkish.patch?r1=1.1&r2=1.2
40
41 Index: python-2.6_turkish.patch
42 ===================================================================
43 RCS file: /var/cvsroot/gentoo-x86/dev-lang/python/files/python-2.6_turkish.patch,v
44 retrieving revision 1.1
45 retrieving revision 1.2
46 diff -u -r1.1 -r1.2
47 --- python-2.6_turkish.patch 13 Dec 2008 20:54:39 -0000 1.1
48 +++ python-2.6_turkish.patch 22 Jan 2009 01:13:20 -0000 1.2
49 @@ -72,7 +72,7 @@
50 """
51 # Normalize the locale name and extract the encoding
52 - fullname = localename.lower()
53 -+ fullname = localename.translate(_ascii_lower_map)
54 ++ fullname = localename.encode('ascii').translate(_ascii_lower_map)
55 if ':' in fullname:
56 # ':' is sometimes used as encoding delimiter.
57 fullname = fullname.replace(':', '.')