ghc-base-compat-0.11.1-lp152.1.4 >  A ^2/=„y{NMWߜ|>u} \wZRs]/d X~A Uo}]Nɫ+ta^(zY Mn\|=*Nᲃ"~~ MU?0D?T 9B՗Lga0ChxHC)Ht%'MxA\Je0.n I  k2ou b[eH0e5a6a22623f7949c53b6673ef9fb2d98345ce1dcca096de32581de2d717b20cb9db64e1c6f9ded629f201d280087ac1bbe29752f^2/=„;,Rd?|~40yVh921W8T}ѵ'r @s3/Y߲DWU0'yqV4'-׍=k o _ź+S܍.k<4QQj*n?iߓ;?qܪseWM( f2TSPi<ކ " pϭ~s_83v@_ J_= 23X&|hvDӢʣD@vMPE40,Ď >p>*?*d # B , 4 < L   8H Y( 8 9 : F&G&H&I&X&Y'\',]'<^'b(c(d)-e)2f)5l)7u)Lv)\w*x*y* z*`*p*t*z*Cghc-base-compat0.11.1lp152.1.4A 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.^!lamb70ȰopenSUSE Leap 15.2openSUSEMIThttps://bugs.opensuse.orgUnspecifiedhttps://hackage.haskell.org/package/base-compatlinuxx86_64P`AA큤^^^;bb19f84cf3ab97902bf43cb60365f8522af044769016b67abb14248f3a077cb6788b0c0ef27a124ddab8917e477fe900f67240eb62bc332b2e4d9c33a9be86e1rootrootrootrootrootrootrootrootghc-base-compat-0.11.1-lp152.1.4.src.rpmghc-base-compatghc-base-compat(x86-64)libHSbase-compat-0.11.1-KZnxD44j0rC2RthL96Vmwl-ghc8.10.1.so()(64bit)@@@@@@@@@@@@@@@    libHSarray-0.5.4.0-ghc8.10.1.so()(64bit)libHSbase-4.14.0.0-ghc8.10.1.so()(64bit)libHSbytestring-0.10.10.0-ghc8.10.1.so()(64bit)libHSdeepseq-1.4.4.0-ghc8.10.1.so()(64bit)libHSghc-prim-0.6.1-ghc8.10.1.so()(64bit)libHSinteger-gmp-1.0.3.0-ghc8.10.1.so()(64bit)libHStime-1.9.3-ghc8.10.1.so()(64bit)libHSunix-2.7.2.2-ghc8.10.1.so()(64bit)libc.so.6()(64bit)libc.so.6(GLIBC_2.2.5)(64bit)libdl.so.2()(64bit)libgmp.so.10()(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 commitlamb70 15901005130.11.1-lp152.1.40.11.1-lp152.1.4base-compat-0.11.1libHSbase-compat-0.11.1-KZnxD44j0rC2RthL96Vmwl-ghc8.10.1.soghc-base-compatLICENSE/usr/lib64/ghc-8.10.1//usr/lib64/ghc-8.10.1/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-protection -gobs://build.opensuse.org/openSUSE:Leap:15.2/standard/5b9d2e9fbd32d4971be9e26d9e8022d4-ghc-base-compatcpioxz5x86_64-suse-linuxdirectoryELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, BuildID[sha1]=6efd048f51c2c2151caea3e9deb9a1779a34d547, strippedASCII textPR RRRRRRRRR RR R R Ri1t6CJutf-8977e692ef9059fc13bd4e0e8abb1e4bd4c1d03eef3ff7e0f534cc0334ff50494? 7zXZ !t/7] crt:bLL !U0EXTlshgJ%yڃE8 4gN .{W31a`+9T4ఄ}ϭg4 El!Ӓ&m@~6sCY#HbT|p<&ls鞾7bj/F vbVυ@xvrj{Q&y@Uw*KETasP~+n҂KXڍcX}+U3 o|šɉل:-l tH<署u*UɥL؇},sGMz-xͧ!fd?x6Uid lVdKOeJn %A)ʻX $LP>A^%.XyK9J&z=!ZXBwrp۹c¹^>l@JDy;'9RIIʑ@lU%r)\gJg(UzJm$s2yYgFJd4|ձXsBV$իt ]"9v!Aݗyx0?CFϣ 6Jjxyc*uӾwﷳB ?dؤ 7/Et ufc̍iM\$d;rc g(pl̶'w\Xs"MoDu-o^k<75:k&7giG)#{k͢<>5|6ՃȂ}x*[ UgDz%szx;{~-"tg.YQZ 8\I|*3`|Meaթ]TWrzV]TauFn[Ll"/4;OJ|wbFSK tB!뽚P>0G)y^"n&'+L zRﶄ 4 iVIgnB=|T\ ``Ձ8P*#`vsbgG\fwc< PcjD p)}FG^ 1H9wƇ&?z,d!@}S5RUV,% iMeV3E Q#4*Y)j:- Po^ďc)Pu9c!!a}w/'ՏHLi8;>lP12y7 Ib&lZgp-֯͢J9P1IpNQid "gR+z`VZtYrȽ 8,4g, rާxֻb^f  (F/\_q#r 5a;ί`I/"Cӊ-e^;ϝ\-2}I6 *{3T9& \!9QD?uWnoxn\\.?QȆ< ]wCN\|d_?qHq%V'Eu4o+ Z7Wd3rn̘+dY?mY*wńIAY~cg&.h/ƮW|*8q=/ IY pŽ$ZsܜP4ԫwx8"%H£p~ҹ:>Cz&dGP;Ƅ%(q%XYI*'I=is,uqp,gně$#,➄G>eh5iaaȃ._qrp~iq5tsYH?gپVoԳi)cƮQl-x+Ơxt(!f;\$vpŠ|\v/CY^u\0NU.nKF+\UlDο5.'+( '{ 컽>a,ƃֶT`n; sSz|a(<^—Y 1`(%s% P@O.ζ}ȡ?37D+UCEpdCwFg`>=lf+Bs~'ߦh՜JX ! 'peġz"͓ Q: v JSlC g 9Ry?l/}ьv8qa ncGQ$?Wb5\rTAaZ~_9D=~JmZI/f!;TvCT1,lj8z V$@%J1Lחmka !kh3B꫺ĮOxtb#9)~=а"SMzcSoVA*\5Ԏ"4T:_IpB den>&psC &2j jǰ툣/0u^Ml >2Ya=/6zr4]~\>J0yD噡o*Q>6Q.7BB;M[- Rh%2 6(/Ρ>@a܁[rYN΂םU/΋)Z@|07!gm.'Ӻ.)XMU-΂9" JGץ,'P@,Kq?d,E:;lmG1Ǩ\͎Cq'aD(`#&q/shQ7zM5ZC3?\_Q=lB#QPE}}нL IVpZŋ|Ie(qg9}GGXW?@;WtI[HЪ~6oBQ$<;lmĴ)D pE/@\8}i|yn,t+hȵYsG4@h$qSBZg-cHYWݢ5N}/R2`LY5XNgS{3D{e Mcҥ^n/,uߎPZ)#67&ל?\ԂlT{LU9j[O->H%o8PeNli deSOл+}FL7qE: Π LO:m<aBz.r@H)|g.#]ӵbKkr,ꢏ3MGrd\jcf*,x~Imnq6f,((vϔ!*1C1|@_Gy piU To;TékEֳqμFݬ*l+,.fu4w, l|v{5x%L&3YDDžCISVR)WћiP.6tC\k} }QtXZǃC*Ql2a }D@R͂RxHǷ;1<^͆sO65[1[=ѭP- {ٻ|%AbN@D~ab$"K/Nϡt!|\[v4 { zճ5 'yc CHa4r(Laczy^u#n 3b{. [_`W%aV+<{D{C(C)59J}ۺ4yem/$4'V=.QmDZ Ge %İHj0愌nɬ>|i\ [0nJ<<97D0fe&܊XآJI#rT% SBY/_FMljKo?kV+4ťJ6~lc`߇ !&fDj@b>$ű O$cWt7wE'`O-ZEz>\D[Sݿo1hvُf5αEW^ jf%UE1EL,\?A)tJ̩Z}>%3۵\ ~ԃM1҇3ze&;^}u9< jcS)oi\9%@Y <X du7ttHOh=պǚE xCIp_i7Xp{H[_ыiUlZl\vOORph{bm8bPRXZ?~6eeB"el´wk PZh.gb=˕GN/SxYr* E-wt*W 扦sE-*M^‹qH s;NnHn'ƁD~z&/(Z)i58Ln{v'2ee*/"H@GV9p p0ÒIaZY)(zu7d D[f"*86 >\#0cC6+5-Y%G@G3aQ5a{Zw?<ĝ1H/ӕ- W܂VVpv5Dɇ%jh6˕NAazVT, bk+C@nԬOVD$zĉ72*9h:LwDDFR/7]sK.s .cp&ϱYMO1S"-h2OuI s_7éĸg~r}H O3S%Q~%[uAއnfR٫ `-Pуx&LE/AzR=U=ET)hVF)c v'BZGTYiU|Yxz}c:hy,)ԃ=4DLTTa O} #EVY~;zØ5*Es6M^%Ti/0D-wJH o4kT!^xw:uI"9wfd %NE27<Ͼ7VaMO?i I¿Aڗאm(XF963ڭ#!'#84{eR!GaA6>A?IWbZ _$Xh+(W (Ar6H@k>uߎTuG{Ana>ǯ}]׾>u/҃d֛'%d`:!k>$XgS:tƩF9NcB~F]ѮՏ!3(mh{>|u5,g:AaQTA `u1@ۇ;ci{ K0bq2 Y%L0h/[dJk1"Q,'WJs>Hz޺Kp]1"HɸӅ{ʲ>L3ZvƤ#$ اR_1Ɛ{,J-o^ l68Zƿ"g+Wz曃NH52Z{ny=-=S4%q}wP$ VrG z- 23h|F4C՚ 48mibb,[jaL~>+{ ۮXsnx69 w.~:kꭽH1Z(fBlpnX( T9R/ɽS:7i]+; tII#>.JS;T*lCdT2E }<Z7F=!*;f o%+m*76\{DD߽UXr"E3lGǤ K 75#x]PW&V}i7&9"1;GXJuyk^i{q8g9[p,bh>|'+Iy{Dhu@rʶC-JddoJGeW o Jc_`]0+Q98Ўg1g' 䁸 ӻH  Ki}SH1^_ cn$%0'h>Pz La":QsR|pXh6K\*v& &eZȤk\m*yN0-\sFɷՒza)Q&ͷghvZgΩ2H>^ZsLsʵ€n-l)gtV7_Af q5Q-QdnŬ;γYܙ7P?&qCo)``P|rZdgO!5!W훛@tUei+.@,(J`p;crD^ic*s5x!9ܗCE?@"H,;+LO?X/,E6&S&" S1QuÇTL QkM<Ѱ>Wm)i2"0кKJm&JK4~ҶXvhbGBZ;+ g)8p J"? ^wjk>TqOZ9>L4*K-#+ª!\ˡޅ{;)5ڨͦ١8UWc{;4]UcNnV&oJo< ܣaYǿ7R0,98]vcVmj*+O`Py)^;{vh[2/Л%JypA$_}6%'8 - qJ()5/M4F4*ɸ{uBL!ù^cpAUJ":lQC%V4".l9 #R(MN&r`־TB Dڀ*!Xik(ި5d !v-;-o!l KfYv7[9 SN:GqK^1M0e \_{DTC~!?ѩJ*Ii+?58ܗĩ}ګR۝EiOOW.Vk&9!F{a+L HnX{V$T̤b <@29 ;a; Ŷl hƩHj*;H.O,LkDc/ZnfX܂*%̤wu,uO]A1sb1dP=ݞ,2x`36'WS6 "d~ H씩E6O(x`0sNBukٙD)2ܤe:G--$5J4|?@R+< t~oHҥc2[FmV];oD<)Wo,K=MY2_א2؄maP@8YdL!1+8Wل?Mj75^Z'_W=sK6DfBrgB0W=?K*Tn:pB4rAա /!s2묱p{>Șwk?~= Մ,' !^Tk` hU~UDR޶8iJknZ%}^+ 2Gg>-oЗy&w$g\gMh+mÖ<&vw%֫%IЙX0AU^+bgz֭Qsƅ`ޥC.o,󮑗l:xl0ݚM~jZ> 0 ,ɅtTVsH@~Cqk>;l,[ E7X,p#tɛ#ͧށ"ĴaO0#fdJ hQ}a#_ 8cc8e,5ώMҽ_b8eא bW8<^-?@R>B籶:(0~3Ϥl*tz@w>)ՀɪP@ӯ٬Hw>cp%u<ϧ&;Y Mۉp3"e>E1J~'Q+V ;TYQ Ma.;?j(3Ҕbl}楝(9n3K U#JoƂJw"tRMz'>ݵ2BsiexrǪ /8;W3GZH6jj?):]/UL}X qIiZ[5u B{fZs A1\NK_Ï,&.Rtuy4(-hQX V&eF`N5k"+}N3\|>[/tj`~m)?t'g{b>7NG3)G7ʸӉm:~p2C8Zt+mROFy2HlUrm2!~ؾ&z<1La9&$0غI$D߮-rڲLX,uu;]R0um)ZT\a(xŌBl]'2?UĴ?'Jҷ@;)y |D L2I ~fr< .[ .K#aGh@" 1r89eilSizy)9f}Lo6}L \Vޮ6CpEDŽ܇nԸN*\vܥ2 Z~ @#Lܜ6( 0h0$KmQr9eqş|kMk#Zt (ƒ֪gc'wS,n0P3.N܇d+l:0сnnh(4 񒦶ү4Og WspS<$x.rttO#o<#;k;.@ oR*:M-)ϰjiqK]ROg>FS9}<%/U]r0 )zlnz N*%&hRtc(p&;VpL[-(*=`2}2ි]`87|L;_v?r 2Xtwz4!on:0$?j͋s=)dMGnJG;:dN JTq)<{1R2;J]Iuz/\EJh;UVg8x@qA/űSk`jKgfSiZE Xj>D'76&,^|{QjB&R[L֏0xZ.w5GC^2}"rr6@mx;/9d/^|y:.$WO:Bbmַ;>zν?3IL´v0k8c) ,M8āc-<$b?hJn4*VB ?ZݸHWL u<gbX]-pr4EcOU'5kob\}!M݈Nb*k<7S48u4 7+QQ_pz~UjHOg#9:`]K&SF!jN((2~A^ùo.ԧ/H86˭jqm+!`Pn4XY[줎>R{ N561E=Le7z\02ґ>| Jk=3z^M(t?H_ Y@i8\:Coc[0OQ 2fߕ!>„~ZUL$,ho.f&ﵷ|_de|r~6!o7í|aJ6[?Tgd?P!h9[a<ƙ.D\ .ۖ./{s~Oj>Av]n0&U:"Sk? UQ>?Q ȢdJPi`%yPsZ,c;VeP,e}b{Xe+@#Mr\7!R$΍ѩ^b!YuM[7h5l2Ԛ)l>`;a|gwC<h !B<2ŝ=ApH >e)OӢ ~x1Q%uZao((r^k;A&koȗӶ YZ