perl-Encode-Locale-1.05-lp152.3.2 >  A ]./=„ON,kjJFP &_L,0K"iM4ar^5eZc4@ B-r#A"Qdg0ϗس U2 }vy\Ck:4_Bncel qj w:OHKv\N^#KWN hF罒<"_a O؃>`)p9jHrE]=F#c'_1e+,W<r>Yfh܋ARTD0KƀJR>p>?d $ B 9?Hd r    8T|(,849P:FGHI8X@YH\\]x^bc+defluvwhxyzCperl-Encode-Locale1.05lp152.3.2Determine the locale encodingIn many applications it's wise to let Perl use Unicode for the strings it processes. Most of the interfaces Perl has to the outside world are still byte based. Programs therefore need to decode byte strings that enter the program from the outside and encode them again on the way out. The POSIX locale system is used to specify both the language conventions requested by the user and the preferred character set to consume and output. The 'Encode::Locale' module looks up the charset and encoding (called a CODESET in the locale jargon) and arranges for the the Encode manpage module to know this encoding under the name "locale". It means bytes obtained from the environment can be converted to Unicode strings by calling 'Encode::encode(locale => $bytes)' and converted back again with 'Encode::decode(locale => $string)'. Where file systems interfaces pass file names in and out of the program we also need care. The trend is for operating systems to use a fixed file encoding that don't actually depend on the locale; and this module determines the most appropriate encoding for file names. The the Encode manpage module will know this encoding under the name "locale_fs". For traditional Unix systems this will be an alias to the same encoding as "locale". For programs running in a terminal window (called a "Console" on some systems) the "locale" encoding is usually a good choice for what to expect as input and output. Some systems allows us to query the encoding set for the terminal and 'Encode::Locale' will do that if available and make these encodings known under the 'Encode' aliases "console_in" and "console_out". For systems where we can't determine the terminal encoding these will be aliased as the same encoding as "locale". The advice is to use "console_in" for input known to come from the terminal and "console_out" for output to the terminal. In addition to arranging for various Encode aliases the following functions and variables are provided: * decode_argv( ) * decode_argv( Encode::FB_CROAK ) This will decode the command line arguments to perl (the '@ARGV' array) in-place. The function will by default replace characters that can't be decoded by "\x{FFFD}", the Unicode replacement character. Any argument provided is passed as CHECK to underlying Encode::decode() call. Pass the value 'Encode::FB_CROAK' to have the decoding croak if not all the command line arguments can be decoded. See the Encode/"Handling Malformed Data" manpage for details on other options for CHECK. * env( $uni_key ) * env( $uni_key => $uni_value ) Interface to get/set environment variables. Returns the current value as a Unicode string. The $uni_key and $uni_value arguments are expected to be Unicode strings as well. Passing 'undef' as $uni_value deletes the environment variable named $uni_key. The returned value will have the characters that can't be decoded replaced by "\x{FFFD}", the Unicode replacement character. There is no interface to request alternative CHECK behavior as for decode_argv(). If you need that you need to call encode/decode yourself. For example: my $key = Encode::encode(locale => $uni_key, Encode::FB_CROAK); my $uni_value = Encode::decode(locale => $ENV{$key}, Encode::FB_CROAK); * reinit( ) * reinit( $encoding ) Reinitialize the encodings from the locale. You want to call this function if you changed anything in the environment that might influence the locale. This function will croak if the determined encoding isn't recognized by the Encode module. With argument force $ENCODING_... variables to set to the given value. * $ENCODING_LOCALE The encoding name determined to be suitable for the current locale. the Encode manpage know this encoding as "locale". * $ENCODING_LOCALE_FS The encoding name determined to be suitable for file system interfaces involving file names. the Encode manpage know this encoding as "locale_fs". * $ENCODING_CONSOLE_IN * $ENCODING_CONSOLE_OUT The encodings to be used for reading and writing output to the a console. the Encode manpage know these encodings as "console_in" and "console_out".]cloud114M+openSUSE Leap 15.2openSUSEArtistic-1.0 or GPL-1.0+https://bugs.opensuse.orgDevelopment/Libraries/Perlhttp://search.cpan.org/dist/Encode-Locale/linuxnoarch0A 9gJA$AA큤$]UwG ]]UwFQI]1b5ded6313c0d57aeb8159171c34ca4c16607d260f590cf815471f5f69184fe3de452a44569493c105c5540e3a2360e459d9f75ba3496100c5f2437a5822faf6edfeacafbed5a0f2c4a2a3db3fb0274a7f210768d01c853c60b7feac841c83c867914c24868286d69eeb14ad631aabe168b712cfb125e568ff33f9f4d379ebcerootrootrootrootrootrootrootrootrootrootrootrootrootrootperl-Encode-Locale-1.05-lp152.3.2.src.rpmperl(Encode::Locale)perl-Encode-Locale    perl(:MODULE_COMPAT_5.26.1)rpmlib(CompressedFileNames)rpmlib(FileDigests)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsXz)3.0.4-14.6.0-14.0-15.2-14.14.1U}lU-@O;@N, @MlM@M~@coolo@suse.comcoolo@suse.comcoolo@suse.comandrea.turrini@gmail.comcoolo@novell.comchris@computersalat.devcizek@novell.com- updated to 1.05 see /usr/share/doc/packages/perl-Encode-Locale/Changes [#]# 2015-06-09 Release 1.05 Mats Peterson (1): Use GetACP() to get the ANSI code page like before Thomas Sibley (1): Conditionalize the Win32::Console recommendation- updated to 1.04 see /usr/share/doc/packages/perl-Encode-Locale/Changes [#]# 2015-01-12 Release 1.04 Ed J (5): * Actually include all the tests in the MANIFEST * use Test::More and warnings * Tidy t/alias.t * t/arg.t TODO some actual ARGV testing * Use Win32::GetConsoleCP/GetConsoleOutputCP if available Gisle Aas (3): * Documentation spell fix * SEE ALSO Term::Encoding [RT#98138] David Steinbrunner (1): * typo fix- updated to 1.03 Documentation spelling fixes and tweaks to improve testing on Windows.- Fixed typos in description of perl-encode-locale.spec- update to 1.02 Added supporting hacks for GB18030 and roman8. [RT#66373] [RT#67010]- fix deps, add o perl(Encode) >= 2, perl(Encode::Alias)- initial package 1.01 * created by cpanspec 1.78.03cloud114 15689963831.051.05-lp152.3.2EncodeLocale.pmx86_64-linux-thread-multiperl-Encode-LocaleChangesREADMEEncode::Locale.3pm.gz/usr/lib/perl5/vendor_perl/5.26.1//usr/lib/perl5/vendor_perl/5.26.1/Encode//usr/share/doc/packages//usr/share/doc/packages/perl-Encode-Locale//usr/share/man/man3/-fmessage-length=0 -grecord-gcc-switches -O2 -Wall -D_FORTIFY_SOURCE=2 -fstack-protector-strong -funwind-tables -fasynchronous-unwind-tables -fstack-clash-protection -gobs://build.opensuse.org/openSUSE:Leap:15.2/standard/551519991a8aacb74440fa1e0adb97ad-perl-Encode-Localecpioxz5noarch-suse-linuxdirectoryPerl5 module source textASCII textUTF-8 Unicode texttroff or preprocessor input, ASCII text (gzip compressed data, max compression, from Unix)Pcw^lquOUutf-892c9cc27678dd5b8ffcf62f085f7c468c51543d36aca87c3740d8e1c127ca514? 7zXZ !t/R&] crt:bLL "o(8^{7$ݧumq\"0)N08yX>aR跪UqhVabI | zҒΫY:&>5 *~DcQL_E<ϊkg FV왴6jg^5d&xVP|툫ZtBB%zc5#o;SX뀗`kZX~F> Mk?cV [wruhP*m=[$2]IAIF:&aj?y`rLq]#!{) !ُ>ߐp>VZkv0.Du (429bE >F tqwc(ǯ I4Vg1 3&$H$3 η~ܷP\҂-mxZ2;Dd.CfmH_Z )OZ8]q1V!jZ[wGw2@p" 6 Bky6F, %30s@涑_B [phmX:]6VS~:D He8 '8G/Gf€;DU'H]ch=EQ n}`Pv-$I*p0.dٝkg 8^U1i|:EU.^D,wVD}MůeۣR5h!Ռ4ϟא~(l6Zqe\d䐄pH?kxgxN٧5k >g*mJ=6<ߡG@TW((yPd. q$[:ɶjO$ C<&'dU<\⿯K Y^kսHN4?v0̊&bvOƫyb՟dw6uK PTٍB4U,I19B暸4. W4? vk&m!z4W+FZc+_%:ݰǤf{ғ8WvSy6/kMLExjfDI.]Tm)%+dn'Ii#x|d#O\!C b\}/bJPIL>D!/@N3ҭN:5 S(Ha(7s޻r`򌭼?+u/ޗVaFD*qZl>H ŕ+iPS9t?tuzL!׮^ i2){^4lLwmvCr``[R1f+@ׇ)^Y¶vC8Q~Ǭ5,|a| w,ѿ ш&%%^'__KL¾ cSl_2 bܽn y<-N ko,qwl$?v;)9a$7>4B6p g#$U.l+2>EB|g;>us R0C*:DO5 @ 0 ~(|oLESD DZvk;Lx`E=WI@==YXO1R *ȭ݈kISdNôV?x@Bs UzHTxp'x!GIc`?lt x@=?H@qBA'bJ9RT! 1;Frrr(jm0{lZ!ƕC).Mt@ZV}\c:}0[-4GOI/ì)([e)$C}ЛnWB87Xt…`k u^sޫr9[L {|#8nzmϗx#gR 'lѶܯTq<]ݞha7wk<3 b#𘾈q ̯|]-L-ŪH nAfi&=CmnlY JG)$CӑeٵcR;g `&n2J.(ƃŰS0.@ &'doq4UbSt~'rBN!ÂX{ v"*̷M&TuV}t'.3Tޗ=_4OuS9491k: r*PxF1|9X1Ltu`?P_@g` 0#F|<8U=]Ϳ7謽 a,Qd-(uU]u]RNO27+%y!ߣY7 ‹06R+k7̆&=s.KYb- ͎g.*A?cCu+f'&ZC/^aai#Ckϛ${N8YfC̩E>鄎} M {*ǧpt2p?L'] 28jv}:Ռ@;^d$:wߒ)٣fbÖ.)7I*vXے}uqiotK, S8يV.Ьߴ]`0p޼Ol/iѭ?R[`YD|}7/Ȱ4CvOIyz"VMhf>x өe?P?aem' +3Mޘ P7MUUhuŌÐ ),N}:`u /p`dx;xEw%lS5 w:>6>2-;k@V]_vJz#o:EV:e:5, 4sIbhvY9(l;gR50r%suP{[b;+[X[7CYX0]oR/%Y"oVSTcLhVb{K7>;|'Lcdv%}ޤWc4B֟ S3ރpkd9b&spU d F\ s ; Q^9Uik.׳e0o `ǭؘ!=2S ]u hHKvT%)DAN\0<عoLa:;2`Dnĉzto%߲:9о9K9cG@ 4BR`I̗7v5 vnWamFе7A)] M_[ME&Eΰ ~zJe¸ovU8ȥZD(w5dqв#_>Llu!{BΎHwπ6fF [X " VA6!! Y. cWP2?@M t:n*^}hoS(޺PM_Lh^/5쬷R]1}J[5gwKfd ]P=|mI+#_n+4mf' >3lNfQԫ NDT|{5/)+NHBW'W&8=7J2 ϟiD\VX, ؑc*#xВ$#EDsmNjGѦ˙IOὊC%4)i͏~ #QYˋ+&FwP kj:`c]ʖf+CDv/L(!]VB횓; pnfM3Y}562GA9$6ȣyJjs(<NgڐT B oE *&qVoWnW<-H5]̏f! %ǚGaYCFxy9jGEYbTسti8r!sjդv?{)-f/Rْ賯^S-s\reLZZ5BjWYt:ùN$ [9L^hT\,ZZBs'rE@ڪJng_< %-2LU JBֶXU).Flܻ `!yLBispJ*s-8qxףrTL^Wh>v{1W\_XH;EuGHӳI{#Ji -Cd|OfZRM~kBp-0z$W5rϚ Mވ[bᶼj\+ 9OOmO*-f[M" 8:hƌ ٜ)G+E$mm4TsoSRߔs|nCő(ɠU;Z;9i>P.11X7ɂ|Տ&" h 34 ֳ͞85snУc)͠.\Əh.zjW; xIcE{o}0:CUy[fs0c`⭏ali1V麷dS'RjII]Zؿl E^yp]@)" A.e)^ О?/6#s&+$hg ,CXޙEX.L;$)QB/ s&eݜͮW%B%WyQ~wT)+!ÇwOƙnpŹZ}|]ʴuhñ`jIBmkj%wְ>F>8dX K`zREiQ 'n@F4ݩWA a4?0S4X$S%mo:*PȤ;^޻O]Bi~ϑpgj{"6;kYVah5]YstHx^jFd*Gu[;b!k\ Y 2a["@FAD筊|ƾvH3wEqcjmL|$) wLTci6g>Ax+QI?PЧg?dNb9B4Zn=WayH`T"*m* r$Vo%uµD`JKx"!V܉e~m@]4y1s:^` ~BDEHҀeks5dx-w+ i#Oɻ9/V3¦J7HQk(3 }ëWE•"l4(} H+)RvWƎQ G2 ۤNåOG ~ ~_su'@D€[C#`}׾h΋BݥȎj_|"N/H/hCvSAJ%]=e |wiHϕ,0 #&+!['2_RRRe9ޘ c[!)I-@[Sr6e`L#hNtvE" I1AFJFƿ=ᢀ7 wwv5ᄔ ],A]b[TF7C 6d{ltA= )}չB1FFvX'N(A vXJ5 o6urO21ϳ_\LF @iǣAĤ6hQ9w$]߾M b 5ZTv̯$Ĭ!xU]0󂐶!1Uԛ<ÏJ7wLvʘl lD+ȊK^쀡w.EBzFK~倸q(.Qi)a~g3S[ ci:aFKds7P_3u^&xI$gx#:kd 瑡$wghN2ɯ Z(u~[$N9pľLMRj>Ir{D^b HAh:j0?Z+sVN6[{:2w^lCSfT0fk-߽emR3YaρpLwA݁)ӝ; :9lwM$Ký@qM:PF&&̳jʩm?GHyF*PmN$ zҖvضX".*X]@zp7Y}iZc w9΂Y&vͥ{ ;# %@ss5#jrA<*Ga"ϓd_y2 Q`'zgQu%uI(c&nH)'I K&wiuTr4muJxݵ$= wT8fA Axv@~IQ40d%T־M'JjG$Ud.FHc?ܚ /KkD"3ڧQ1s Mb~!f@K`VA3V; f|#YM+r‘n+ꪳtN@cB W&rh,k):j@Ɇ7oydwDn\ܻ:w\:oK?mpVt4r$2A3 G]lU9>~uZQq,rYcQkZ;EM{>L]kWg); ^0Y+ ɉg .ۑn:9{Vo;oqv*z0фާR6Y:⭙4 \"VsZ*,egY(4,wxuYWѿ),3;,WrX MH;D,YV OV:JcoŔ9YC_g8(BR3⭮F.G?G'd[\yOΏrũܯ%}yD%Gx0W>y +o',kAߑgvtEi[>SɤXr&Xm6bc孆ݓ\`R Ifl~Xt EsUsE'=QH xY0|V/D=bwnhr@)jYWЩ~BNE!.fT`%}7e7rP Qh ͖e =s!D xդ<c؆PǚNt%D۽@Vf 'ػ\k)UJ`TF%4l֛W h!l/,C )64cn*Ȯ @bc!1%ub!E8߻3.o+0+j}ĕBJ6#+bwDz ȯ_'PvB'0fZ̜:CǁIM YZ