ghc-base-compat-0.11.1-bp153.1.20 >  A `nX!M@eeeOqoDܼl%/Ī8ީږ_|JȲ'3-.iu@1(ɧE:B% J 8rvC4fr2nW@ɳ ωIP@#M@q+|˾ a|2gFS$0FH*+zХ" [zRӼRd1nGvq .eL'b"| ,tW?)NӚ>848d9fc9fc9bd9ea95284b9c50493499c3e12d29af29ccd06e40f0278d2bde872a93061cc87eab4417134c5401a0f658ae437c8dh`nX!M@eee'Y2#`msduāvA.ϧw w(WmE|X` ۜm፮&(3XU*NSRdS9gO9JxLOpjbc%[X"s{17e7 ?6+o\U E,HŻ{g37,F/wwQ+ɸ]Y[h`xo}Mv ߭?;$BVh[F3džMu9QӪyA_.r|]+>p>+,?+d $ C $*4D L T d  $P`  ( 8 9 : F&G'H' I'0X'4Y'@\'h]'x^'b(Zc)d)qe)vf)yl){u)v)w*Xx*hy*xz****+Cghc-base-compat0.11.1bp153.1.20A compatibility layer for baseProvides functions available in later versions of 'base' to a wider range of compilers, without requiring you to use CPP pragmas in your code. See the for what is covered. Also see the for recent changes. Note that 'base-compat' does not add any orphan instances. There is a separate package, '', for that. In addition, 'base-compat' does not backport any data types or type classes. See '' for more info. 'base-compat' is designed to have zero dependencies. For a version of 'base-compat' that depends on compatibility libraries for a wider support window, see the '' package. Most of the modules in this library have the same names as in 'base-compat-batteries' to make it easier to switch between the two. There also exist versions of each module with the suffix '.Repl', which are distinct from anything in 'base-compat-batteries', to allow for easier use in GHCi.`nXxobs-power8-05(xSUSE Linux Enterprise 15 SP3openSUSEMIThttps://bugs.opensuse.orgUnspecifiedhttps://hackage.haskell.org/package/base-compatlinuxppc64le$`AA큤`nXu`nXm`nXl;6c0317468270218b5558bf41f772dd6050ee1e2c86d1ab28df5be975c7e3b443788b0c0ef27a124ddab8917e477fe900f67240eb62bc332b2e4d9c33a9be86e1rootrootrootrootrootrootrootrootghc-base-compat-0.11.1-bp153.1.20.src.rpmghc-base-compatghc-base-compat(ppc-64)libHSbase-compat-0.11.1-AU7kFoHd9g4AbsEVNqQYmh-ghc8.10.4.so()(64bit)@@@@@@@@@@@@@@@@    libHSarray-0.5.4.0-ghc8.10.4.so()(64bit)libHSbase-4.14.1.0-ghc8.10.4.so()(64bit)libHSbytestring-0.10.12.0-ghc8.10.4.so()(64bit)libHSdeepseq-1.4.4.0-ghc8.10.4.so()(64bit)libHSghc-prim-0.6.1-ghc8.10.4.so()(64bit)libHSinteger-gmp-1.0.3.0-ghc8.10.4.so()(64bit)libHStime-1.9.3-ghc8.10.4.so()(64bit)libHSunix-2.7.2.2-ghc8.10.4.so()(64bit)libc.so.6()(64bit)libc.so.6(GLIBC_2.17)(64bit)libdl.so.2()(64bit)libgmp.so.10()(64bit)libm.so.6()(64bit)libpthread.so.0()(64bit)librt.so.1()(64bit)libutil.so.1()(64bit)rpmlib(CompressedFileNames)rpmlib(FileDigests)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsXz)3.0.4-14.6.0-14.0-15.2-14.14.1^0"@^@]X[@[O+[M@Z@Y@XQ@XW8W @VvVppsimons@suse.compsimons@suse.comPeter Simons psimons@suse.compsimons@suse.compsimons@suse.compsimons@suse.compsimons@suse.compsimons@suse.compsimons@suse.compsimons@suse.commimi.vx@gmail.commimi.vx@gmail.commimi.vx@gmail.com- Update base-compat to version 0.11.1. [#]# Changes in 0.11.1 [2020.01.27] - Sync with `base-4.14`/GHC 8.10 - Backport `isResourceVanishedError`, `resourceVanishedErrorType`, and `isResourceVanishedErrorType` to `System.IO.Error.Compat`.- Update base-compat to version 0.11.0. [#]# Changes in 0.11.0 [2019.09.06] - Sync with `base-4.13`/GHC 8.8 - Backport `MonadFail(fail)` to `Prelude.Compat` and `Control.Monad.Compat`. Because `Prelude.Compat.fail` now corresponds to the `fail` from `MonadFail` instead of `Monad`, some care is required to implement `Monad.fail` on pre-8.8 versions of GHC. The following template is recommended: ```haskell import Prelude.Compat import qualified Control.Monad as Monad import qualified Control.Monad.Fail as Fail data Blah a = ... instance Functor Blah where ... instance Applicative Blah where ... instance Monad.Monad Blah where (>>=) = ... [#]if !(MIN_VERSION_base(4,13,0)) fail = Fail.fail [#]endif instance Fail.MonadFail Blah where fail = ... ``` This approach is also backwards-compatible with previous releases of `base-compat`. Note that the `MonadFail` class has only been in `base` since `base-4.9`/GHC 8.0, so accordingly, this can only be backported back to GHC 8.0. If you wish to have a version of `Prelude.Compat`/`Control.Monad.Compat` that backports `MonadFail` to older GHCs (by conditionally depending on the `fail` library), use the `Prelude.Compat`/`Control.Monad.Compat` modules from the `base-compat-batteries` package. - Introduce the `Data.Type.Equality.Compat` module, which re-exports `Data.Type.Equality` if using `base-4.7`/GHC-7.8 or later. If using an older version of `base`, this module is empty. If you wish to have a version of `Data.Type.Equality.Compat` with older GHCs (by conditionally depending on the `type-equality` library), use the `Data.Type.Equality.Compat` module from the `base-compat-batteries` package.- Drop obsolete group attributes.- Update base-compat to version 0.10.5. [#]# Changes in 0.10.5 [2018.10.18] - Enable `BangPatterns` in `Prelude.Compat`.- Cosmetic: replace tabs with blanks, strip trailing white space, and update copyright headers with spec-cleaner.- Update base-compat to version 0.10.4. [#]# Changes in 0.10.4 [2018.07.03] - Make more modules `Trustworthy`. In particular, fix a regression in which `Prelude.Compat` was inferred as `Unsafe` by explicitly marking it as `Trustwothy`. [#]# Changes in 0.10.3 [2018.07.02] - Backport the proper fixity for `($!)`, which was accidentally omitted in `base-compat-0.10.2`. [#]# Changes in 0.10.2 [2018.07.02] - Sync with `base-4.12`/GHC 8.6 - Backport `RuntimeRep`-polymorphic versions of `($!)` and `throw` to `Prelude.Compat` and `Control.Exception.Compat`, respectively (if using `base-4.10`/GHC 8.2 or later). - Introduce the `Data.Functor.Contravariant.Compat` module, which reexports `Data.Functor.Contravariant` if using `base-4.12`/GHC 8.6 or later. See `Data.Functor.Contravariant.Compat` in the corresponding `base-compat-batteries` release for a version with a wider support window. [#]# Changes in 0.10.1 [2018.04.10] - Add `Data.List.NonEmpty.Compat`. - Reexport `(Data.Semigroup.<>)` from `Data.Monoid.Compat` back to `base-4.9`. [#]# Changes in 0.10.0 [2018.04.05] - Sync with `base-4.11`/GHC 8.4 - Backport `Semigroup((<>))` to `Prelude.Compat`. Note that the `Semigroup` class has only been in `base` since `base-4.9`/GHC 8.0, so accordingly, this can only be backported back to GHC 8.0. If you wish to have a version of `Prelude.Compat` that backports `Semigroup` to older GHCs (by conditionally depending on the `semigroups` library), use the `Prelude.Compat` module from the `base-compat-batteries` package. - Backport `(<&>)` to `Data.Functor.Compat` - Backport `iterate'` to `Data.List.Compat` - Backport `showHFloat` to `Numeric.Compat` - Backport a `RuntimeRep`-polymorphic `withTypeable` function to `Type.Reflection.Compat`. (This is only exported on `base-4.10`/GHC 8.2.) - Introduce the following modules, back until the oldest version of `base` that can support backporting them. If you wish to use them in conjunction with older versions of `base`, use the `base-compat-batteries` package. - `Control.Monad.Fail.Compat` (back until `base-4.9`/GHC 8.0) - `Control.Monad.IO.Class.Compat` (back until `base-4.9`/GHC 8.0) - `Data.Bifunctor` (back until `base-4.8`/GHC 7.10) - `Data.Bifoldable` and `Data.Bitraversable` (back until `base-4.10`/GHC 8.2) - `Data.Functor.Compose.Compat`, `Data.Functor.Product.Compat`, and `Data.Functor.Sum.Compat` (back until `base-4.9`/GHC 8.0) - `Data.Functor.Identity.Compat` (back until `base-4.8`/GHC 7.10) - `Data.Semigroup.Compat` (back until `base-4.9`/GHC 8.0) - `Data.Void.Compat` (back until `base-4.8`/GHC 7.10) - `Numeric.Natural.Compat` (back until `base-4.8`/GHC 7.10) - Introduce versions of modules with the suffix `.Repl`. These simply reexport the contents of their counterparts without the `.Repl` suffix to provide a globally unique namespace to import from in the event one wants to import `base-compat` modules into GHCi. (In `base-compat-batteries`, the corresponding suffix is `.Repl.Batteries`.)- Prefer the new %license attribute over %doc.- Updated with latest spec-cleaner version 0.9.8-8-geadfbbf.- Update to version 0.9.3 with cabal2obs.- Update to version 0.9.2 with cabal2obs.- Update to version 0.9.1 revision 0 with cabal2obs.- update to 0.9.1 * Use the more efficient version of replicateM and replicateM_ introduced in base-4.9- update to 0.9.0 * Sync with base-4.9/GHC 8.0 * Weakened RealFloat constraints on realPart, imagPart, conjugate, mkPolar, and cis in Data.Complex.Compat * Backport Foreign.ForeignPtr.Safe and Foreign.Marshal.Safe * Generalize filterM, forever, mapAndUnzipM, zipWithM, zipWithM_, replicateM, and replicateM_ in Control.Monad from Monad to Applicative * Backport .Unsafe.Compat modules (for Control.Monad.ST, Control.Monad.ST.Lazy, Foreign.ForeignPtr, and Foreign.Marshal) * Backport forkFinally and forkOSWithUnmask to Control.Concurrent.Compat * Backport Data.Functor.Const * Backport modifyIORef', atomicModifyIORef' and atomicWriteIORef to Data.IORef.Compat * Data.Ratio.{denominator,numerator} have no Integral constraint anymore * Backport modifySTRef' to Data.STRef.Compat * Export String, lines, words, unlines, and unwords to Data.String.Compat * Generalize Debug.Trace.{traceM, traceShowM} from Monad to Applicative * Backport errorWithoutStackTrace to Prelude.Compat * Backport unsafeFixIO and unsafeDupablePerformIO to System.IO.Unsafe.Compat- initial commitobs-power8-05 16178443440.11.1-bp153.1.200.11.1-bp153.1.20base-compat-0.11.1libHSbase-compat-0.11.1-AU7kFoHd9g4AbsEVNqQYmh-ghc8.10.4.soghc-base-compatLICENSE/usr/lib64/ghc-8.10.4//usr/lib64/ghc-8.10.4/base-compat-0.11.1//usr/share/licenses//usr/share/licenses/ghc-base-compat/-fmessage-length=0 -grecord-gcc-switches -O2 -Wall -D_FORTIFY_SOURCE=2 -fstack-protector-strong -funwind-tables -fasynchronous-unwind-tables -fstack-clash-protectionobs://build.opensuse.org/openSUSE:Backports:SLE-15-SP3/standard/5b9d2e9fbd32d4971be9e26d9e8022d4-ghc-base-compatcpioxz5ppc64le-suse-linuxdirectoryELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=3bce83ccd31c7d764c7f8504bcdb3caa460bddd6, strippedASCII textPR RRRRRRRRRRR R R RR ԥNAEP7utf-8643a894a0aa4a0abf15f21d19be5c729adf05dca8989378c7bc6403284b73d22? 7zXZ !t/+8] crt:bLL Cu,@i?)?O gbsYj;V\,UMT&GҎ;ax: tni1gC˶ʮ4VipD ̛ 5Y +RsT 56u Zhcwlj$v@Rx5 #:ƨ`7~Rj\9`'] 6;&B XTz8."B(pG?.ky|PwEy0C>$L{+&#|S@VsXGB4#sUvh-è׿l|9/Ι72t~[yymͥDa[6[ʬ "#n~r'37}F7Ce,v wc>8#kyzew&pe.&sB}mEtO:@zbwFo( 4uAomA԰#e1;DoL;)UאHY_j37U[[ʋT=?(#$KްL6@o#Y]g3fb d$/s$⃞ [UdN.'$}9gPHKjt~?(-D.6_5pyi'6v(ml#I@ɉV#%H EVC~K\,`6։gr݈#h&N?Gy6 ^+ľΒ}׶/Su$G9 $rw/6%>W"Ceªƫaq^E_*70rF$_j=6),Zq%4=.Vvyg9Sx,Z fAߠxrQx3J;,RڡG ~ơ /|NX"P7o *R& ;X f\Lh<1`諥m~?4_m)9J+(Z-64`,-THq!7BYa* lݶPqUSBR8s%owA "봵䢨)D)4AlvQs8YU8s!9zcɜ%C[ZR(͂ 0e_C b6tnQ>yp "%l왗WK*?@8TEt` ɥ4d<1f;J] 4$_vc9)/b$NS@E f&s;V`#ȸyǤJʉB~Zs {]ZXq+ Lo:?ϧ.|fK|ԯr[ ˉI>f 2\ڤY6x8vGX Sq9-5 l=WAI/jj][m=BEE`ښ4|a 2PKcw,[ߧ#p>e] h+1!5F +$擿2<&dO/uCA#nsm~wJ;^E g.6l'x{'CP{3{0ג `g4YUgӔ2:ozFOmx{PKTzzI?V?SRn)c=5*~z9Ԗl 뒖.KDG>Qrry?0!`GBn LJP*,4UJ7)HU`yHITAt_+x1R p1ֽqP6? H.GuyVi<ar]Ae5 -,/_nS2' N* ęBr]9* Og*#HG&'IffݳX7{0(c7r֠C('Ojd"cP#;Ou K Faǁ.m:DBۇrT/]eY&p/ M($0?WjiM.1X_  7y]<ҕu9^c0oF3&V'ݱ9л%n UEEUZ푐>]g,5IhEn-ٛaeOjZL7: Z#^ѕ` ERt_1&b lIy^-3~RpN9CVڙ+:YuJ \bAskXd +0<$ aaI.~zڎ.]Ј0#0FqPIDdx-52N5h0C3z7ExocM:T%Cޒ lQic Fd駼-zyTds5vOT |ho=´'GZ/h\ֹG'˕ac};L-6.HnfN>>՝tlkֵߥY"(qaey j!R$9f"c@V%hGe+ Brȫ!D6EdgL`&IE7ldң)`+U <>uDrCP-[t(6N%ptTդ/!,V5o:=~hgn嚧Z&&f(eK`|N\\Py> t4ZS[R5"2d4F @ڐ[pM42xZVz+y-ѹ&R됀~V [ʁufb)zMưf3S@17VO%52˛嬳ǐS$MN 6$^.e(j"dXG>eWX*"f[hR΋:Y`ǐpH#FFE}rmk 8cZ('mKT`Hx4V`ris/*»R q++!R<3lsaCI:4~C,O[ ,[pl̛tl۴I Fu&udY&vrfyJ4g>6ϭ7ۜlff- ڡqUWsiظ߽Ai) .A:Ň"{+轁4G>,*֩"RLsrbe״b KPQBOs%eҩUc:VMwA<edXiP%ƕ-pt$WUⒹ8+& E g*kRwRӵ El`޺Í L}RZBigXw&Y$(T{f;'ϴrm@adX? l7y]-V"d^3&&[y1pbG7̂F9;|v yKW0/ #wtEZl9 *P)\b(q݄xjݕMAnq쑋TRj=jXV{C]ֱi9YN;Ч`YS,u4Ne3yagnX{?]w Jmmb>(W?g/g_u6>&u,2TO!b}|F *XhVglsa1…Hꧯ8 }CMt*A롦bWCs"@X&IQӲ'A5q;)V@:o{OH>[ SqQˈA,ba>E>N+> 9s"pʱ x{͚/#b S=-|ujۤ^/.0dѣH/sШ$sW,0YOuޜ6ξaO'gZ{Zt[T 0D*ަl{q<a,/Á$1왌2!4&zdIҚ ؋< T7.h +#Fku6-Ev,PlΚycL;SjWW=ñ R$Ltqbp~~Oܑ+-C [>Vrqk/ UL݆&3I.Czd.7._ѬYdmS]`ˡn%z= lXWgžmޖJ#R=iZW%Bepe{&߯)|tjF糅$!+Z OYaLqevX$ؽqdRފ=l{N?n5mqЂ0-73kg]7~OVp5^~@*",fJSnbģJ+Wu4lB,}8 {%"iv˯ F Yaa+nֹER=-1f2|Z֣6Fے*Prg$>v*3D@,ʱ?n< OH3'LP"MWBDo2('lz0@jڭRH.RcR$Ki Yy@D=hkj듅(@*=:.f&Q!HqoH.LI=}x  &GeEknd=&Jrc v強w hl8ũ[,\xY>xr|mA.X]W# ӑ.7m)U=@swJA ;{q:%qMst7;\]xTD܊ڕnD;C .0\[k_ 1\k.3oKӃNow"5@(tg "VQ2TbV4"xz(ék RDZv&nc9(A~׻Hc? ZZ$ ?_J)E+WO]Dl) aqyIa.6YeЩ6:h^&~!JXq?.c\O^Y!^Ol1Փ# s+6);+Vz9٫,"G,`_xF?ɾ VW5t7SeO%VcnTQ՗.me}?v%Oo2! x}Ʀ<)928Qz˪b|Z`bp8P@UЩ=D׋h~Xkz=Êrit ~1vUH =ϑ[ݞjLlF JN6ߥK@^j~''L_]BƑ-*sݧםrҜE"PÆhr>t, j  XoƄ[==^!;2sz BwZ=^d\P96%-I95Hf+@HКWۓIE߬GiFI Y\e3lB`q[;,mްh*ESOᣟ7%<ҧx3-TJwJ9ޠIWV-IZ2k^^ Ϲ'1'y<5SٛD!B^Oos.-ZvJDؾ\F ~&稺>Xe-+* 'c^)4:B9 +-ViXQV{RzҺO9}tzF*+^)_ݰj3],?ܩ`8߭w` bz'G5 Ȅwp0TcOy O'9Tꌶ[\ER >A "/m-Mb@VH3k/)bpq缾4 ̋Aߨɽ#KkõSIX YiZk~hy#LM|:.#_wNP3b.ƥ΁'wi/2>d8ePX ٢eaE(m," wo<$.4`;"o6'[\S\Wh(+f F#Yj:t_0֑2ڟ+=]ar{̬ĩ#!NHnI!t/L7SF-`:?}!9~2|7i91Jm9\ddoC)h |v}vT4Ԫ#s򲽜ނezX(ҏMVϩOLXB?.҅[w^-r,y{k2RߐLU%6x$pg'-3vG/ ͕qA"BÓGe"p폣AngS=Wć4 EXxD9NCipaZJ%اt,5^zN굙xĩ}7RD@i0zJ  njxNsRVM~|6:d¥VC"! #;U@Gb^UJͰ;X?zgYb0Z[HQVCQ0N ZRy` ;] c1ܺZs,A3z0huo:Lnol6}Jv 3W-mg/?[IcыCvF[|LޖbFp?{ySQ-eۆgE)#q V׫Ƕ @kBeoy9aAfw}-3{u06^^QI2#C|̱vs\<Ƌ K[0ɧnBmrL cۇLMXQؠr|>N/SVZ)ZW2An* V%8HUHHb$KtNax ֏(6lfk{ {"^ώMySYeL 6Zis QG@mG`Sh\ctvABa:U:mt^>97@Ț ];)vŨ6q9Tפ*N6׷tŗNnݳ(|Ӝ7y %4 :~Q/$ `)r4g=1O7aVfyO&YW[5&FPҫڔ4Џ)*T?VlLUᄈZh*#O/3`Q+G'F~Ȇ#ߌh"1Yt0j\:q+)Hi¸}t =9=WFR*u|շ{M3J-})ӶOF}D摶VḓM.;@ʶЊZĦmk7VM /ϯ^ 5}<MP1fh+Uv6;jD,.jC@2ć \T`3SKUbfXĩsa`$"Īԯē (KORte$ˑp:ZQxR_8Ld1ڥp6׹Nirr~k+ 9H vH~ԫ01n:&x#n"^gwojs*2}kܸ]$MbЫ SB 5:,|h/è{,ɍ0.$ C4,nO$IyhgղsN-59X;v2EoKtƮ*N@e<)iߦ̏#L7@Ao+VyZw7oimrK=澾f+$xehUSz{́u١nrHOeDQg!@Dt!S@EzYM~tPg QK2Тuaqޟ;F#Y$>gkvb}82V)Udnb|p͚h8P'd'm(q hv7qci(w|MC֔Ir#_urK?(gy2k{$*q`g/4!5kqͿE,45h\(j<ϴAډ,S6'7A.8/l7rG .dW:f&;,\3i<%{d=/~vuY/h~S4:I{[@ H4$*;_imyBbAyY)/Ñcr˱Pyx#|a$Qhyl> f ^2k>`%aSɪi ުdqޛ9cL}+NLޢk %mx8O|vyl'PDA<'Kdі+80I鼪yԳQSwAڼ|`,˶ߩŅޯMEhȺQ!h ~?Z%>>ًygaoPL63脭w&Ȏ] kLB"ao7ߡ}ޛKYI;ybK,UpὟ0n^5ED)yCCN5&%8(7`tG "dgCϸx}"r m=$%WӐDH$C|^>?xP*ikO'䈂Z#Ayl#0~gʩV{`ugM l$w&ˠ?'/ZAG14&]5dO%sV3&.Ih?T ~gF/XYܥeu<3n:2 #_a dSvz }cS::(>ٱzQL=}&sDŢ[THjǙhM\0K] C첹Պ%epkf@2LeJsUIwEQ2q*QBZw;=6nba]9_7 # [=DI) Svg!К- %j@Dd>G8/6bUk0Zywro$Km^B=-)vRLRRuRaά0\NUISm/1'A0&[`f0,.5ݚWZ-T b'?GBurSnAz%B+s}&kdA4eav zRZ%<l%o`aT0*RTJn,YcO?ՉF,18ydѦ5. .&{]DcB]%Jn2uiGX(QT q̰%z&,aF@jLעfho+u573hXJ8(݋ ₋!TG TP,mwehv&Cj!~&)'b;6Q{o7,[kLsD(C[N)EPH]LFl05j HWoYgп[k\1֗Aw)ɶ6"Ay×-`iJ8J S;jQ]NGJlW\E:a<J@jEn ;$V;b5# .Gd1M>2Vb-Q@A;TpQc/p]QԖsD$.<+E:kD"|7TM,x4 nO |X%V