perl-Encode-Locale-1.05-lp151.2.1 >  A [Nh/=„~hm\-')5p{ L_ٝcQC<2OpXq7|Lv]l  4C Nxwje榙@=~&X1JVϯ~Sd_ːceV[˒dMK1^2el#9~)@v V_d?KC?лEd 2DᓬЭ2ʰ1+Vˋ̛4'n0vVd:x@i8Q90b2c0d5a6e06a18e19ee7f90b79e6b165bfc8a629637f5b201292b8ffab0ed8f69fa5c6b513ab4fe184981d6c53f1b86bd55fcaH[Nh/=„j;?:mhmZJl*\jJ0\?t/ `@m}߫Q>tfpWDD9"~5;fo"Z}kS;ݶƿ $,W KEa"f'FH>J0ܞt-?{c)"ky%W ~ѝgg"q{0 io^ :}@`UNyawG~QTγM0UeCPx$״imW R>p>?d $ B  5;D` n |    4Px ((809L:FGHI4X<YD\X]t^b~c'defluvwdxyzCperl-Encode-Locale1.05lp151.2.1Determine 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".[N]lamb60M+openSUSE Leap 15.1openSUSEArtistic-1.0 or GPL-1.0+https://bugs.opensuse.orgDevelopment/Libraries/Perlhttp://search.cpan.org/dist/Encode-Locale/linuxnoarch0A 9gJA$AA큤$[N\UwG [N\[N]UwFQI[N\1b5ded6313c0d57aeb8159171c34ca4c16607d260f590cf815471f5f69184fe3de452a44569493c105c5540e3a2360e459d9f75ba3496100c5f2437a5822faf6edfeacafbed5a0f2c4a2a3db3fb0274a7f210768d01c853c60b7feac841c83c867914c24868286d69eeb14ad631aabe168b712cfb125e568ff33f9f4d379ebcerootrootrootrootrootrootrootrootrootrootrootrootrootrootperl-Encode-Locale-1.05-lp151.2.1.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.03lamb60 15283851171.051.05-lp151.2.1EncodeLocale.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.1/standard/546b2dc2d3ea8b2d8e83046932521c65-perl-Encode-Localecpioxz5noarch-suse-linuxdirectoryPerl5 module source textASCII textUTF-8 Unicode texttroff or preprocessor input, ASCII text (gzip compressed data, max compression, from Unix)PϯtW䅝 (yutf-837db4156ae03430eff93fe72cb44bb75953c674a09d5a6462758ed61fd44dfe9? 7zXZ !t/R&] crt:bLL zsͥXz.vVRQ`Fq=:aRאz(2:lMgIZ:niͥ-ׂ$) R :Ij^ 8Ut~bwcZB9,:ӧZ9hqer}b=L (ϫ1âoIm{U<\dhY:BV @r߾wpr׾h a Fv .c9*ݡ|`qΡ0iH͵D܀;Q4u&w}?z-h1b H8 >,HFՓw 4w0]a v{)p'H Ir; 5򻕥L8ȶZo=Y7W1x ;Xn/)̜F |ԓ| od$rZUļ4Z4_s!>*64:{ܥQ;%)Cpf}Gʥܫo}5 l~i/@M } -ԥPequ-[esWH+a f0M5̆9b\"j YM-D`šLHGqOM7G?yZŇOp\PK2+6"b5]D0Uعz]j 6Lp}*;eX MF3_cb?X;Vr\hYJ;?m"~3ʺ^ EU zy!ҭ*+ ʝ 3%gc:׏z6)8CYʮ @wv Xʞeov,}z1 Zv^h(Ci)Wd]gouRbր(ml(G %;3U .Y>^Ze't$|LxK¥A>;@w>IZ/awljk-L!">__b^TzWXW*Y/}g:莎ϼ1"ˠ#yGX Vnv~?t[V븑?KCsޫ*FG g Ǟ+oaLN|787&OI= "g{K-4Yeߓ6ZK])P&ptA}r}y1Sܝ{#2-503 $ +Hˮ!_ Ҍ4]s!D5نAGZ+wxIBI, 326uJ'(xaڊUbӞ '׋'3?K( !`?ڨö[A2apջE@7WwĦGRF?8bz;yw)l6Bޜ7=(<#Lfh~μ\!.ۊ\_t]ҳW _9}BKNE3mBE`Dҗn1sב-(˸vKF\]6!:H;Aմ&S6cAhɽzֿhLW5b<ٴ !t+if0o3uhegG!~hpzVt5x#/9;4 AGONybc2{TOV Dw+N1M-˙B}ڽ%Nk{cWa "z4@.y+H|R'/&<nu=tceDPSVjO h?eQ'P!?L06 vԒ;9$U[~ޱXoH4iMg6Ȋ/VʯzΤzd@ugw`JünB3iD=c%m.paqQi٤7ݴ ќRx0lS=}UQ"y1%/nY_d #p~Z?P"8[tF#poIWUHdg'* D33W[ߡ3}Cy{v:gJݸ \Q*8PHԪr?asLX sxՍJш)+|@ƼU˵07#e[/K\(x'TzNH8qCǶHBz޿Ev P2ۢv2mVrsP%N/,B˦e 0G8ƒw=]' n Jݾc}ńx?2} )̬YӅk7L,QUQ?MV8(jW H *Np+ 8G"~t&eF},aU =bP f7dFB(~rkG'㠒<'(pC Y&jD./R]8dUJirޙJm_:XͽIe+ zf] m?{C7ipM$ YK'KuVw 6sRZt{M1SݨJ,G@:8[ILV3\[%kG rMgN$i*B7tNԼ20_RܪBЪx.!9]nT*9 )1]u50vI/߱,=Bh$ih֮ԋG +@'\ZgayNHP,h,I]\<#A4AV*Cŭh_U)]rt_hՉUCȖbH wz¿5ww!+Hu+zؑ~kUnkdcΡ fS,%/ Qđv7T̬zX䑱^If b:#n^n0p0>W4KZ~VOzdKU1wvz8y@×VQ>"BqfJ`2RpVlwm'KxxT՘֭9*dve!64+6]֭Bp",˗Ŗ{Q! #ml.] X:G*[J;e9w&\WxsXR(<}/_4b'8uy]q{fu0U* b '3E@xqmK^Af"ٹ0j_J6p^BQuvt ߫n3Vx\Z)no*ERBpD X&B^BlGGmmRoi[V6drd>m C|]AK.񜻍@ !\5JJYG2{g,2X m_3dp'bnW괰RjYzdJ(vgረ}f ^V/m6y NdWI̳ɦc=Hgݼ [_!% W' o7QE L'۶rX (&-7d'vɃ*ïwsum?&/$JCtwꞓ=x} " 25Bz5.Gf۬d3Qp& D#K]2h; t!jg#5-;b./t CI?[9 `-PxD,?-@NlR+X46(PB|mTϖv "4e`u-@X7):%ꪖ1Mfؚ"3* c{SR{`ᦜ0QJ a [}&Dө&JϋϸxGQV;vC| ƙbt//cBN?l.TBCZ\@ gIq׼|vgJwmfBa%W_7P>iJ(fוގW:H-!5_I!LTSpIt@,хf靎;%GfEv>ra8A/p%wU]x-]_ǻ=Ql1kHIZA"<[C1x 4.l`I!% SVQk>] ُѹL4LEƈTؾo0>GS.nIm¦I:P+QRKDFlҨ,ۓFmt+ :GM|U'KCIA"|C Ӻ3 ٷ a2_B4/bΚێY5.[cuE&(e^YQm[JfX{0ܵ|`̻nZI(x΃5UhfMx fypPeD#_jTu#ˮvp^7b`>Eʹ9%!ؒ:P$^?{+BWY2d˰dv-jex؜Ӳy/9>r5c`vhg0jF\UL7CҨh'QZe6‚S=̋1+%F?k|ͭm-bĕoUҘ wW C1F8/iP@wz>gaO#6 ޛ7DMHQO @Oľ;e.>[L 9b_DqLi:a8wHw%as5%C9@ )һ8EsubuX?Bь򹝑qF9DAth6<\[yȄ:)=% DG= յUf0#4!o|/-qS19Τ3eů6}>ه${SMaf @WZ쵻`.H"t^hdTb@l_PfhV;XP22Y%oDV6A4 yߓjѫp (C{~^/!YkF|~PLcVR/NR?;Z4RcN|"0H'H<@[7%']v Q)a@_9MBˆ eٜ*~aQhӃ$ L-յzЗϽ[fb-IWiu%HaVv ÇJbG?wN}_R0e;;P3wgyKX@5έ;h>@? 9+1Ԡ2`8&3(+45F3֖T}m>3_o\~CBL H\.Ubku]%.1_JDA)p>_S'x -cEIbJErcsf =Em wi #q]!$ga:.Gir:ОauNӇ)a,8w:?F"iXќY}FڳAG yVo9*`n_7OmI/l˜fyoy+N9IMnO&-9,~qR>Zʵ2 nx ~5g,^.t} $_1ʨs'# SzU݊OȈM ydn(xGiٴ R\O&y=Yxk~VO\6kh -RpgPbAWN^[# ܥ!"`v-fG*'(?+>w^HiVqePƈ>v1Ҿ9]9[~9DAU/,I>A*Jg߷i' bO6)lSSEy_{=J_2d?y,Y"}Q@c F/aG-420tE=.LJt@50z=st|ͧ$Y%ݼ&r34ۺa?1!U=V%fZ4c:ܺċYH px,g]B/K`g[9Q׫1 IEl>_ԴE.,Rru!FgqvO].gWcP;X\Yv$^gh4҉`v/<&Bŕ=cY Szó~]cl9udĬhuĖ'48|!>(@0LVȻLɅj w tW1TiR1.BݣLqFc()C]kc^C=q {Y ,vO2sg 05 u;pߚ]T5U̓ef<)ҠwLf&e#w1K(chY0ޕcb\b%[",.;;ӞGP{&{.k]c!!NC x@.x:˜W*bmi-=x"F #| $ORy VIzMWfF,<"ˆ I{S@a&WCE?oG=N%k;lkVQqgHz`<{kmݱnkwJ]0m1BH4l#"0ɤ LlsxV~>ՙsr.#1fWTE>#-%@~ [D1"+#Y!ك%g[?dƉ?}b9^Wj-6 Ǽ+[1|SDV HK,;ͮ=ܰ 3}p ( ypc2֩MDԫnn5KDi´0?şqqM@{%ű*BGS dU(c^a?v`ɬj!d}^!BTNNX54x-`MbJr YZ